ETH Price: $3,266.52 (-0.59%)

Token

Innovexa (INNX)
 

Overview

Max Total Supply

2,000,000,000,000 INNX

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
152,693,095,284.942226447184476486 INNX

Value
$0.00
0x7c792F34884f137F19ab79580AF9bc62Be43C9B8
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:
Innovexa

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.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: @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: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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: contracts/Innovexa.sol



pragma solidity ^0.8.0;



contract Innovexa is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor(uint256 _totalSupply) ERC20("Innovexa", "INNX") {
        _mint(msg.sender, _totalSupply);
    }



    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162002ce138038062002ce183398181016040528101906200003791906200070f565b6040518060400160405280600881526020017f496e6e6f766578610000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f494e4e5800000000000000000000000000000000000000000000000000000000815250620000c3620000b76200010260201b60201c565b6200010a60201b60201c565b8160049081620000d49190620009b1565b508060059081620000e69190620009b1565b505050620000fb3382620001ce60201b60201c565b5062000d09565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002379062000af9565b60405180910390fd5b62000254600083836200033c60201b60201c565b806003600082825462000268919062000b4a565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200031c919062000b96565b60405180910390a362000338600083836200065860201b60201c565b5050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003e15750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000423576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041a9062000c03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160362000546576200048a6200065d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004fe5750620004cf6200065d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000540576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005379062000c75565b60405180910390fd5b62000653565b600660009054906101000a900460ff168015620005b05750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620006525760075481620005d0846200068660201b620006261760201c565b620005dc919062000b4a565b111580156200060f57506008548162000600846200068660201b620006261760201c565b6200060c919062000b4a565b10155b62000651576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006489062000ce7565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080fd5b6000819050919050565b620006e981620006d4565b8114620006f557600080fd5b50565b6000815190506200070981620006de565b92915050565b600060208284031215620007285762000727620006cf565b5b60006200073884828501620006f8565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007c357607f821691505b602082108103620007d957620007d86200077b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008437fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000804565b6200084f868362000804565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620008926200088c6200088684620006d4565b62000867565b620006d4565b9050919050565b6000819050919050565b620008ae8362000871565b620008c6620008bd8262000899565b84845462000811565b825550505050565b600090565b620008dd620008ce565b620008ea818484620008a3565b505050565b5b81811015620009125762000906600082620008d3565b600181019050620008f0565b5050565b601f82111562000961576200092b81620007df565b6200093684620007f4565b8101602085101562000946578190505b6200095e6200095585620007f4565b830182620008ef565b50505b505050565b600082821c905092915050565b6000620009866000198460080262000966565b1980831691505092915050565b6000620009a1838362000973565b9150826002028217905092915050565b620009bc8262000741565b67ffffffffffffffff811115620009d857620009d76200074c565b5b620009e48254620007aa565b620009f182828562000916565b600060209050601f83116001811462000a29576000841562000a14578287015190505b62000a20858262000993565b86555062000a90565b601f19841662000a3986620007df565b60005b8281101562000a635784890151825560018201915060208501945060208101905062000a3c565b8683101562000a83578489015162000a7f601f89168262000973565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ae1601f8362000a98565b915062000aee8262000aa9565b602082019050919050565b6000602082019050818103600083015262000b148162000ad2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b5782620006d4565b915062000b6483620006d4565b925082820190508082111562000b7f5762000b7e62000b1b565b5b92915050565b62000b9081620006d4565b82525050565b600060208201905062000bad600083018462000b85565b92915050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600062000beb600b8362000a98565b915062000bf88262000bb3565b602082019050919050565b6000602082019050818103600083015262000c1e8162000bdc565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600062000c5d60168362000a98565b915062000c6a8262000c25565b602082019050919050565b6000602082019050818103600083015262000c908162000c4e565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600062000ccf60068362000a98565b915062000cdc8262000c97565b602082019050919050565b6000602082019050818103600083015262000d028162000cc0565b9050919050565b611fc88062000d196000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461034057806395d89b411461035e578063a457c2d71461037c578063a9059cbb146103ac578063dd62ed3e146103dc578063f2fde38b1461040c57610137565b806349bd5a5e146102ac57806370a08231146102ca578063715018a6146102fa578063860a32ec1461030457806389f9a1d31461032257610137565b806323b872dd116100ff57806323b872dd146101f6578063313ce5671461022657806339509351146102445780633aa633aa1461027457806342966c681461029057610137565b806306fdde031461013c578063095ea7b31461015a57806316c021291461018a57806318160ddd146101ba5780631ab99e12146101d8575b600080fd5b610144610428565b6040516101519190611455565b60405180910390f35b610174600480360381019061016f9190611510565b6104ba565b604051610181919061156b565b60405180910390f35b6101a4600480360381019061019f9190611586565b6104dd565b6040516101b1919061156b565b60405180910390f35b6101c26104fd565b6040516101cf91906115c2565b60405180910390f35b6101e0610507565b6040516101ed91906115c2565b60405180910390f35b610210600480360381019061020b91906115dd565b61050d565b60405161021d919061156b565b60405180910390f35b61022e61053c565b60405161023b919061164c565b60405180910390f35b61025e60048036038101906102599190611510565b610545565b60405161026b919061156b565b60405180910390f35b61028e60048036038101906102899190611693565b61057c565b005b6102aa60048036038101906102a591906116fa565b6105f3565b005b6102b4610600565b6040516102c19190611736565b60405180910390f35b6102e460048036038101906102df9190611586565b610626565b6040516102f191906115c2565b60405180910390f35b61030261066f565b005b61030c610683565b604051610319919061156b565b60405180910390f35b61032a610696565b60405161033791906115c2565b60405180910390f35b61034861069c565b6040516103559190611736565b60405180910390f35b6103666106c5565b6040516103739190611455565b60405180910390f35b61039660048036038101906103919190611510565b610757565b6040516103a3919061156b565b60405180910390f35b6103c660048036038101906103c19190611510565b6107ce565b6040516103d3919061156b565b60405180910390f35b6103f660048036038101906103f19190611751565b6107f1565b60405161040391906115c2565b60405180910390f35b61042660048036038101906104219190611586565b610878565b005b606060048054610437906117c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610463906117c0565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b5050505050905090565b6000806104c56108fb565b90506104d2818585610903565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b6000806105186108fb565b9050610525858285610acc565b610530858585610b58565b60019150509392505050565b60006012905090565b6000806105506108fb565b905061057181858561056285896107f1565b61056c9190611820565b610903565b600191505092915050565b610584610dd1565b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6105fd3382610e4f565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610677610dd1565b610681600061101e565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106d4906117c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610700906117c0565b801561074d5780601f106107225761010080835404028352916020019161074d565b820191906000526020600020905b81548152906001019060200180831161073057829003601f168201915b5050505050905090565b6000806107626108fb565b9050600061077082866107f1565b9050838110156107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac906118c6565b60405180910390fd5b6107c28286868403610903565b60019250505092915050565b6000806107d96108fb565b90506107e6818585610b58565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610880610dd1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e690611958565b60405180910390fd5b6108f88161101e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610972576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610969906119ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d890611a7c565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610abf91906115c2565b60405180910390a3505050565b6000610ad884846107f1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b525781811015610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90611ae8565b60405180910390fd5b610b518484848403610903565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90611b7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d90611c0c565b60405180910390fd5b610c418383836110e2565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf90611c9e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610db891906115c2565b60405180910390a3610dcb8484846113c0565b50505050565b610dd96108fb565b73ffffffffffffffffffffffffffffffffffffffff16610df761069c565b73ffffffffffffffffffffffffffffffffffffffff1614610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490611d0a565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590611d9c565b60405180910390fd5b610eca826000836110e2565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890611e2e565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161100591906115c2565b60405180910390a3611019836000846113c0565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156111865750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90611e9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036112d25761122361069c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061128e575061125f61069c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490611f06565b60405180910390fd5b6113bb565b600660009054906101000a900460ff16801561133b5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156113ba576007548161134d84610626565b6113579190611820565b1115801561137a57506008548161136d84610626565b6113779190611820565b10155b6113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b090611f72565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113ff5780820151818401526020810190506113e4565b60008484015250505050565b6000601f19601f8301169050919050565b6000611427826113c5565b61143181856113d0565b93506114418185602086016113e1565b61144a8161140b565b840191505092915050565b6000602082019050818103600083015261146f818461141c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114a78261147c565b9050919050565b6114b78161149c565b81146114c257600080fd5b50565b6000813590506114d4816114ae565b92915050565b6000819050919050565b6114ed816114da565b81146114f857600080fd5b50565b60008135905061150a816114e4565b92915050565b6000806040838503121561152757611526611477565b5b6000611535858286016114c5565b9250506020611546858286016114fb565b9150509250929050565b60008115159050919050565b61156581611550565b82525050565b6000602082019050611580600083018461155c565b92915050565b60006020828403121561159c5761159b611477565b5b60006115aa848285016114c5565b91505092915050565b6115bc816114da565b82525050565b60006020820190506115d760008301846115b3565b92915050565b6000806000606084860312156115f6576115f5611477565b5b6000611604868287016114c5565b9350506020611615868287016114c5565b9250506040611626868287016114fb565b9150509250925092565b600060ff82169050919050565b61164681611630565b82525050565b6000602082019050611661600083018461163d565b92915050565b61167081611550565b811461167b57600080fd5b50565b60008135905061168d81611667565b92915050565b600080600080608085870312156116ad576116ac611477565b5b60006116bb8782880161167e565b94505060206116cc878288016114c5565b93505060406116dd878288016114fb565b92505060606116ee878288016114fb565b91505092959194509250565b6000602082840312156117105761170f611477565b5b600061171e848285016114fb565b91505092915050565b6117308161149c565b82525050565b600060208201905061174b6000830184611727565b92915050565b6000806040838503121561176857611767611477565b5b6000611776858286016114c5565b9250506020611787858286016114c5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117d857607f821691505b6020821081036117eb576117ea611791565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061182b826114da565b9150611836836114da565b925082820190508082111561184e5761184d6117f1565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118b06025836113d0565b91506118bb82611854565b604082019050919050565b600060208201905081810360008301526118df816118a3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119426026836113d0565b915061194d826118e6565b604082019050919050565b6000602082019050818103600083015261197181611935565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119d46024836113d0565b91506119df82611978565b604082019050919050565b60006020820190508181036000830152611a03816119c7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a666022836113d0565b9150611a7182611a0a565b604082019050919050565b60006020820190508181036000830152611a9581611a59565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611ad2601d836113d0565b9150611add82611a9c565b602082019050919050565b60006020820190508181036000830152611b0181611ac5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b646025836113d0565b9150611b6f82611b08565b604082019050919050565b60006020820190508181036000830152611b9381611b57565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf66023836113d0565b9150611c0182611b9a565b604082019050919050565b60006020820190508181036000830152611c2581611be9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c886026836113d0565b9150611c9382611c2c565b604082019050919050565b60006020820190508181036000830152611cb781611c7b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611cf46020836113d0565b9150611cff82611cbe565b602082019050919050565b60006020820190508181036000830152611d2381611ce7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d866021836113d0565b9150611d9182611d2a565b604082019050919050565b60006020820190508181036000830152611db581611d79565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e186022836113d0565b9150611e2382611dbc565b604082019050919050565b60006020820190508181036000830152611e4781611e0b565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000611e84600b836113d0565b9150611e8f82611e4e565b602082019050919050565b60006020820190508181036000830152611eb381611e77565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611ef06016836113d0565b9150611efb82611eba565b602082019050919050565b60006020820190508181036000830152611f1f81611ee3565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000611f5c6006836113d0565b9150611f6782611f26565b602082019050919050565b60006020820190508181036000830152611f8b81611f4f565b905091905056fea2646970667358221220a39a3771dfa8a74130846af5e7f0fda1b12ab56ca63c6daea2f43accb3d8521364736f6c6343000812003300000000000000000000000000000000000000193e5939a08ce9dbd480000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461034057806395d89b411461035e578063a457c2d71461037c578063a9059cbb146103ac578063dd62ed3e146103dc578063f2fde38b1461040c57610137565b806349bd5a5e146102ac57806370a08231146102ca578063715018a6146102fa578063860a32ec1461030457806389f9a1d31461032257610137565b806323b872dd116100ff57806323b872dd146101f6578063313ce5671461022657806339509351146102445780633aa633aa1461027457806342966c681461029057610137565b806306fdde031461013c578063095ea7b31461015a57806316c021291461018a57806318160ddd146101ba5780631ab99e12146101d8575b600080fd5b610144610428565b6040516101519190611455565b60405180910390f35b610174600480360381019061016f9190611510565b6104ba565b604051610181919061156b565b60405180910390f35b6101a4600480360381019061019f9190611586565b6104dd565b6040516101b1919061156b565b60405180910390f35b6101c26104fd565b6040516101cf91906115c2565b60405180910390f35b6101e0610507565b6040516101ed91906115c2565b60405180910390f35b610210600480360381019061020b91906115dd565b61050d565b60405161021d919061156b565b60405180910390f35b61022e61053c565b60405161023b919061164c565b60405180910390f35b61025e60048036038101906102599190611510565b610545565b60405161026b919061156b565b60405180910390f35b61028e60048036038101906102899190611693565b61057c565b005b6102aa60048036038101906102a591906116fa565b6105f3565b005b6102b4610600565b6040516102c19190611736565b60405180910390f35b6102e460048036038101906102df9190611586565b610626565b6040516102f191906115c2565b60405180910390f35b61030261066f565b005b61030c610683565b604051610319919061156b565b60405180910390f35b61032a610696565b60405161033791906115c2565b60405180910390f35b61034861069c565b6040516103559190611736565b60405180910390f35b6103666106c5565b6040516103739190611455565b60405180910390f35b61039660048036038101906103919190611510565b610757565b6040516103a3919061156b565b60405180910390f35b6103c660048036038101906103c19190611510565b6107ce565b6040516103d3919061156b565b60405180910390f35b6103f660048036038101906103f19190611751565b6107f1565b60405161040391906115c2565b60405180910390f35b61042660048036038101906104219190611586565b610878565b005b606060048054610437906117c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610463906117c0565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b5050505050905090565b6000806104c56108fb565b90506104d2818585610903565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b6000806105186108fb565b9050610525858285610acc565b610530858585610b58565b60019150509392505050565b60006012905090565b6000806105506108fb565b905061057181858561056285896107f1565b61056c9190611820565b610903565b600191505092915050565b610584610dd1565b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6105fd3382610e4f565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610677610dd1565b610681600061101e565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106d4906117c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610700906117c0565b801561074d5780601f106107225761010080835404028352916020019161074d565b820191906000526020600020905b81548152906001019060200180831161073057829003601f168201915b5050505050905090565b6000806107626108fb565b9050600061077082866107f1565b9050838110156107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac906118c6565b60405180910390fd5b6107c28286868403610903565b60019250505092915050565b6000806107d96108fb565b90506107e6818585610b58565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610880610dd1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e690611958565b60405180910390fd5b6108f88161101e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610972576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610969906119ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d890611a7c565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610abf91906115c2565b60405180910390a3505050565b6000610ad884846107f1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b525781811015610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90611ae8565b60405180910390fd5b610b518484848403610903565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90611b7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d90611c0c565b60405180910390fd5b610c418383836110e2565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf90611c9e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610db891906115c2565b60405180910390a3610dcb8484846113c0565b50505050565b610dd96108fb565b73ffffffffffffffffffffffffffffffffffffffff16610df761069c565b73ffffffffffffffffffffffffffffffffffffffff1614610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490611d0a565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590611d9c565b60405180910390fd5b610eca826000836110e2565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890611e2e565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161100591906115c2565b60405180910390a3611019836000846113c0565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156111865750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90611e9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036112d25761122361069c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061128e575061125f61069c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490611f06565b60405180910390fd5b6113bb565b600660009054906101000a900460ff16801561133b5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156113ba576007548161134d84610626565b6113579190611820565b1115801561137a57506008548161136d84610626565b6113779190611820565b10155b6113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b090611f72565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113ff5780820151818401526020810190506113e4565b60008484015250505050565b6000601f19601f8301169050919050565b6000611427826113c5565b61143181856113d0565b93506114418185602086016113e1565b61144a8161140b565b840191505092915050565b6000602082019050818103600083015261146f818461141c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114a78261147c565b9050919050565b6114b78161149c565b81146114c257600080fd5b50565b6000813590506114d4816114ae565b92915050565b6000819050919050565b6114ed816114da565b81146114f857600080fd5b50565b60008135905061150a816114e4565b92915050565b6000806040838503121561152757611526611477565b5b6000611535858286016114c5565b9250506020611546858286016114fb565b9150509250929050565b60008115159050919050565b61156581611550565b82525050565b6000602082019050611580600083018461155c565b92915050565b60006020828403121561159c5761159b611477565b5b60006115aa848285016114c5565b91505092915050565b6115bc816114da565b82525050565b60006020820190506115d760008301846115b3565b92915050565b6000806000606084860312156115f6576115f5611477565b5b6000611604868287016114c5565b9350506020611615868287016114c5565b9250506040611626868287016114fb565b9150509250925092565b600060ff82169050919050565b61164681611630565b82525050565b6000602082019050611661600083018461163d565b92915050565b61167081611550565b811461167b57600080fd5b50565b60008135905061168d81611667565b92915050565b600080600080608085870312156116ad576116ac611477565b5b60006116bb8782880161167e565b94505060206116cc878288016114c5565b93505060406116dd878288016114fb565b92505060606116ee878288016114fb565b91505092959194509250565b6000602082840312156117105761170f611477565b5b600061171e848285016114fb565b91505092915050565b6117308161149c565b82525050565b600060208201905061174b6000830184611727565b92915050565b6000806040838503121561176857611767611477565b5b6000611776858286016114c5565b9250506020611787858286016114c5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117d857607f821691505b6020821081036117eb576117ea611791565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061182b826114da565b9150611836836114da565b925082820190508082111561184e5761184d6117f1565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118b06025836113d0565b91506118bb82611854565b604082019050919050565b600060208201905081810360008301526118df816118a3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119426026836113d0565b915061194d826118e6565b604082019050919050565b6000602082019050818103600083015261197181611935565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119d46024836113d0565b91506119df82611978565b604082019050919050565b60006020820190508181036000830152611a03816119c7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a666022836113d0565b9150611a7182611a0a565b604082019050919050565b60006020820190508181036000830152611a9581611a59565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611ad2601d836113d0565b9150611add82611a9c565b602082019050919050565b60006020820190508181036000830152611b0181611ac5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b646025836113d0565b9150611b6f82611b08565b604082019050919050565b60006020820190508181036000830152611b9381611b57565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf66023836113d0565b9150611c0182611b9a565b604082019050919050565b60006020820190508181036000830152611c2581611be9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c886026836113d0565b9150611c9382611c2c565b604082019050919050565b60006020820190508181036000830152611cb781611c7b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611cf46020836113d0565b9150611cff82611cbe565b602082019050919050565b60006020820190508181036000830152611d2381611ce7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d866021836113d0565b9150611d9182611d2a565b604082019050919050565b60006020820190508181036000830152611db581611d79565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e186022836113d0565b9150611e2382611dbc565b604082019050919050565b60006020820190508181036000830152611e4781611e0b565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000611e84600b836113d0565b9150611e8f82611e4e565b602082019050919050565b60006020820190508181036000830152611eb381611e77565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611ef06016836113d0565b9150611efb82611eba565b602082019050919050565b60006020820190508181036000830152611f1f81611ee3565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000611f5c6006836113d0565b9150611f6782611f26565b602082019050919050565b60006020820190508181036000830152611f8b81611f4f565b905091905056fea2646970667358221220a39a3771dfa8a74130846af5e7f0fda1b12ab56ca63c6daea2f43accb3d8521364736f6c63430008120033

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

00000000000000000000000000000000000000193e5939a08ce9dbd480000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 2000000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000193e5939a08ce9dbd480000000


Deployed Bytecode Sourcemap

20410:1321:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9347:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11707:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20590:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10476:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20517:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12488:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10318:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13158:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20763:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21647:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20555:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10647:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2802:103;;;:::i;:::-;;20453:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20479:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2161:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9566:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13899:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10980:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11236:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3060:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9347:100;9401:13;9434:5;9427:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9347:100;:::o;11707:201::-;11790:4;11807:13;11823:12;:10;:12::i;:::-;11807:28;;11846:32;11855:5;11862:7;11871:6;11846:8;:32::i;:::-;11896:4;11889:11;;;11707:201;;;;:::o;20590:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10476:108::-;10537:7;10564:12;;10557:19;;10476:108;:::o;20517:31::-;;;;:::o;12488:261::-;12585:4;12602:15;12620:12;:10;:12::i;:::-;12602:30;;12643:38;12659:4;12665:7;12674:6;12643:15;:38::i;:::-;12692:27;12702:4;12708:2;12712:6;12692:9;:27::i;:::-;12737:4;12730:11;;;12488:261;;;;;:::o;10318:93::-;10376:5;10401:2;10394:9;;10318:93;:::o;13158:238::-;13246:4;13263:13;13279:12;:10;:12::i;:::-;13263:28;;13302:64;13311:5;13318:7;13355:10;13327:25;13337:5;13344:7;13327:9;:25::i;:::-;:38;;;;:::i;:::-;13302:8;:64::i;:::-;13384:4;13377:11;;;13158:238;;;;:::o;20763:301::-;2047:13;:11;:13::i;:::-;20913:8:::1;20903:7;;:18;;;;;;;;;;;;;;;;;;20948:14;20932:13;;:30;;;;;;;;;;;;;;;;;;20992:17;20973:16;:36;;;;21039:17;21020:16;:36;;;;20763:301:::0;;;;:::o;21647:81::-;21696:24;21702:10;21714:5;21696;:24::i;:::-;21647:81;:::o;20555:28::-;;;;;;;;;;;;;:::o;10647:127::-;10721:7;10748:9;:18;10758:7;10748:18;;;;;;;;;;;;;;;;10741:25;;10647:127;;;:::o;2802:103::-;2047:13;:11;:13::i;:::-;2867:30:::1;2894:1;2867:18;:30::i;:::-;2802:103::o:0;20453:19::-;;;;;;;;;;;;;:::o;20479:31::-;;;;:::o;2161:87::-;2207:7;2234:6;;;;;;;;;;;2227:13;;2161:87;:::o;9566:104::-;9622:13;9655:7;9648:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9566:104;:::o;13899:436::-;13992:4;14009:13;14025:12;:10;:12::i;:::-;14009:28;;14048:24;14075:25;14085:5;14092:7;14075:9;:25::i;:::-;14048:52;;14139:15;14119:16;:35;;14111:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14232:60;14241:5;14248:7;14276:15;14257:16;:34;14232:8;:60::i;:::-;14323:4;14316:11;;;;13899:436;;;;:::o;10980:193::-;11059:4;11076:13;11092:12;:10;:12::i;:::-;11076:28;;11115;11125:5;11132:2;11136:6;11115:9;:28::i;:::-;11161:4;11154:11;;;10980:193;;;;:::o;11236:151::-;11325:7;11352:11;:18;11364:5;11352:18;;;;;;;;;;;;;;;:27;11371:7;11352:27;;;;;;;;;;;;;;;;11345:34;;11236:151;;;;:::o;3060:201::-;2047:13;:11;:13::i;:::-;3169:1:::1;3149:22;;:8;:22;;::::0;3141:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3225:28;3244:8;3225:18;:28::i;:::-;3060:201:::0;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;17892:346::-;18011:1;17994:19;;:5;:19;;;17986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18092:1;18073:21;;:7;:21;;;18065:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18176:6;18146:11;:18;18158:5;18146:18;;;;;;;;;;;;;;;:27;18165:7;18146:27;;;;;;;;;;;;;;;:36;;;;18214:7;18198:32;;18207:5;18198:32;;;18223:6;18198:32;;;;;;:::i;:::-;;;;;;;;17892:346;;;:::o;18529:419::-;18630:24;18657:25;18667:5;18674:7;18657:9;:25::i;:::-;18630:52;;18717:17;18697:16;:37;18693:248;;18779:6;18759:16;:26;;18751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18863:51;18872:5;18879:7;18907:6;18888:16;:25;18863:8;:51::i;:::-;18693:248;18619:329;18529:419;;;:::o;14805:806::-;14918:1;14902:18;;:4;:18;;;14894:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14995:1;14981:16;;:2;:16;;;14973:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15050:38;15071:4;15077:2;15081:6;15050:20;:38::i;:::-;15101:19;15123:9;:15;15133:4;15123:15;;;;;;;;;;;;;;;;15101:37;;15172:6;15157:11;:21;;15149:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15289:6;15275:11;:20;15257:9;:15;15267:4;15257:15;;;;;;;;;;;;;;;:38;;;;15492:6;15475:9;:13;15485:2;15475:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15542:2;15527:26;;15536:4;15527:26;;;15546:6;15527:26;;;;;;:::i;:::-;;;;;;;;15566:37;15586:4;15592:2;15596:6;15566:19;:37::i;:::-;14883:728;14805:806;;;:::o;2326:132::-;2401:12;:10;:12::i;:::-;2390:23;;:7;:5;:7::i;:::-;:23;;;2382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2326:132::o;16779:675::-;16882:1;16863:21;;:7;:21;;;16855:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16935:49;16956:7;16973:1;16977:6;16935:20;:49::i;:::-;16997:22;17022:9;:18;17032:7;17022:18;;;;;;;;;;;;;;;;16997:43;;17077:6;17059:14;:24;;17051:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17196:6;17179:14;:23;17158:9;:18;17168:7;17158:18;;;;;;;;;;;;;;;:44;;;;17313:6;17297:12;;:22;;;;;;;;;;;17374:1;17348:37;;17357:7;17348:37;;;17378:6;17348:37;;;;;;:::i;:::-;;;;;;;;17398:48;17418:7;17435:1;17439:6;17398:19;:48::i;:::-;16844:610;16779:675;;:::o;3421:191::-;3495:16;3514:6;;;;;;;;;;;3495:25;;3540:8;3531:6;;:17;;;;;;;;;;;;;;;;;;3595:8;3564:40;;3585:8;3564:40;;;;;;;;;;;;3484:128;3421:191;:::o;21072:567::-;21224:10;:14;21235:2;21224:14;;;;;;;;;;;;;;;;;;;;;;;;;21223:15;:36;;;;;21243:10;:16;21254:4;21243:16;;;;;;;;;;;;;;;;;;;;;;;;;21242:17;21223:36;21215:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;21317:1;21292:27;;:13;;;;;;;;;;;:27;;;21288:148;;21352:7;:5;:7::i;:::-;21344:15;;:4;:15;;;:32;;;;21369:7;:5;:7::i;:::-;21363:13;;:2;:13;;;21344:32;21336:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21418:7;;21288:148;21452:7;;;;;;;;;;;:32;;;;;21471:13;;;;;;;;;;;21463:21;;:4;:21;;;21452:32;21448:184;;;21541:16;;21531:6;21509:19;21525:2;21509:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;21593:16;;21583:6;21561:19;21577:2;21561:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;21509:100;21501:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;21448:184;21072:567;;;;:::o;20243:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:116::-;5258:21;5273:5;5258:21;:::i;:::-;5251:5;5248:32;5238:60;;5294:1;5291;5284:12;5238:60;5188:116;:::o;5310:133::-;5353:5;5391:6;5378:20;5369:29;;5407:30;5431:5;5407:30;:::i;:::-;5310:133;;;;:::o;5449:759::-;5532:6;5540;5548;5556;5605:3;5593:9;5584:7;5580:23;5576:33;5573:120;;;5612:79;;:::i;:::-;5573:120;5732:1;5757:50;5799:7;5790:6;5779:9;5775:22;5757:50;:::i;:::-;5747:60;;5703:114;5856:2;5882:53;5927:7;5918:6;5907:9;5903:22;5882:53;:::i;:::-;5872:63;;5827:118;5984:2;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5955:118;6112:2;6138:53;6183:7;6174:6;6163:9;6159:22;6138:53;:::i;:::-;6128:63;;6083:118;5449:759;;;;;;;:::o;6214:329::-;6273:6;6322:2;6310:9;6301:7;6297:23;6293:32;6290:119;;;6328:79;;:::i;:::-;6290:119;6448:1;6473:53;6518:7;6509:6;6498:9;6494:22;6473:53;:::i;:::-;6463:63;;6419:117;6214:329;;;;:::o;6549:118::-;6636:24;6654:5;6636:24;:::i;:::-;6631:3;6624:37;6549:118;;:::o;6673:222::-;6766:4;6804:2;6793:9;6789:18;6781:26;;6817:71;6885:1;6874:9;6870:17;6861:6;6817:71;:::i;:::-;6673:222;;;;:::o;6901:474::-;6969:6;6977;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;7279:2;7305:53;7350:7;7341:6;7330:9;7326:22;7305:53;:::i;:::-;7295:63;;7250:118;6901:474;;;;;:::o;7381:180::-;7429:77;7426:1;7419:88;7526:4;7523:1;7516:15;7550:4;7547:1;7540:15;7567:320;7611:6;7648:1;7642:4;7638:12;7628:22;;7695:1;7689:4;7685:12;7716:18;7706:81;;7772:4;7764:6;7760:17;7750:27;;7706:81;7834:2;7826:6;7823:14;7803:18;7800:38;7797:84;;7853:18;;:::i;:::-;7797:84;7618:269;7567:320;;;:::o;7893:180::-;7941:77;7938:1;7931:88;8038:4;8035:1;8028:15;8062:4;8059:1;8052:15;8079:191;8119:3;8138:20;8156:1;8138:20;:::i;:::-;8133:25;;8172:20;8190:1;8172:20;:::i;:::-;8167:25;;8215:1;8212;8208:9;8201:16;;8236:3;8233:1;8230:10;8227:36;;;8243:18;;:::i;:::-;8227:36;8079:191;;;;:::o;8276:224::-;8416:34;8412:1;8404:6;8400:14;8393:58;8485:7;8480:2;8472:6;8468:15;8461:32;8276:224;:::o;8506:366::-;8648:3;8669:67;8733:2;8728:3;8669:67;:::i;:::-;8662:74;;8745:93;8834:3;8745:93;:::i;:::-;8863:2;8858:3;8854:12;8847:19;;8506:366;;;:::o;8878:419::-;9044:4;9082:2;9071:9;9067:18;9059:26;;9131:9;9125:4;9121:20;9117:1;9106:9;9102:17;9095:47;9159:131;9285:4;9159:131;:::i;:::-;9151:139;;8878:419;;;:::o;9303:225::-;9443:34;9439:1;9431:6;9427:14;9420:58;9512:8;9507:2;9499:6;9495:15;9488:33;9303:225;:::o;9534:366::-;9676:3;9697:67;9761:2;9756:3;9697:67;:::i;:::-;9690:74;;9773:93;9862:3;9773:93;:::i;:::-;9891:2;9886:3;9882:12;9875:19;;9534:366;;;:::o;9906:419::-;10072:4;10110:2;10099:9;10095:18;10087:26;;10159:9;10153:4;10149:20;10145:1;10134:9;10130:17;10123:47;10187:131;10313:4;10187:131;:::i;:::-;10179:139;;9906:419;;;:::o;10331:223::-;10471:34;10467:1;10459:6;10455:14;10448:58;10540:6;10535:2;10527:6;10523:15;10516:31;10331:223;:::o;10560:366::-;10702:3;10723:67;10787:2;10782:3;10723:67;:::i;:::-;10716:74;;10799:93;10888:3;10799:93;:::i;:::-;10917:2;10912:3;10908:12;10901:19;;10560:366;;;:::o;10932:419::-;11098:4;11136:2;11125:9;11121:18;11113:26;;11185:9;11179:4;11175:20;11171:1;11160:9;11156:17;11149:47;11213:131;11339:4;11213:131;:::i;:::-;11205:139;;10932:419;;;:::o;11357:221::-;11497:34;11493:1;11485:6;11481:14;11474:58;11566:4;11561:2;11553:6;11549:15;11542:29;11357:221;:::o;11584:366::-;11726:3;11747:67;11811:2;11806:3;11747:67;:::i;:::-;11740:74;;11823:93;11912:3;11823:93;:::i;:::-;11941:2;11936:3;11932:12;11925:19;;11584:366;;;:::o;11956:419::-;12122:4;12160:2;12149:9;12145:18;12137:26;;12209:9;12203:4;12199:20;12195:1;12184:9;12180:17;12173:47;12237:131;12363:4;12237:131;:::i;:::-;12229:139;;11956:419;;;:::o;12381:179::-;12521:31;12517:1;12509:6;12505:14;12498:55;12381:179;:::o;12566:366::-;12708:3;12729:67;12793:2;12788:3;12729:67;:::i;:::-;12722:74;;12805:93;12894:3;12805:93;:::i;:::-;12923:2;12918:3;12914:12;12907:19;;12566:366;;;:::o;12938:419::-;13104:4;13142:2;13131:9;13127:18;13119:26;;13191:9;13185:4;13181:20;13177:1;13166:9;13162:17;13155:47;13219:131;13345:4;13219:131;:::i;:::-;13211:139;;12938:419;;;:::o;13363:224::-;13503:34;13499:1;13491:6;13487:14;13480:58;13572:7;13567:2;13559:6;13555:15;13548:32;13363:224;:::o;13593:366::-;13735:3;13756:67;13820:2;13815:3;13756:67;:::i;:::-;13749:74;;13832:93;13921:3;13832:93;:::i;:::-;13950:2;13945:3;13941:12;13934:19;;13593:366;;;:::o;13965:419::-;14131:4;14169:2;14158:9;14154:18;14146:26;;14218:9;14212:4;14208:20;14204:1;14193:9;14189:17;14182:47;14246:131;14372:4;14246:131;:::i;:::-;14238:139;;13965:419;;;:::o;14390:222::-;14530:34;14526:1;14518:6;14514:14;14507:58;14599:5;14594:2;14586:6;14582:15;14575:30;14390:222;:::o;14618:366::-;14760:3;14781:67;14845:2;14840:3;14781:67;:::i;:::-;14774:74;;14857:93;14946:3;14857:93;:::i;:::-;14975:2;14970:3;14966:12;14959:19;;14618:366;;;:::o;14990:419::-;15156:4;15194:2;15183:9;15179:18;15171:26;;15243:9;15237:4;15233:20;15229:1;15218:9;15214:17;15207:47;15271:131;15397:4;15271:131;:::i;:::-;15263:139;;14990:419;;;:::o;15415:225::-;15555:34;15551:1;15543:6;15539:14;15532:58;15624:8;15619:2;15611:6;15607:15;15600:33;15415:225;:::o;15646:366::-;15788:3;15809:67;15873:2;15868:3;15809:67;:::i;:::-;15802:74;;15885:93;15974:3;15885:93;:::i;:::-;16003:2;15998:3;15994:12;15987:19;;15646:366;;;:::o;16018:419::-;16184:4;16222:2;16211:9;16207:18;16199:26;;16271:9;16265:4;16261:20;16257:1;16246:9;16242:17;16235:47;16299:131;16425:4;16299:131;:::i;:::-;16291:139;;16018:419;;;:::o;16443:182::-;16583:34;16579:1;16571:6;16567:14;16560:58;16443:182;:::o;16631:366::-;16773:3;16794:67;16858:2;16853:3;16794:67;:::i;:::-;16787:74;;16870:93;16959:3;16870:93;:::i;:::-;16988:2;16983:3;16979:12;16972:19;;16631:366;;;:::o;17003:419::-;17169:4;17207:2;17196:9;17192:18;17184:26;;17256:9;17250:4;17246:20;17242:1;17231:9;17227:17;17220:47;17284:131;17410:4;17284:131;:::i;:::-;17276:139;;17003:419;;;:::o;17428:220::-;17568:34;17564:1;17556:6;17552:14;17545:58;17637:3;17632:2;17624:6;17620:15;17613:28;17428:220;:::o;17654:366::-;17796:3;17817:67;17881:2;17876:3;17817:67;:::i;:::-;17810:74;;17893:93;17982:3;17893:93;:::i;:::-;18011:2;18006:3;18002:12;17995:19;;17654:366;;;:::o;18026:419::-;18192:4;18230:2;18219:9;18215:18;18207:26;;18279:9;18273:4;18269:20;18265:1;18254:9;18250:17;18243:47;18307:131;18433:4;18307:131;:::i;:::-;18299:139;;18026:419;;;:::o;18451:221::-;18591:34;18587:1;18579:6;18575:14;18568:58;18660:4;18655:2;18647:6;18643:15;18636:29;18451:221;:::o;18678:366::-;18820:3;18841:67;18905:2;18900:3;18841:67;:::i;:::-;18834:74;;18917:93;19006:3;18917:93;:::i;:::-;19035:2;19030:3;19026:12;19019:19;;18678:366;;;:::o;19050:419::-;19216:4;19254:2;19243:9;19239:18;19231:26;;19303:9;19297:4;19293:20;19289:1;19278:9;19274:17;19267:47;19331:131;19457:4;19331:131;:::i;:::-;19323:139;;19050:419;;;:::o;19475:161::-;19615:13;19611:1;19603:6;19599:14;19592:37;19475:161;:::o;19642:366::-;19784:3;19805:67;19869:2;19864:3;19805:67;:::i;:::-;19798:74;;19881:93;19970:3;19881:93;:::i;:::-;19999:2;19994:3;19990:12;19983:19;;19642:366;;;:::o;20014:419::-;20180:4;20218:2;20207:9;20203:18;20195:26;;20267:9;20261:4;20257:20;20253:1;20242:9;20238:17;20231:47;20295:131;20421:4;20295:131;:::i;:::-;20287:139;;20014:419;;;:::o;20439:172::-;20579:24;20575:1;20567:6;20563:14;20556:48;20439:172;:::o;20617:366::-;20759:3;20780:67;20844:2;20839:3;20780:67;:::i;:::-;20773:74;;20856:93;20945:3;20856:93;:::i;:::-;20974:2;20969:3;20965:12;20958:19;;20617:366;;;:::o;20989:419::-;21155:4;21193:2;21182:9;21178:18;21170:26;;21242:9;21236:4;21232:20;21228:1;21217:9;21213:17;21206:47;21270:131;21396:4;21270:131;:::i;:::-;21262:139;;20989:419;;;:::o;21414:156::-;21554:8;21550:1;21542:6;21538:14;21531:32;21414:156;:::o;21576:365::-;21718:3;21739:66;21803:1;21798:3;21739:66;:::i;:::-;21732:73;;21814:93;21903:3;21814:93;:::i;:::-;21932:2;21927:3;21923:12;21916:19;;21576:365;;;:::o;21947:419::-;22113:4;22151:2;22140:9;22136:18;22128:26;;22200:9;22194:4;22190:20;22186:1;22175:9;22171:17;22164:47;22228:131;22354:4;22228:131;:::i;:::-;22220:139;;21947:419;;;:::o

Swarm Source

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