ETH Price: $3,423.77 (+3.30%)
Gas: 7.78 Gwei

Token

FERC721 (F721)
 

Overview

Max Total Supply

142,000,000,000,000,055,285,000 F721

Holders

111

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,000 F721

Value
$0.00
0xbc61dbc999124ff8b50ac89072de49a6712d200b
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:
FERC721

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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/[email protected]


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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

        _beforeTokenTransfer(address(0), account, 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 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 {}
}


pragma solidity ^0.8.0;

contract FERC721 is ERC20, Ownable {
    address public nftMinter;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;
    
    constructor() ERC20("FERC721", "F721") {}

    modifier onlyNftMinter() {
        require(msg.sender == nftMinter);
        _;
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function setPair(address _uniswapV2Pair) external onlyOwner {
        uniswapV2Pair = _uniswapV2Pair;
    }

    function setNftMinter(address _nftMinter) external onlyOwner {
        nftMinter = _nftMinter;
    }

    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() || from == nftMinter, "trading is not started");
            return;
        }
    }

    function mintTo(address addr, uint256 amount) external onlyNftMinter {
        _mint(addr, amount * 10 ** decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nftMinter","type":"address"}],"name":"setNftMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051806040016040528060078152602001664645524337323160c81b815250604051806040016040528060048152602001634637323160e01b81525081600390816200006091906200018d565b5060046200006f82826200018d565b5050506200008c620000866200009260201b60201c565b62000096565b62000259565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200011357607f821691505b6020821081036200013457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018857600081815260208120601f850160051c81016020861015620001635750805b601f850160051c820191505b8181101562000184578281556001016200016f565b5050505b505050565b81516001600160401b03811115620001a957620001a9620000e8565b620001c181620001ba8454620000fe565b846200013a565b602080601f831160018114620001f95760008415620001e05750858301515b600019600386901b1c1916600185901b17855562000184565b600085815260208120601f198616915b828110156200022a5788860151825594840194600190910190840162000209565b5085821015620002495787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b610ffb80620002696000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a1164e7a1161007c578063a1164e7a14610297578063a457c2d7146102aa578063a9059cbb146102bd578063b79a2b09146102d0578063dd62ed3e146102e3578063f2fde38b1461031c57600080fd5b806370a082311461023a578063715018a6146102635780638187f5161461026b5780638da5cb5b1461027e57806395d89b411461028f57600080fd5b8063313ce567116100ff578063313ce567146101c557806339509351146101d4578063404e5129146101e7578063449a52f8146101fc57806349bd5a5e1461020f57600080fd5b806306fdde031461013c578063095ea7b31461015a57806316c021291461017d57806318160ddd146101a057806323b872dd146101b2575b600080fd5b61014461032f565b6040516101519190610cc2565b60405180910390f35b61016d610168366004610d2c565b6103c1565b6040519015158152602001610151565b61016d61018b366004610d56565b60086020526000908152604090205460ff1681565b6002545b604051908152602001610151565b61016d6101c0366004610d78565b6103d8565b60405160128152602001610151565b61016d6101e2366004610d2c565b610487565b6101fa6101f5366004610db4565b6104c3565b005b6101fa61020a366004610d2c565b610518565b600754610222906001600160a01b031681565b6040516001600160a01b039091168152602001610151565b6101a4610248366004610d56565b6001600160a01b031660009081526020819052604090205490565b6101fa610552565b6101fa610279366004610d56565b610588565b6005546001600160a01b0316610222565b6101446105d4565b600654610222906001600160a01b031681565b61016d6102b8366004610d2c565b6105e3565b61016d6102cb366004610d2c565b61067c565b6101fa6102de366004610d56565b610689565b6101a46102f1366004610df0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101fa61032a366004610d56565b6106d5565b60606003805461033e90610e23565b80601f016020809104026020016040519081016040528092919081815260200182805461036a90610e23565b80156103b75780601f1061038c576101008083540402835291602001916103b7565b820191906000526020600020905b81548152906001019060200180831161039a57829003601f168201915b5050505050905090565b60006103ce338484610770565b5060015b92915050565b60006103e5848484610894565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561046f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61047c8533858403610770565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103ce9185906104be908690610e73565b610770565b6005546001600160a01b031633146104ed5760405162461bcd60e51b815260040161046690610e86565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6006546001600160a01b0316331461052f57600080fd5b61054e8261053f6012600a610f9f565b6105499084610fae565b610a6e565b5050565b6005546001600160a01b0316331461057c5760405162461bcd60e51b815260040161046690610e86565b6105866000610b59565b565b6005546001600160a01b031633146105b25760405162461bcd60e51b815260040161046690610e86565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461033e90610e23565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106655760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610466565b6106723385858403610770565b5060019392505050565b60006103ce338484610894565b6005546001600160a01b031633146106b35760405162461bcd60e51b815260040161046690610e86565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146106ff5760405162461bcd60e51b815260040161046690610e86565b6001600160a01b0381166107645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610466565b61076d81610b59565b50565b6001600160a01b0383166107d25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610466565b6001600160a01b0382166108335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610466565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108f85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610466565b6001600160a01b03821661095a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610466565b610965838383610bab565b6001600160a01b038316600090815260208190526040902054818110156109dd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610466565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a14908490610e73565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a6091815260200190565b60405180910390a350505050565b6001600160a01b038216610ac45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610466565b610ad060008383610bab565b8060026000828254610ae29190610e73565b90915550506001600160a01b03821660009081526020819052604081208054839290610b0f908490610e73565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526008602052604090205460ff16158015610bed57506001600160a01b03831660009081526008602052604090205460ff16155b610c275760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610466565b6007546001600160a01b0316610cbd576005546001600160a01b0384811691161480610c6057506005546001600160a01b038381169116145b80610c7857506006546001600160a01b038481169116145b610cbd5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610466565b505050565b600060208083528351808285015260005b81811015610cef57858101830151858201604001528201610cd3565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d2757600080fd5b919050565b60008060408385031215610d3f57600080fd5b610d4883610d10565b946020939093013593505050565b600060208284031215610d6857600080fd5b610d7182610d10565b9392505050565b600080600060608486031215610d8d57600080fd5b610d9684610d10565b9250610da460208501610d10565b9150604084013590509250925092565b60008060408385031215610dc757600080fd5b610dd083610d10565b915060208301358015158114610de557600080fd5b809150509250929050565b60008060408385031215610e0357600080fd5b610e0c83610d10565b9150610e1a60208401610d10565b90509250929050565b600181811c90821680610e3757607f821691505b602082108103610e5757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103d2576103d2610e5d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181815b80851115610ef6578160001904821115610edc57610edc610e5d565b80851615610ee957918102915b93841c9390800290610ec0565b509250929050565b600082610f0d575060016103d2565b81610f1a575060006103d2565b8160018114610f305760028114610f3a57610f56565b60019150506103d2565b60ff841115610f4b57610f4b610e5d565b50506001821b6103d2565b5060208310610133831016604e8410600b8410161715610f79575081810a6103d2565b610f838383610ebb565b8060001904821115610f9757610f97610e5d565b029392505050565b6000610d7160ff841683610efe565b80820281158282048414176103d2576103d2610e5d56fea2646970667358221220cdb8dae266fd5e59b02d6a8c6829e02c948b90efe5a73949cf6c5c423f622a9d64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a1164e7a1161007c578063a1164e7a14610297578063a457c2d7146102aa578063a9059cbb146102bd578063b79a2b09146102d0578063dd62ed3e146102e3578063f2fde38b1461031c57600080fd5b806370a082311461023a578063715018a6146102635780638187f5161461026b5780638da5cb5b1461027e57806395d89b411461028f57600080fd5b8063313ce567116100ff578063313ce567146101c557806339509351146101d4578063404e5129146101e7578063449a52f8146101fc57806349bd5a5e1461020f57600080fd5b806306fdde031461013c578063095ea7b31461015a57806316c021291461017d57806318160ddd146101a057806323b872dd146101b2575b600080fd5b61014461032f565b6040516101519190610cc2565b60405180910390f35b61016d610168366004610d2c565b6103c1565b6040519015158152602001610151565b61016d61018b366004610d56565b60086020526000908152604090205460ff1681565b6002545b604051908152602001610151565b61016d6101c0366004610d78565b6103d8565b60405160128152602001610151565b61016d6101e2366004610d2c565b610487565b6101fa6101f5366004610db4565b6104c3565b005b6101fa61020a366004610d2c565b610518565b600754610222906001600160a01b031681565b6040516001600160a01b039091168152602001610151565b6101a4610248366004610d56565b6001600160a01b031660009081526020819052604090205490565b6101fa610552565b6101fa610279366004610d56565b610588565b6005546001600160a01b0316610222565b6101446105d4565b600654610222906001600160a01b031681565b61016d6102b8366004610d2c565b6105e3565b61016d6102cb366004610d2c565b61067c565b6101fa6102de366004610d56565b610689565b6101a46102f1366004610df0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101fa61032a366004610d56565b6106d5565b60606003805461033e90610e23565b80601f016020809104026020016040519081016040528092919081815260200182805461036a90610e23565b80156103b75780601f1061038c576101008083540402835291602001916103b7565b820191906000526020600020905b81548152906001019060200180831161039a57829003601f168201915b5050505050905090565b60006103ce338484610770565b5060015b92915050565b60006103e5848484610894565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561046f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61047c8533858403610770565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103ce9185906104be908690610e73565b610770565b6005546001600160a01b031633146104ed5760405162461bcd60e51b815260040161046690610e86565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6006546001600160a01b0316331461052f57600080fd5b61054e8261053f6012600a610f9f565b6105499084610fae565b610a6e565b5050565b6005546001600160a01b0316331461057c5760405162461bcd60e51b815260040161046690610e86565b6105866000610b59565b565b6005546001600160a01b031633146105b25760405162461bcd60e51b815260040161046690610e86565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461033e90610e23565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106655760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610466565b6106723385858403610770565b5060019392505050565b60006103ce338484610894565b6005546001600160a01b031633146106b35760405162461bcd60e51b815260040161046690610e86565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146106ff5760405162461bcd60e51b815260040161046690610e86565b6001600160a01b0381166107645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610466565b61076d81610b59565b50565b6001600160a01b0383166107d25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610466565b6001600160a01b0382166108335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610466565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108f85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610466565b6001600160a01b03821661095a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610466565b610965838383610bab565b6001600160a01b038316600090815260208190526040902054818110156109dd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610466565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a14908490610e73565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a6091815260200190565b60405180910390a350505050565b6001600160a01b038216610ac45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610466565b610ad060008383610bab565b8060026000828254610ae29190610e73565b90915550506001600160a01b03821660009081526020819052604081208054839290610b0f908490610e73565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526008602052604090205460ff16158015610bed57506001600160a01b03831660009081526008602052604090205460ff16155b610c275760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610466565b6007546001600160a01b0316610cbd576005546001600160a01b0384811691161480610c6057506005546001600160a01b038381169116145b80610c7857506006546001600160a01b038481169116145b610cbd5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610466565b505050565b600060208083528351808285015260005b81811015610cef57858101830151858201604001528201610cd3565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d2757600080fd5b919050565b60008060408385031215610d3f57600080fd5b610d4883610d10565b946020939093013593505050565b600060208284031215610d6857600080fd5b610d7182610d10565b9392505050565b600080600060608486031215610d8d57600080fd5b610d9684610d10565b9250610da460208501610d10565b9150604084013590509250925092565b60008060408385031215610dc757600080fd5b610dd083610d10565b915060208301358015158114610de557600080fd5b809150509250929050565b60008060408385031215610e0357600080fd5b610e0c83610d10565b9150610e1a60208401610d10565b90509250929050565b600181811c90821680610e3757607f821691505b602082108103610e5757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103d2576103d2610e5d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181815b80851115610ef6578160001904821115610edc57610edc610e5d565b80851615610ee957918102915b93841c9390800290610ec0565b509250929050565b600082610f0d575060016103d2565b81610f1a575060006103d2565b8160018114610f305760028114610f3a57610f56565b60019150506103d2565b60ff841115610f4b57610f4b610e5d565b50506001821b6103d2565b5060208310610133831016604e8410600b8410161715610f79575081810a6103d2565b610f838383610ebb565b8060001904821115610f9757610f97610e5d565b029392505050565b6000610d7160ff841683610efe565b80820281158282048414176103d2576103d2610e5d56fea2646970667358221220cdb8dae266fd5e59b02d6a8c6829e02c948b90efe5a73949cf6c5c423f622a9d64736f6c63430008120033

Deployed Bytecode Sourcemap

19238:1207:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9248:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11415:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11415:169:0;1004:187:1;19346:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10368:108;10456:12;;10368:108;;;1533:25:1;;;1521:2;1506:18;10368:108:0;1387:177:1;12066:492:0;;;;;;:::i;:::-;;:::i;10210:93::-;;;10293:2;2044:36:1;;2032:2;2017:18;10210:93:0;1902:184:1;12967:215:0;;;;;;:::i;:::-;;:::i;19546:135::-;;;;;;:::i;:::-;;:::i;:::-;;20316:126;;;;;;:::i;:::-;;:::i;19311:28::-;;;;;-1:-1:-1;;;;;19311:28:0;;;;;;-1:-1:-1;;;;;2607:32:1;;;2589:51;;2577:2;2562:18;19311:28:0;2443:203:1;10539:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;10640:18:0;10613:7;10640:18;;;;;;;;;;;;10539:127;2649:103;;;:::i;19689:109::-;;;;;;:::i;:::-;;:::i;1998:87::-;2071:6;;-1:-1:-1;;;;;2071:6:0;1998:87;;9467:104;;;:::i;19280:24::-;;;;;-1:-1:-1;;;;;19280:24:0;;;13685:413;;;;;;:::i;:::-;;:::i;10879:175::-;;;;;;:::i;:::-;;:::i;19806:102::-;;;;;;:::i;:::-;;:::i;11117:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11233:18:0;;;11206:7;11233:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11117:151;2907:201;;;;;;:::i;:::-;;:::i;9248:100::-;9302:13;9335:5;9328:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9248:100;:::o;11415:169::-;11498:4;11515:39;796:10;11538:7;11547:6;11515:8;:39::i;:::-;-1:-1:-1;11572:4:0;11415:169;;;;;:::o;12066:492::-;12206:4;12223:36;12233:6;12241:9;12252:6;12223:9;:36::i;:::-;-1:-1:-1;;;;;12299:19:0;;12272:24;12299:19;;;:11;:19;;;;;;;;796:10;12299:33;;;;;;;;12351:26;;;;12343:79;;;;-1:-1:-1;;;12343:79:0;;3503:2:1;12343:79:0;;;3485:21:1;3542:2;3522:18;;;3515:30;3581:34;3561:18;;;3554:62;-1:-1:-1;;;3632:18:1;;;3625:38;3680:19;;12343:79:0;;;;;;;;;12458:57;12467:6;796:10;12508:6;12489:16;:25;12458:8;:57::i;:::-;-1:-1:-1;12546:4:0;;12066:492;-1:-1:-1;;;;12066:492:0:o;12967:215::-;796:10;13055:4;13104:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13104:34:0;;;;;;;;;;13055:4;;13072:80;;13095:7;;13104:47;;13141:10;;13104:47;:::i;:::-;13072:8;:80::i;19546:135::-;2071:6;;-1:-1:-1;;;;;2071:6:0;796:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19635:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;19635:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19546:135::o;20316:126::-;19508:9;;-1:-1:-1;;;;;19508:9:0;19494:10;:23;19486:32;;;;;;20396:38:::1;20402:4:::0;20417:16:::1;10293:2:::0;20417::::1;:16;:::i;:::-;20408:25;::::0;:6;:25:::1;:::i;:::-;20396:5;:38::i;:::-;20316:126:::0;;:::o;2649:103::-;2071:6;;-1:-1:-1;;;;;2071:6:0;796:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;2714:30:::1;2741:1;2714:18;:30::i;:::-;2649:103::o:0;19689:109::-;2071:6;;-1:-1:-1;;;;;2071:6:0;796:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;19760:13:::1;:30:::0;;-1:-1:-1;;;;;;19760:30:0::1;-1:-1:-1::0;;;;;19760:30:0;;;::::1;::::0;;;::::1;::::0;;19689:109::o;9467:104::-;9523:13;9556:7;9549:14;;;;;:::i;13685:413::-;796:10;13778:4;13822:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13822:34:0;;;;;;;;;;13875:35;;;;13867:85;;;;-1:-1:-1;;;13867:85:0;;6091:2:1;13867:85:0;;;6073:21:1;6130:2;6110:18;;;6103:30;6169:34;6149:18;;;6142:62;-1:-1:-1;;;6220:18:1;;;6213:35;6265:19;;13867:85:0;5889:401:1;13867:85:0;13988:67;796:10;14011:7;14039:15;14020:16;:34;13988:8;:67::i;:::-;-1:-1:-1;14086:4:0;;13685:413;-1:-1:-1;;;13685:413:0:o;10879:175::-;10965:4;10982:42;796:10;11006:9;11017:6;10982:9;:42::i;19806:102::-;2071:6;;-1:-1:-1;;;;;2071:6:0;796:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;19878:9:::1;:22:::0;;-1:-1:-1;;;;;;19878:22:0::1;-1:-1:-1::0;;;;;19878:22:0;;;::::1;::::0;;;::::1;::::0;;19806:102::o;2907:201::-;2071:6;;-1:-1:-1;;;;;2071:6:0;796:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2996:22:0;::::1;2988:73;;;::::0;-1:-1:-1;;;2988:73:0;;6497:2:1;2988:73:0::1;::::0;::::1;6479:21:1::0;6536:2;6516:18;;;6509:30;6575:34;6555:18;;;6548:62;-1:-1:-1;;;6626:18:1;;;6619:36;6672:19;;2988:73:0::1;6295:402:1::0;2988:73:0::1;3072:28;3091:8;3072:18;:28::i;:::-;2907:201:::0;:::o;17369:380::-;-1:-1:-1;;;;;17505:19:0;;17497:68;;;;-1:-1:-1;;;17497:68:0;;6904:2:1;17497:68:0;;;6886:21:1;6943:2;6923:18;;;6916:30;6982:34;6962:18;;;6955:62;-1:-1:-1;;;7033:18:1;;;7026:34;7077:19;;17497:68:0;6702:400:1;17497:68:0;-1:-1:-1;;;;;17584:21:0;;17576:68;;;;-1:-1:-1;;;17576:68:0;;7309:2:1;17576:68:0;;;7291:21:1;7348:2;7328:18;;;7321:30;7387:34;7367:18;;;7360:62;-1:-1:-1;;;7438:18:1;;;7431:32;7480:19;;17576:68:0;7107:398:1;17576:68:0;-1:-1:-1;;;;;17657:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17709:32;;1533:25:1;;;17709:32:0;;1506:18:1;17709:32:0;;;;;;;17369:380;;;:::o;14588:733::-;-1:-1:-1;;;;;14728:20:0;;14720:70;;;;-1:-1:-1;;;14720:70:0;;7712:2:1;14720:70:0;;;7694:21:1;7751:2;7731:18;;;7724:30;7790:34;7770:18;;;7763:62;-1:-1:-1;;;7841:18:1;;;7834:35;7886:19;;14720:70:0;7510:401:1;14720:70:0;-1:-1:-1;;;;;14809:23:0;;14801:71;;;;-1:-1:-1;;;14801:71:0;;8118:2:1;14801:71:0;;;8100:21:1;8157:2;8137:18;;;8130:30;8196:34;8176:18;;;8169:62;-1:-1:-1;;;8247:18:1;;;8240:33;8290:19;;14801:71:0;7916:399:1;14801:71:0;14885:47;14906:6;14914:9;14925:6;14885:20;:47::i;:::-;-1:-1:-1;;;;;14969:17:0;;14945:21;14969:17;;;;;;;;;;;15005:23;;;;14997:74;;;;-1:-1:-1;;;14997:74:0;;8522:2:1;14997:74:0;;;8504:21:1;8561:2;8541:18;;;8534:30;8600:34;8580:18;;;8573:62;-1:-1:-1;;;8651:18:1;;;8644:36;8697:19;;14997:74:0;8320:402:1;14997:74:0;-1:-1:-1;;;;;15107:17:0;;;:9;:17;;;;;;;;;;;15127:22;;;15107:42;;15171:20;;;;;;;;:30;;15143:6;;15107:9;15171:30;;15143:6;;15171:30;:::i;:::-;;;;;;;;15236:9;-1:-1:-1;;;;;15219:35:0;15228:6;-1:-1:-1;;;;;15219:35:0;;15247:6;15219:35;;;;1533:25:1;;1521:2;1506:18;;1387:177;15219:35:0;;;;;;;;14709:612;14588:733;;;:::o;15608:399::-;-1:-1:-1;;;;;15692:21:0;;15684:65;;;;-1:-1:-1;;;15684:65:0;;8929:2:1;15684:65:0;;;8911:21:1;8968:2;8948:18;;;8941:30;9007:33;8987:18;;;8980:61;9058:18;;15684:65:0;8727:355:1;15684:65:0;15762:49;15791:1;15795:7;15804:6;15762:20;:49::i;:::-;15840:6;15824:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15857:18:0;;:9;:18;;;;;;;;;;:28;;15879:6;;15857:9;:28;;15879:6;;15857:28;:::i;:::-;;;;-1:-1:-1;;15901:37:0;;1533:25:1;;;-1:-1:-1;;;;;15901:37:0;;;15918:1;;15901:37;;1521:2:1;1506:18;15901:37:0;;;;;;;20316:126;;:::o;3268:191::-;3361:6;;;-1:-1:-1;;;;;3378:17:0;;;-1:-1:-1;;;;;;3378:17:0;;;;;;;3411:40;;3361:6;;;3378:17;3361:6;;3411:40;;3342:16;;3411:40;3331:128;3268:191;:::o;19916:392::-;-1:-1:-1;;;;;20068:14:0;;;;;;:10;:14;;;;;;;;20067:15;:36;;;;-1:-1:-1;;;;;;20087:16:0;;;;;;:10;:16;;;;;;;;20086:17;20067:36;20059:60;;;;-1:-1:-1;;;20059:60:0;;9289:2:1;20059:60:0;;;9271:21:1;9328:2;9308:18;;;9301:30;-1:-1:-1;;;9347:18:1;;;9340:41;9398:18;;20059:60:0;9087:335:1;20059:60:0;20136:13;;-1:-1:-1;;;;;20136:13:0;20132:169;;2071:6;;-1:-1:-1;;;;;20188:15:0;;;2071:6;;20188:15;;:32;;-1:-1:-1;2071:6:0;;-1:-1:-1;;;;;20207:13:0;;;2071:6;;20207:13;20188:32;:53;;;-1:-1:-1;20232:9:0;;-1:-1:-1;;;;;20224:17:0;;;20232:9;;20224:17;20188:53;20180:88;;;;-1:-1:-1;;;20180:88:0;;9629:2:1;20180:88:0;;;9611:21:1;9668:2;9648:18;;;9641:30;-1:-1:-1;;;9687:18:1;;;9680:52;9749:18;;20180:88:0;9427:346:1;20180:88:0;19916:392;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;:::-;1337:39;1196:186;-1:-1:-1;;;1196:186:1:o;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2091:347::-;2156:6;2164;2217:2;2205:9;2196:7;2192:23;2188:32;2185:52;;;2233:1;2230;2223:12;2185:52;2256:29;2275:9;2256:29;:::i;:::-;2246:39;;2335:2;2324:9;2320:18;2307:32;2382:5;2375:13;2368:21;2361:5;2358:32;2348:60;;2404:1;2401;2394:12;2348:60;2427:5;2417:15;;;2091:347;;;;;:::o;2651:260::-;2719:6;2727;2780:2;2768:9;2759:7;2755:23;2751:32;2748:52;;;2796:1;2793;2786:12;2748:52;2819:29;2838:9;2819:29;:::i;:::-;2809:39;;2867:38;2901:2;2890:9;2886:18;2867:38;:::i;:::-;2857:48;;2651:260;;;;;:::o;2916:380::-;2995:1;2991:12;;;;3038;;;3059:61;;3113:4;3105:6;3101:17;3091:27;;3059:61;3166:2;3158:6;3155:14;3135:18;3132:38;3129:161;;3212:10;3207:3;3203:20;3200:1;3193:31;3247:4;3244:1;3237:15;3275:4;3272:1;3265:15;3129:161;;2916:380;;;:::o;3710:127::-;3771:10;3766:3;3762:20;3759:1;3752:31;3802:4;3799:1;3792:15;3826:4;3823:1;3816:15;3842:125;3907:9;;;3928:10;;;3925:36;;;3941:18;;:::i;3972:356::-;4174:2;4156:21;;;4193:18;;;4186:30;4252:34;4247:2;4232:18;;4225:62;4319:2;4304:18;;3972:356::o;4333:422::-;4422:1;4465:5;4422:1;4479:270;4500:7;4490:8;4487:21;4479:270;;;4559:4;4555:1;4551:6;4547:17;4541:4;4538:27;4535:53;;;4568:18;;:::i;:::-;4618:7;4608:8;4604:22;4601:55;;;4638:16;;;;4601:55;4717:22;;;;4677:15;;;;4479:270;;;4483:3;4333:422;;;;;:::o;4760:806::-;4809:5;4839:8;4829:80;;-1:-1:-1;4880:1:1;4894:5;;4829:80;4928:4;4918:76;;-1:-1:-1;4965:1:1;4979:5;;4918:76;5010:4;5028:1;5023:59;;;;5096:1;5091:130;;;;5003:218;;5023:59;5053:1;5044:10;;5067:5;;;5091:130;5128:3;5118:8;5115:17;5112:43;;;5135:18;;:::i;:::-;-1:-1:-1;;5191:1:1;5177:16;;5206:5;;5003:218;;5305:2;5295:8;5292:16;5286:3;5280:4;5277:13;5273:36;5267:2;5257:8;5254:16;5249:2;5243:4;5240:12;5236:35;5233:77;5230:159;;;-1:-1:-1;5342:19:1;;;5374:5;;5230:159;5421:34;5446:8;5440:4;5421:34;:::i;:::-;5491:6;5487:1;5483:6;5479:19;5470:7;5467:32;5464:58;;;5502:18;;:::i;:::-;5540:20;;4760:806;-1:-1:-1;;;4760:806:1:o;5571:140::-;5629:5;5658:47;5699:4;5689:8;5685:19;5679:4;5658:47;:::i;5716:168::-;5789:9;;;5820;;5837:15;;;5831:22;;5817:37;5807:71;;5858:18;;:::i

Swarm Source

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