ETH Price: $3,585.82 (+4.63%)
 

Overview

Max Total Supply

45,000,000 GIGX

Holders

96 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Dex-Trade 2
Balance
19,993,856.839957208325392382 GIGX

Value
$0.00
0x881368e08cc5353e0188b2ca0401b5de35f319f4
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

GigXCoin is a revolutionary cryptocurrency that provides a unique solution for toll payments and payment for EV chargers. The aim of this whitepaper is to provide an overview of the GigXCoin project, its objectives, features, and advantages.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GIGX

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

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


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 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);
    }
}

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);
}

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);
}

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // 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 {}
}

contract LockToken is Ownable {

        bool public isOpen = false;
        mapping(address => bool) private _whiteList;
        modifier open(address from, address to) {
            require(isOpen || _whiteList[from] || _whiteList[to], " Trading is not Open");
            _;
        }

        constructor() {
            _whiteList[msg.sender] = true;
            _whiteList[address(this)] = true;
        }

        function openTrade(bool value) external onlyOwner {
            isOpen = value;
        }

        function includeToWhiteList(address _users, bool _trueFalse) external onlyOwner 
        {
            _whiteList[_users] = _trueFalse;
        }
    }

abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

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

contract GIGX is ERC20, ERC20Burnable, LockToken {

    mapping (address => bool) private _isBlacklisted;

    constructor() ERC20("GIGX COIN", "GIGX") {
        _mint(msg.sender, 25000000 * 10 ** decimals());
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function removeFromBlackList(address account) external onlyOwner {
        _isBlacklisted[account] = false;
    }

    function isBlackList(address account) external view returns (bool) {
         return _isBlacklisted[account];
    }

    function addToBlackList(address account) external onlyOwner {
         require(account != owner(),"Owner address can not blacklisted");
        _isBlacklisted[account] = true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override open(from, to) {
        require(!_isBlacklisted[from] && !_isBlacklisted[to], "This address is blacklisted");
        super._transfer(from,to,amount);
    }
    
}

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":"account","type":"address"}],"name":"addToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_users","type":"address"},{"internalType":"bool","name":"_trueFalse","type":"bool"}],"name":"includeToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"openTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040526005805460ff60a01b191690553480156200001e57600080fd5b506040518060400160405280600981526020016823a4a3ac1021a7a4a760b91b8152506040518060400160405280600481526020016308e928eb60e31b81525081600390816200006f9190620002c7565b5060046200007e8282620002c7565b5050506200009b620000956200010260201b60201c565b62000106565b336000818152600660205260408082208054600160ff1991821681179092553084529190922080549091169091179055620000fc90620000d9601290565b620000e690600a620004a8565b620000f69063017d7840620004c0565b62000158565b620004f0565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001b35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001c79190620004da565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200024e57607f821691505b6020821081036200026f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021e57600081815260208120601f850160051c810160208610156200029e5750805b601f850160051c820191505b81811015620002bf57828155600101620002aa565b505050505050565b81516001600160401b03811115620002e357620002e362000223565b620002fb81620002f4845462000239565b8462000275565b602080601f8311600181146200033357600084156200031a5750858301515b600019600386901b1c1916600185901b178555620002bf565b600085815260208120601f198616915b82811015620003645788860151825594840194600190910190840162000343565b5085821015620003835787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003ea578160001904821115620003ce57620003ce62000393565b80851615620003dc57918102915b93841c9390800290620003ae565b509250929050565b6000826200040357506001620004a2565b816200041257506000620004a2565b81600181146200042b5760028114620004365762000456565b6001915050620004a2565b60ff8411156200044a576200044a62000393565b50506001821b620004a2565b5060208310610133831016604e8410600b84101617156200047b575081810a620004a2565b620004878383620003a9565b80600019048211156200049e576200049e62000393565b0290505b92915050565b6000620004b960ff841683620003f2565b9392505050565b8082028115828204841417620004a257620004a262000393565b80820180821115620004a257620004a262000393565b61101780620005006000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80634a49ac4c116100c357806395d89b411161007c57806395d89b41146102c1578063a457c2d7146102c9578063a9059cbb146102dc578063b36d6919146102ef578063dd62ed3e1461031b578063f2fde38b1461032e57600080fd5b80634a49ac4c1461023c5780635d8f29871461024f57806370a0823114610262578063715018a61461028b57806379cc6790146102935780638da5cb5b146102a657600080fd5b8063313ce56711610115578063313ce567146101cd57806339509351146101dc57806340c10f19146101ef578063417c73a71461020257806342966c681461021557806347535d7b1461022857600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd1461019357806323b872dd146101a557806330d35dee146101b8575b600080fd5b61015a610341565b6040516101679190610df3565b60405180910390f35b61018361017e366004610e5d565b6103d3565b6040519015158152602001610167565b6002545b604051908152602001610167565b6101836101b3366004610e87565b6103ed565b6101cb6101c6366004610ed3565b610411565b005b60405160128152602001610167565b6101836101ea366004610e5d565b610437565b6101cb6101fd366004610e5d565b610459565b6101cb610210366004610ef5565b61046f565b6101cb610223366004610f10565b610516565b60055461018390600160a01b900460ff1681565b6101cb61024a366004610ef5565b610523565b6101cb61025d366004610f29565b61054c565b610197610270366004610ef5565b6001600160a01b031660009081526020819052604090205490565b6101cb61057f565b6101cb6102a1366004610e5d565b610593565b6005546040516001600160a01b039091168152602001610167565b61015a6105a8565b6101836102d7366004610e5d565b6105b7565b6101836102ea366004610e5d565b610632565b6101836102fd366004610ef5565b6001600160a01b031660009081526007602052604090205460ff1690565b610197610329366004610f5c565b610640565b6101cb61033c366004610ef5565b61066b565b60606003805461035090610f86565b80601f016020809104026020016040519081016040528092919081815260200182805461037c90610f86565b80156103c95780601f1061039e576101008083540402835291602001916103c9565b820191906000526020600020905b8154815290600101906020018083116103ac57829003601f168201915b5050505050905090565b6000336103e18185856106e1565b60019150505b92915050565b6000336103fb858285610806565b610406858585610880565b506001949350505050565b6104196109ba565b60058054911515600160a01b0260ff60a01b19909216919091179055565b6000336103e181858561044a8383610640565b6104549190610fc0565b6106e1565b6104616109ba565b61046b8282610a14565b5050565b6104776109ba565b6005546001600160a01b03166001600160a01b0316816001600160a01b0316036104f25760405162461bcd60e51b815260206004820152602160248201527f4f776e657220616464726573732063616e206e6f7420626c61636b6c697374656044820152601960fa1b60648201526084015b60405180910390fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6105203382610ad3565b50565b61052b6109ba565b6001600160a01b03166000908152600760205260409020805460ff19169055565b6105546109ba565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6105876109ba565b6105916000610bfd565b565b61059e823383610806565b61046b8282610ad3565b60606004805461035090610f86565b600033816105c58286610640565b9050838110156106255760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104e9565b61040682868684036106e1565b6000336103e1818585610880565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106736109ba565b6001600160a01b0381166106d85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e9565b61052081610bfd565b6001600160a01b0383166107435760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e9565b6001600160a01b0382166107a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006108128484610640565b9050600019811461087a578181101561086d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104e9565b61087a84848484036106e1565b50505050565b60055483908390600160a01b900460ff16806108b457506001600160a01b03821660009081526006602052604090205460ff165b806108d757506001600160a01b03811660009081526006602052604090205460ff165b61091a5760405162461bcd60e51b8152602060048201526014602482015273102a3930b234b7339034b9903737ba1027b832b760611b60448201526064016104e9565b6001600160a01b03851660009081526007602052604090205460ff1615801561095c57506001600160a01b03841660009081526007602052604090205460ff16155b6109a85760405162461bcd60e51b815260206004820152601b60248201527f54686973206164647265737320697320626c61636b6c6973746564000000000060448201526064016104e9565b6109b3858585610c4f565b5050505050565b6005546001600160a01b031633146105915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e9565b6001600160a01b038216610a6a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104e9565b8060026000828254610a7c9190610fc0565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216610b335760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104e9565b6001600160a01b03821660009081526020819052604090205481811015610ba75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104e9565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107f9565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610cb35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e9565b6001600160a01b038216610d155760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e9565b6001600160a01b03831660009081526020819052604090205481811015610d8d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104e9565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361087a565b600060208083528351808285015260005b81811015610e2057858101830151858201604001528201610e04565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e5857600080fd5b919050565b60008060408385031215610e7057600080fd5b610e7983610e41565b946020939093013593505050565b600080600060608486031215610e9c57600080fd5b610ea584610e41565b9250610eb360208501610e41565b9150604084013590509250925092565b80358015158114610e5857600080fd5b600060208284031215610ee557600080fd5b610eee82610ec3565b9392505050565b600060208284031215610f0757600080fd5b610eee82610e41565b600060208284031215610f2257600080fd5b5035919050565b60008060408385031215610f3c57600080fd5b610f4583610e41565b9150610f5360208401610ec3565b90509250929050565b60008060408385031215610f6f57600080fd5b610f7883610e41565b9150610f5360208401610e41565b600181811c90821680610f9a57607f821691505b602082108103610fba57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103e757634e487b7160e01b600052601160045260246000fdfea26469706673582212205b99987dc6301f00a0324f79e54d2612563a5fd52cc16aded320b6513499a5ef64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80634a49ac4c116100c357806395d89b411161007c57806395d89b41146102c1578063a457c2d7146102c9578063a9059cbb146102dc578063b36d6919146102ef578063dd62ed3e1461031b578063f2fde38b1461032e57600080fd5b80634a49ac4c1461023c5780635d8f29871461024f57806370a0823114610262578063715018a61461028b57806379cc6790146102935780638da5cb5b146102a657600080fd5b8063313ce56711610115578063313ce567146101cd57806339509351146101dc57806340c10f19146101ef578063417c73a71461020257806342966c681461021557806347535d7b1461022857600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd1461019357806323b872dd146101a557806330d35dee146101b8575b600080fd5b61015a610341565b6040516101679190610df3565b60405180910390f35b61018361017e366004610e5d565b6103d3565b6040519015158152602001610167565b6002545b604051908152602001610167565b6101836101b3366004610e87565b6103ed565b6101cb6101c6366004610ed3565b610411565b005b60405160128152602001610167565b6101836101ea366004610e5d565b610437565b6101cb6101fd366004610e5d565b610459565b6101cb610210366004610ef5565b61046f565b6101cb610223366004610f10565b610516565b60055461018390600160a01b900460ff1681565b6101cb61024a366004610ef5565b610523565b6101cb61025d366004610f29565b61054c565b610197610270366004610ef5565b6001600160a01b031660009081526020819052604090205490565b6101cb61057f565b6101cb6102a1366004610e5d565b610593565b6005546040516001600160a01b039091168152602001610167565b61015a6105a8565b6101836102d7366004610e5d565b6105b7565b6101836102ea366004610e5d565b610632565b6101836102fd366004610ef5565b6001600160a01b031660009081526007602052604090205460ff1690565b610197610329366004610f5c565b610640565b6101cb61033c366004610ef5565b61066b565b60606003805461035090610f86565b80601f016020809104026020016040519081016040528092919081815260200182805461037c90610f86565b80156103c95780601f1061039e576101008083540402835291602001916103c9565b820191906000526020600020905b8154815290600101906020018083116103ac57829003601f168201915b5050505050905090565b6000336103e18185856106e1565b60019150505b92915050565b6000336103fb858285610806565b610406858585610880565b506001949350505050565b6104196109ba565b60058054911515600160a01b0260ff60a01b19909216919091179055565b6000336103e181858561044a8383610640565b6104549190610fc0565b6106e1565b6104616109ba565b61046b8282610a14565b5050565b6104776109ba565b6005546001600160a01b03166001600160a01b0316816001600160a01b0316036104f25760405162461bcd60e51b815260206004820152602160248201527f4f776e657220616464726573732063616e206e6f7420626c61636b6c697374656044820152601960fa1b60648201526084015b60405180910390fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6105203382610ad3565b50565b61052b6109ba565b6001600160a01b03166000908152600760205260409020805460ff19169055565b6105546109ba565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6105876109ba565b6105916000610bfd565b565b61059e823383610806565b61046b8282610ad3565b60606004805461035090610f86565b600033816105c58286610640565b9050838110156106255760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104e9565b61040682868684036106e1565b6000336103e1818585610880565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106736109ba565b6001600160a01b0381166106d85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e9565b61052081610bfd565b6001600160a01b0383166107435760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e9565b6001600160a01b0382166107a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006108128484610640565b9050600019811461087a578181101561086d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104e9565b61087a84848484036106e1565b50505050565b60055483908390600160a01b900460ff16806108b457506001600160a01b03821660009081526006602052604090205460ff165b806108d757506001600160a01b03811660009081526006602052604090205460ff165b61091a5760405162461bcd60e51b8152602060048201526014602482015273102a3930b234b7339034b9903737ba1027b832b760611b60448201526064016104e9565b6001600160a01b03851660009081526007602052604090205460ff1615801561095c57506001600160a01b03841660009081526007602052604090205460ff16155b6109a85760405162461bcd60e51b815260206004820152601b60248201527f54686973206164647265737320697320626c61636b6c6973746564000000000060448201526064016104e9565b6109b3858585610c4f565b5050505050565b6005546001600160a01b031633146105915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e9565b6001600160a01b038216610a6a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104e9565b8060026000828254610a7c9190610fc0565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216610b335760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104e9565b6001600160a01b03821660009081526020819052604090205481811015610ba75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104e9565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107f9565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610cb35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e9565b6001600160a01b038216610d155760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e9565b6001600160a01b03831660009081526020819052604090205481811015610d8d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104e9565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361087a565b600060208083528351808285015260005b81811015610e2057858101830151858201604001528201610e04565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e5857600080fd5b919050565b60008060408385031215610e7057600080fd5b610e7983610e41565b946020939093013593505050565b600080600060608486031215610e9c57600080fd5b610ea584610e41565b9250610eb360208501610e41565b9150604084013590509250925092565b80358015158114610e5857600080fd5b600060208284031215610ee557600080fd5b610eee82610ec3565b9392505050565b600060208284031215610f0757600080fd5b610eee82610e41565b600060208284031215610f2257600080fd5b5035919050565b60008060408385031215610f3c57600080fd5b610f4583610e41565b9150610f5360208401610ec3565b90509250929050565b60008060408385031215610f6f57600080fd5b610f7883610e41565b9150610f5360208401610e41565b600181811c90821680610f9a57607f821691505b602082108103610fba57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103e757634e487b7160e01b600052601160045260246000fdfea26469706673582212205b99987dc6301f00a0324f79e54d2612563a5fd52cc16aded320b6513499a5ef64736f6c63430008130033

Deployed Bytecode Sourcemap

18830:1054:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6189:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8540:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;8540:201:0;1004:187:1;7309:108:0;7397:12;;7309:108;;;1342:25:1;;;1330:2;1315:18;7309:108:0;1196:177:1;9321:295:0;;;;;;:::i;:::-;;:::i;17822:91::-;;;;;;:::i;:::-;;:::i;:::-;;7151:93;;;7234:2;2203:36:1;;2191:2;2176:18;7151:93:0;2061:184:1;10025:238:0;;;;;;:::i;:::-;;:::i;19059:95::-;;;;;;:::i;:::-;;:::i;19410:184::-;;;;;;:::i;:::-;;:::i;18249:91::-;;;;;;:::i;:::-;;:::i;17430:26::-;;;;;-1:-1:-1;;;17430:26:0;;;;;;19162:115;;;;;;:::i;:::-;;:::i;17925:148::-;;;;;;:::i;:::-;;:::i;7480:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7581:18:0;7554:7;7581:18;;;;;;;;;;;;7480:127;1527:103;;;:::i;18659:164::-;;;;;;:::i;:::-;;:::i;879:87::-;952:6;;879:87;;-1:-1:-1;;;;;952:6:0;;;3031:51:1;;3019:2;3004:18;879:87:0;2885:203:1;6408:104:0;;;:::i;10766:436::-;;;;;;:::i;:::-;;:::i;7813:193::-;;;;;;:::i;:::-;;:::i;19285:117::-;;;;;;:::i;:::-;-1:-1:-1;;;;;19371:23:0;19346:4;19371:23;;;:14;:23;;;;;;;;;19285:117;8069:151;;;;;;:::i;:::-;;:::i;1785:201::-;;;;;;:::i;:::-;;:::i;6189:100::-;6243:13;6276:5;6269:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6189:100;:::o;8540:201::-;8623:4;173:10;8679:32;173:10;8695:7;8704:6;8679:8;:32::i;:::-;8729:4;8722:11;;;8540:201;;;;;:::o;9321:295::-;9452:4;173:10;9510:38;9526:4;173:10;9541:6;9510:15;:38::i;:::-;9559:27;9569:4;9575:2;9579:6;9559:9;:27::i;:::-;-1:-1:-1;9604:4:0;;9321:295;-1:-1:-1;;;;9321:295:0:o;17822:91::-;765:13;:11;:13::i;:::-;17887:6:::1;:14:::0;;;::::1;;-1:-1:-1::0;;;17887:14:0::1;-1:-1:-1::0;;;;17887:14:0;;::::1;::::0;;;::::1;::::0;;17822:91::o;10025:238::-;10113:4;173:10;10169:64;173:10;10185:7;10222:10;10194:25;173:10;10185:7;10194:9;:25::i;:::-;:38;;;;:::i;:::-;10169:8;:64::i;19059:95::-;765:13;:11;:13::i;:::-;19129:17:::1;19135:2;19139:6;19129:5;:17::i;:::-;19059:95:::0;;:::o;19410:184::-;765:13;:11;:13::i;:::-;952:6;;-1:-1:-1;;;;;952:6:0;-1:-1:-1;;;;;19490:18:0::1;:7;-1:-1:-1::0;;;;;19490:18:0::1;::::0;19482:63:::1;;;::::0;-1:-1:-1;;;19482:63:0;;4172:2:1;19482:63:0::1;::::0;::::1;4154:21:1::0;4211:2;4191:18;;;4184:30;4250:34;4230:18;;;4223:62;-1:-1:-1;;;4301:18:1;;;4294:31;4342:19;;19482:63:0::1;;;;;;;;;-1:-1:-1::0;;;;;19556:23:0::1;;::::0;;;:14:::1;:23;::::0;;;;:30;;-1:-1:-1;;19556:30:0::1;19582:4;19556:30;::::0;;19410:184::o;18249:91::-;18305:27;173:10;18325:6;18305:5;:27::i;:::-;18249:91;:::o;19162:115::-;765:13;:11;:13::i;:::-;-1:-1:-1;;;;;19238:23:0::1;19264:5;19238:23:::0;;;:14:::1;:23;::::0;;;;:31;;-1:-1:-1;;19238:31:0::1;::::0;;19162:115::o;17925:148::-;765:13;:11;:13::i;:::-;-1:-1:-1;;;;;18030:18:0;;;::::1;;::::0;;;:10:::1;:18;::::0;;;;:31;;-1:-1:-1;;18030:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;17925:148::o;1527:103::-;765:13;:11;:13::i;:::-;1592:30:::1;1619:1;1592:18;:30::i;:::-;1527:103::o:0;18659:164::-;18736:46;18752:7;173:10;18775:6;18736:15;:46::i;:::-;18793:22;18799:7;18808:6;18793:5;:22::i;6408:104::-;6464:13;6497:7;6490:14;;;;;:::i;10766:436::-;10859:4;173:10;10859:4;10942:25;173:10;10959:7;10942:9;:25::i;:::-;10915:52;;11006:15;10986:16;:35;;10978:85;;;;-1:-1:-1;;;10978:85:0;;4574:2:1;10978:85:0;;;4556:21:1;4613:2;4593:18;;;4586:30;4652:34;4632:18;;;4625:62;-1:-1:-1;;;4703:18:1;;;4696:35;4748:19;;10978:85:0;4372:401:1;10978:85:0;11099:60;11108:5;11115:7;11143:15;11124:16;:34;11099:8;:60::i;7813:193::-;7892:4;173:10;7948:28;173:10;7965:2;7969:6;7948:9;:28::i;8069:151::-;-1:-1:-1;;;;;8185:18:0;;;8158:7;8185:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8069:151::o;1785:201::-;765:13;:11;:13::i;:::-;-1:-1:-1;;;;;1874:22:0;::::1;1866:73;;;::::0;-1:-1:-1;;;1866:73:0;;4980:2:1;1866:73:0::1;::::0;::::1;4962:21:1::0;5019:2;4999:18;;;4992:30;5058:34;5038:18;;;5031:62;-1:-1:-1;;;5109:18:1;;;5102:36;5155:19;;1866:73:0::1;4778:402:1::0;1866:73:0::1;1950:28;1969:8;1950:18;:28::i;14803:380::-:0;-1:-1:-1;;;;;14939:19:0;;14931:68;;;;-1:-1:-1;;;14931:68:0;;5387:2:1;14931:68:0;;;5369:21:1;5426:2;5406:18;;;5399:30;5465:34;5445:18;;;5438:62;-1:-1:-1;;;5516:18:1;;;5509:34;5560:19;;14931:68:0;5185:400:1;14931:68:0;-1:-1:-1;;;;;15018:21:0;;15010:68;;;;-1:-1:-1;;;15010:68:0;;5792:2:1;15010:68:0;;;5774:21:1;5831:2;5811:18;;;5804:30;5870:34;5850:18;;;5843:62;-1:-1:-1;;;5921:18:1;;;5914:32;5963:19;;15010:68:0;5590:398:1;15010:68:0;-1:-1:-1;;;;;15091:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15143:32;;1342:25:1;;;15143:32:0;;1315:18:1;15143:32:0;;;;;;;;14803:380;;;:::o;15474:453::-;15609:24;15636:25;15646:5;15653:7;15636:9;:25::i;:::-;15609:52;;-1:-1:-1;;15676:16:0;:37;15672:248;;15758:6;15738:16;:26;;15730:68;;;;-1:-1:-1;;;15730:68:0;;6195:2:1;15730:68:0;;;6177:21:1;6234:2;6214:18;;;6207:30;6273:31;6253:18;;;6246:59;6322:18;;15730:68:0;5993:353:1;15730:68:0;15842:51;15851:5;15858:7;15886:6;15867:16;:25;15842:8;:51::i;:::-;15598:329;15474:453;;;:::o;19602:273::-;17584:6;;19720:4;;19726:2;;-1:-1:-1;;;17584:6:0;;;;;:26;;-1:-1:-1;;;;;;17594:16:0;;;;;;:10;:16;;;;;;;;17584:26;:44;;;-1:-1:-1;;;;;;17614:14:0;;;;;;:10;:14;;;;;;;;17584:44;17576:77;;;;-1:-1:-1;;;17576:77:0;;6553:2:1;17576:77:0;;;6535:21:1;6592:2;6572:18;;;6565:30;-1:-1:-1;;;6611:18:1;;;6604:50;6671:18;;17576:77:0;6351:344:1;17576:77:0;-1:-1:-1;;;;;19750:20:0;::::1;;::::0;;;:14:::1;:20;::::0;;;;;::::1;;19749:21;:44:::0;::::1;;;-1:-1:-1::0;;;;;;19775:18:0;::::1;;::::0;;;:14:::1;:18;::::0;;;;;::::1;;19774:19;19749:44;19741:84;;;::::0;-1:-1:-1;;;19741:84:0;;6902:2:1;19741:84:0::1;::::0;::::1;6884:21:1::0;6941:2;6921:18;;;6914:30;6980:29;6960:18;;;6953:57;7027:18;;19741:84:0::1;6700:351:1::0;19741:84:0::1;19836:31;19852:4;19857:2;19860:6;19836:15;:31::i;:::-;19602:273:::0;;;;;:::o;1044:132::-;952:6;;-1:-1:-1;;;;;952:6:0;173:10;1108:23;1100:68;;;;-1:-1:-1;;;1100:68:0;;7258:2:1;1100:68:0;;;7240:21:1;;;7277:18;;;7270:30;7336:34;7316:18;;;7309:62;7388:18;;1100:68:0;7056:356:1;12809:548:0;-1:-1:-1;;;;;12893:21:0;;12885:65;;;;-1:-1:-1;;;12885:65:0;;7619:2:1;12885:65:0;;;7601:21:1;7658:2;7638:18;;;7631:30;7697:33;7677:18;;;7670:61;7748:18;;12885:65:0;7417:355:1;12885:65:0;13041:6;13025:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13196:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;13251:37;1342:25:1;;;13251:37:0;;1315:18:1;13251:37:0;;;;;;;19059:95;;:::o;13690:675::-;-1:-1:-1;;;;;13774:21:0;;13766:67;;;;-1:-1:-1;;;13766:67:0;;7979:2:1;13766:67:0;;;7961:21:1;8018:2;7998:18;;;7991:30;8057:34;8037:18;;;8030:62;-1:-1:-1;;;8108:18:1;;;8101:31;8149:19;;13766:67:0;7777:397:1;13766:67:0;-1:-1:-1;;;;;13933:18:0;;13908:22;13933:18;;;;;;;;;;;13970:24;;;;13962:71;;;;-1:-1:-1;;;13962:71:0;;8381:2:1;13962:71:0;;;8363:21:1;8420:2;8400:18;;;8393:30;8459:34;8439:18;;;8432:62;-1:-1:-1;;;8510:18:1;;;8503:32;8552:19;;13962:71:0;8179:398:1;13962:71:0;-1:-1:-1;;;;;14069:18:0;;:9;:18;;;;;;;;;;;14090:23;;;14069:44;;14208:12;:22;;;;;;;14259:37;1342:25:1;;;14069:9:0;;:18;14259:37;;1315:18:1;14259:37:0;1196:177:1;2146:191:0;2239:6;;;-1:-1:-1;;;;;2256:17:0;;;-1:-1:-1;;;;;;2256:17:0;;;;;;;2289:40;;2239:6;;;2256:17;2239:6;;2289:40;;2220:16;;2289:40;2209:128;2146:191;:::o;11672:850::-;-1:-1:-1;;;;;11813:18:0;;11805:68;;;;-1:-1:-1;;;11805:68:0;;8784:2:1;11805:68:0;;;8766:21:1;8823:2;8803:18;;;8796:30;8862:34;8842:18;;;8835:62;-1:-1:-1;;;8913:18:1;;;8906:35;8958:19;;11805:68:0;8582:401:1;11805:68:0;-1:-1:-1;;;;;11892:16:0;;11884:64;;;;-1:-1:-1;;;11884:64:0;;9190:2:1;11884:64:0;;;9172:21:1;9229:2;9209:18;;;9202:30;9268:34;9248:18;;;9241:62;-1:-1:-1;;;9319:18:1;;;9312:33;9362:19;;11884:64:0;8988:399:1;11884:64:0;-1:-1:-1;;;;;12034:15:0;;12012:19;12034:15;;;;;;;;;;;12068:21;;;;12060:72;;;;-1:-1:-1;;;12060:72:0;;9594:2:1;12060:72:0;;;9576:21:1;9633:2;9613:18;;;9606:30;9672:34;9652:18;;;9645:62;-1:-1:-1;;;9723:18:1;;;9716:36;9769:19;;12060:72:0;9392:402:1;12060:72:0;-1:-1:-1;;;;;12168:15:0;;;:9;:15;;;;;;;;;;;12186:20;;;12168:38;;12386:13;;;;;;;;;;:23;;;;;;12438:26;;1342:25:1;;;12386:13:0;;12438:26;;1315:18:1;12438:26:0;;;;;;;12477:37;13690:675;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;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:160::-;1776:20;;1832:13;;1825:21;1815:32;;1805:60;;1861:1;1858;1851:12;1876:180;1932:6;1985:2;1973:9;1964:7;1960:23;1956:32;1953:52;;;2001:1;1998;1991:12;1953:52;2024:26;2040:9;2024:26;:::i;:::-;2014:36;1876:180;-1:-1:-1;;;1876:180:1:o;2250:186::-;2309:6;2362:2;2350:9;2341:7;2337:23;2333:32;2330:52;;;2378:1;2375;2368:12;2330:52;2401:29;2420:9;2401:29;:::i;2441:180::-;2500:6;2553:2;2541:9;2532:7;2528:23;2524:32;2521:52;;;2569:1;2566;2559:12;2521:52;-1:-1:-1;2592:23:1;;2441:180;-1:-1:-1;2441:180:1:o;2626:254::-;2691:6;2699;2752:2;2740:9;2731:7;2727:23;2723:32;2720:52;;;2768:1;2765;2758:12;2720:52;2791:29;2810:9;2791:29;:::i;:::-;2781:39;;2839:35;2870:2;2859:9;2855:18;2839:35;:::i;:::-;2829:45;;2626:254;;;;;:::o;3093:260::-;3161:6;3169;3222:2;3210:9;3201:7;3197:23;3193:32;3190:52;;;3238:1;3235;3228:12;3190:52;3261:29;3280:9;3261:29;:::i;:::-;3251:39;;3309:38;3343:2;3332:9;3328:18;3309:38;:::i;3358:380::-;3437:1;3433:12;;;;3480;;;3501:61;;3555:4;3547:6;3543:17;3533:27;;3501:61;3608:2;3600:6;3597:14;3577:18;3574:38;3571:161;;3654:10;3649:3;3645:20;3642:1;3635:31;3689:4;3686:1;3679:15;3717:4;3714:1;3707:15;3571:161;;3358:380;;;:::o;3743:222::-;3808:9;;;3829:10;;;3826:133;;;3881:10;3876:3;3872:20;3869:1;3862:31;3916:4;3913:1;3906:15;3944:4;3941:1;3934:15

Swarm Source

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