ETH Price: $2,616.40 (-2.41%)
Gas: 1.08 Gwei

Token

Super Yacht Coin (SYCC)
 

Overview

Max Total Supply

67,200,000 SYCC

Holders

150

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
219,837.718595843125993995 SYCC

Value
$0.00
0xe5e3d0705ac2c2b9982313f1ca38b63c5bb020b5
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:
SuperYachtCoin

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-26
*/

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


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

// File: contracts/Token.sol



pragma solidity ^0.8.4;






contract SuperYachtCoin is  ERC20, ERC20Burnable, Pausable, Ownable  {

    constructor() ERC20("Super Yacht Coin", "SYCC") {}

    bool public vestingAddressLocked;

    address public vestingAddress;

    function addVesingAddress(address _vestingAddress) public onlyOwner {
        require(!vestingAddressLocked, "vesting address is already set");
        vestingAddressLocked = true;
        vestingAddress = _vestingAddress;
    }

    // @dev                                 only vesting contract can call this method
    function mint(address _to, uint _amount) public {
        require(msg.sender == vestingAddress, "Only vesting contract can call this method");
        _mint(_to, _amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPaused override
    {
        super._beforeTokenTransfer(from, to, amount);
    }
    
    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"_vestingAddress","type":"address"}],"name":"addVesingAddress","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":"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":"_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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vestingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestingAddressLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601081526020017f537570657220596163687420436f696e000000000000000000000000000000008152506040518060400160405280600481526020017f5359434300000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620001c1565b508060049080519060200190620000af929190620001c1565b5050506000600560006101000a81548160ff021916908315150217905550620000ed620000e1620000f360201b60201c565b620000fb60201b60201c565b620002d6565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cf9062000271565b90600052602060002090601f016020900481019282620001f357600085556200023f565b82601f106200020e57805160ff19168380011785556200023f565b828001600101855582156200023f579182015b828111156200023e57825182559160200191906001019062000221565b5b5090506200024e919062000252565b5090565b5b808211156200026d57600081600090555060010162000253565b5090565b600060028204905060018216806200028a57607f821691505b60208210811415620002a157620002a0620002a7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6121c880620002e66000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80635c975abb116100c357806395d89b411161007c57806395d89b4114610354578063a457c2d714610372578063a9059cbb146103a2578063c77c7387146103d2578063dd62ed3e146103f0578063f2fde38b146104205761014d565b80635c975abb146102b857806370a08231146102d6578063715018a61461030657806379cc6790146103105780638456cb591461032c5780638da5cb5b146103365761014d565b8063313ce56711610115578063313ce5671461020c578063395093511461022a5780633f4ba83a1461025a57806340c10f1914610264578063424032881461028057806342966c681461029c5761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806323b872dd146101be5780632749a023146101ee575b600080fd5b61015a61043c565b604051610167919061192c565b60405180910390f35b61018a600480360381019061018591906115e4565b6104ce565b6040516101979190611911565b60405180910390f35b6101a86104f1565b6040516101b59190611b4e565b60405180910390f35b6101d860048036038101906101d39190611591565b6104fb565b6040516101e59190611911565b60405180910390f35b6101f661052a565b6040516102039190611911565b60405180910390f35b61021461053d565b6040516102219190611b69565b60405180910390f35b610244600480360381019061023f91906115e4565b610546565b6040516102519190611911565b60405180910390f35b61026261057d565b005b61027e600480360381019061027991906115e4565b61058f565b005b61029a60048036038101906102959190611524565b61062d565b005b6102b660048036038101906102b19190611624565b6106e4565b005b6102c06106f8565b6040516102cd9190611911565b60405180910390f35b6102f060048036038101906102eb9190611524565b61070f565b6040516102fd9190611b4e565b60405180910390f35b61030e610757565b005b61032a600480360381019061032591906115e4565b61076b565b005b61033461078b565b005b61033e61079d565b60405161034b91906118f6565b60405180910390f35b61035c6107c7565b604051610369919061192c565b60405180910390f35b61038c600480360381019061038791906115e4565b610859565b6040516103999190611911565b60405180910390f35b6103bc60048036038101906103b791906115e4565b6108d0565b6040516103c99190611911565b60405180910390f35b6103da6108f3565b6040516103e791906118f6565b60405180910390f35b61040a60048036038101906104059190611551565b610919565b6040516104179190611b4e565b60405180910390f35b61043a60048036038101906104359190611524565b6109a0565b005b60606003805461044b90611cb2565b80601f016020809104026020016040519081016040528092919081815260200182805461047790611cb2565b80156104c45780601f10610499576101008083540402835291602001916104c4565b820191906000526020600020905b8154815290600101906020018083116104a757829003601f168201915b5050505050905090565b6000806104d9610a24565b90506104e6818585610a2c565b600191505092915050565b6000600254905090565b600080610506610a24565b9050610513858285610bf7565b61051e858585610c83565b60019150509392505050565b600560159054906101000a900460ff1681565b60006012905090565b600080610551610a24565b90506105728185856105638589610919565b61056d9190611ba0565b610a2c565b600191505092915050565b610585610f04565b61058d610f82565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461061f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061690611a8e565b60405180910390fd5b6106298282610fe5565b5050565b610635610f04565b600560159054906101000a900460ff1615610685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067c90611a2e565b60405180910390fd5b6001600560156101000a81548160ff02191690831515021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6106f56106ef610a24565b82611145565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61075f610f04565b610769600061131c565b565b61077d82610777610a24565b83610bf7565b6107878282611145565b5050565b610793610f04565b61079b6113e2565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107d690611cb2565b80601f016020809104026020016040519081016040528092919081815260200182805461080290611cb2565b801561084f5780601f106108245761010080835404028352916020019161084f565b820191906000526020600020905b81548152906001019060200180831161083257829003601f168201915b5050505050905090565b600080610864610a24565b905060006108728286610919565b9050838110156108b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ae90611b0e565b60405180910390fd5b6108c48286868403610a2c565b60019250505092915050565b6000806108db610a24565b90506108e8818585610c83565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109a8610f04565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f906119ae565b60405180910390fd5b610a218161131c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9390611aee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b03906119ce565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bea9190611b4e565b60405180910390a3505050565b6000610c038484610919565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c7d5781811015610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c66906119ee565b60405180910390fd5b610c7c8484848403610a2c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90611ace565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a9061194e565b60405180910390fd5b610d6e838383611445565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90611a0e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e879190611ba0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eeb9190611b4e565b60405180910390a3610efe84848461145d565b50505050565b610f0c610a24565b73ffffffffffffffffffffffffffffffffffffffff16610f2a61079d565b73ffffffffffffffffffffffffffffffffffffffff1614610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790611a6e565b60405180910390fd5b565b610f8a611462565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610fce610a24565b604051610fdb91906118f6565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90611b2e565b60405180910390fd5b61106160008383611445565b80600260008282546110739190611ba0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110c89190611ba0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161112d9190611b4e565b60405180910390a36111416000838361145d565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90611aae565b60405180910390fd5b6111c182600083611445565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e9061198e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461129e9190611bf6565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113039190611b4e565b60405180910390a36113178360008461145d565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6113ea6114ab565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861142e610a24565b60405161143b91906118f6565b60405180910390a1565b61144d6114ab565b6114588383836114f5565b505050565b505050565b61146a6106f8565b6114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a09061196e565b60405180910390fd5b565b6114b36106f8565b156114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea90611a4e565b60405180910390fd5b565b505050565b60008135905061150981612164565b92915050565b60008135905061151e8161217b565b92915050565b60006020828403121561153a57611539611d42565b5b6000611548848285016114fa565b91505092915050565b6000806040838503121561156857611567611d42565b5b6000611576858286016114fa565b9250506020611587858286016114fa565b9150509250929050565b6000806000606084860312156115aa576115a9611d42565b5b60006115b8868287016114fa565b93505060206115c9868287016114fa565b92505060406115da8682870161150f565b9150509250925092565b600080604083850312156115fb576115fa611d42565b5b6000611609858286016114fa565b925050602061161a8582860161150f565b9150509250929050565b60006020828403121561163a57611639611d42565b5b60006116488482850161150f565b91505092915050565b61165a81611c2a565b82525050565b61166981611c3c565b82525050565b600061167a82611b84565b6116848185611b8f565b9350611694818560208601611c7f565b61169d81611d47565b840191505092915050565b60006116b5602383611b8f565b91506116c082611d58565b604082019050919050565b60006116d8601483611b8f565b91506116e382611da7565b602082019050919050565b60006116fb602283611b8f565b915061170682611dd0565b604082019050919050565b600061171e602683611b8f565b915061172982611e1f565b604082019050919050565b6000611741602283611b8f565b915061174c82611e6e565b604082019050919050565b6000611764601d83611b8f565b915061176f82611ebd565b602082019050919050565b6000611787602683611b8f565b915061179282611ee6565b604082019050919050565b60006117aa601e83611b8f565b91506117b582611f35565b602082019050919050565b60006117cd601083611b8f565b91506117d882611f5e565b602082019050919050565b60006117f0602083611b8f565b91506117fb82611f87565b602082019050919050565b6000611813602a83611b8f565b915061181e82611fb0565b604082019050919050565b6000611836602183611b8f565b915061184182611fff565b604082019050919050565b6000611859602583611b8f565b91506118648261204e565b604082019050919050565b600061187c602483611b8f565b91506118878261209d565b604082019050919050565b600061189f602583611b8f565b91506118aa826120ec565b604082019050919050565b60006118c2601f83611b8f565b91506118cd8261213b565b602082019050919050565b6118e181611c68565b82525050565b6118f081611c72565b82525050565b600060208201905061190b6000830184611651565b92915050565b60006020820190506119266000830184611660565b92915050565b60006020820190508181036000830152611946818461166f565b905092915050565b60006020820190508181036000830152611967816116a8565b9050919050565b60006020820190508181036000830152611987816116cb565b9050919050565b600060208201905081810360008301526119a7816116ee565b9050919050565b600060208201905081810360008301526119c781611711565b9050919050565b600060208201905081810360008301526119e781611734565b9050919050565b60006020820190508181036000830152611a0781611757565b9050919050565b60006020820190508181036000830152611a278161177a565b9050919050565b60006020820190508181036000830152611a478161179d565b9050919050565b60006020820190508181036000830152611a67816117c0565b9050919050565b60006020820190508181036000830152611a87816117e3565b9050919050565b60006020820190508181036000830152611aa781611806565b9050919050565b60006020820190508181036000830152611ac781611829565b9050919050565b60006020820190508181036000830152611ae78161184c565b9050919050565b60006020820190508181036000830152611b078161186f565b9050919050565b60006020820190508181036000830152611b2781611892565b9050919050565b60006020820190508181036000830152611b47816118b5565b9050919050565b6000602082019050611b6360008301846118d8565b92915050565b6000602082019050611b7e60008301846118e7565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611bab82611c68565b9150611bb683611c68565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611beb57611bea611ce4565b5b828201905092915050565b6000611c0182611c68565b9150611c0c83611c68565b925082821015611c1f57611c1e611ce4565b5b828203905092915050565b6000611c3582611c48565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c9d578082015181840152602081019050611c82565b83811115611cac576000848401525b50505050565b60006002820490506001821680611cca57607f821691505b60208210811415611cde57611cdd611d13565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f76657374696e67206164647265737320697320616c7265616479207365740000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4f6e6c792076657374696e6720636f6e74726163742063616e2063616c6c207460008201527f686973206d6574686f6400000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61216d81611c2a565b811461217857600080fd5b50565b61218481611c68565b811461218f57600080fd5b5056fea26469706673582212200633a1451ed03c669024f8389b425e51e9e521e7acfe6a42a293ca4354ca9a2964736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80635c975abb116100c357806395d89b411161007c57806395d89b4114610354578063a457c2d714610372578063a9059cbb146103a2578063c77c7387146103d2578063dd62ed3e146103f0578063f2fde38b146104205761014d565b80635c975abb146102b857806370a08231146102d6578063715018a61461030657806379cc6790146103105780638456cb591461032c5780638da5cb5b146103365761014d565b8063313ce56711610115578063313ce5671461020c578063395093511461022a5780633f4ba83a1461025a57806340c10f1914610264578063424032881461028057806342966c681461029c5761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806323b872dd146101be5780632749a023146101ee575b600080fd5b61015a61043c565b604051610167919061192c565b60405180910390f35b61018a600480360381019061018591906115e4565b6104ce565b6040516101979190611911565b60405180910390f35b6101a86104f1565b6040516101b59190611b4e565b60405180910390f35b6101d860048036038101906101d39190611591565b6104fb565b6040516101e59190611911565b60405180910390f35b6101f661052a565b6040516102039190611911565b60405180910390f35b61021461053d565b6040516102219190611b69565b60405180910390f35b610244600480360381019061023f91906115e4565b610546565b6040516102519190611911565b60405180910390f35b61026261057d565b005b61027e600480360381019061027991906115e4565b61058f565b005b61029a60048036038101906102959190611524565b61062d565b005b6102b660048036038101906102b19190611624565b6106e4565b005b6102c06106f8565b6040516102cd9190611911565b60405180910390f35b6102f060048036038101906102eb9190611524565b61070f565b6040516102fd9190611b4e565b60405180910390f35b61030e610757565b005b61032a600480360381019061032591906115e4565b61076b565b005b61033461078b565b005b61033e61079d565b60405161034b91906118f6565b60405180910390f35b61035c6107c7565b604051610369919061192c565b60405180910390f35b61038c600480360381019061038791906115e4565b610859565b6040516103999190611911565b60405180910390f35b6103bc60048036038101906103b791906115e4565b6108d0565b6040516103c99190611911565b60405180910390f35b6103da6108f3565b6040516103e791906118f6565b60405180910390f35b61040a60048036038101906104059190611551565b610919565b6040516104179190611b4e565b60405180910390f35b61043a60048036038101906104359190611524565b6109a0565b005b60606003805461044b90611cb2565b80601f016020809104026020016040519081016040528092919081815260200182805461047790611cb2565b80156104c45780601f10610499576101008083540402835291602001916104c4565b820191906000526020600020905b8154815290600101906020018083116104a757829003601f168201915b5050505050905090565b6000806104d9610a24565b90506104e6818585610a2c565b600191505092915050565b6000600254905090565b600080610506610a24565b9050610513858285610bf7565b61051e858585610c83565b60019150509392505050565b600560159054906101000a900460ff1681565b60006012905090565b600080610551610a24565b90506105728185856105638589610919565b61056d9190611ba0565b610a2c565b600191505092915050565b610585610f04565b61058d610f82565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461061f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061690611a8e565b60405180910390fd5b6106298282610fe5565b5050565b610635610f04565b600560159054906101000a900460ff1615610685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067c90611a2e565b60405180910390fd5b6001600560156101000a81548160ff02191690831515021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6106f56106ef610a24565b82611145565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61075f610f04565b610769600061131c565b565b61077d82610777610a24565b83610bf7565b6107878282611145565b5050565b610793610f04565b61079b6113e2565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107d690611cb2565b80601f016020809104026020016040519081016040528092919081815260200182805461080290611cb2565b801561084f5780601f106108245761010080835404028352916020019161084f565b820191906000526020600020905b81548152906001019060200180831161083257829003601f168201915b5050505050905090565b600080610864610a24565b905060006108728286610919565b9050838110156108b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ae90611b0e565b60405180910390fd5b6108c48286868403610a2c565b60019250505092915050565b6000806108db610a24565b90506108e8818585610c83565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109a8610f04565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f906119ae565b60405180910390fd5b610a218161131c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9390611aee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b03906119ce565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bea9190611b4e565b60405180910390a3505050565b6000610c038484610919565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c7d5781811015610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c66906119ee565b60405180910390fd5b610c7c8484848403610a2c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90611ace565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a9061194e565b60405180910390fd5b610d6e838383611445565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90611a0e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e879190611ba0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eeb9190611b4e565b60405180910390a3610efe84848461145d565b50505050565b610f0c610a24565b73ffffffffffffffffffffffffffffffffffffffff16610f2a61079d565b73ffffffffffffffffffffffffffffffffffffffff1614610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790611a6e565b60405180910390fd5b565b610f8a611462565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610fce610a24565b604051610fdb91906118f6565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90611b2e565b60405180910390fd5b61106160008383611445565b80600260008282546110739190611ba0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110c89190611ba0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161112d9190611b4e565b60405180910390a36111416000838361145d565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90611aae565b60405180910390fd5b6111c182600083611445565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e9061198e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461129e9190611bf6565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113039190611b4e565b60405180910390a36113178360008461145d565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6113ea6114ab565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861142e610a24565b60405161143b91906118f6565b60405180910390a1565b61144d6114ab565b6114588383836114f5565b505050565b505050565b61146a6106f8565b6114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a09061196e565b60405180910390fd5b565b6114b36106f8565b156114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea90611a4e565b60405180910390fd5b565b505050565b60008135905061150981612164565b92915050565b60008135905061151e8161217b565b92915050565b60006020828403121561153a57611539611d42565b5b6000611548848285016114fa565b91505092915050565b6000806040838503121561156857611567611d42565b5b6000611576858286016114fa565b9250506020611587858286016114fa565b9150509250929050565b6000806000606084860312156115aa576115a9611d42565b5b60006115b8868287016114fa565b93505060206115c9868287016114fa565b92505060406115da8682870161150f565b9150509250925092565b600080604083850312156115fb576115fa611d42565b5b6000611609858286016114fa565b925050602061161a8582860161150f565b9150509250929050565b60006020828403121561163a57611639611d42565b5b60006116488482850161150f565b91505092915050565b61165a81611c2a565b82525050565b61166981611c3c565b82525050565b600061167a82611b84565b6116848185611b8f565b9350611694818560208601611c7f565b61169d81611d47565b840191505092915050565b60006116b5602383611b8f565b91506116c082611d58565b604082019050919050565b60006116d8601483611b8f565b91506116e382611da7565b602082019050919050565b60006116fb602283611b8f565b915061170682611dd0565b604082019050919050565b600061171e602683611b8f565b915061172982611e1f565b604082019050919050565b6000611741602283611b8f565b915061174c82611e6e565b604082019050919050565b6000611764601d83611b8f565b915061176f82611ebd565b602082019050919050565b6000611787602683611b8f565b915061179282611ee6565b604082019050919050565b60006117aa601e83611b8f565b91506117b582611f35565b602082019050919050565b60006117cd601083611b8f565b91506117d882611f5e565b602082019050919050565b60006117f0602083611b8f565b91506117fb82611f87565b602082019050919050565b6000611813602a83611b8f565b915061181e82611fb0565b604082019050919050565b6000611836602183611b8f565b915061184182611fff565b604082019050919050565b6000611859602583611b8f565b91506118648261204e565b604082019050919050565b600061187c602483611b8f565b91506118878261209d565b604082019050919050565b600061189f602583611b8f565b91506118aa826120ec565b604082019050919050565b60006118c2601f83611b8f565b91506118cd8261213b565b602082019050919050565b6118e181611c68565b82525050565b6118f081611c72565b82525050565b600060208201905061190b6000830184611651565b92915050565b60006020820190506119266000830184611660565b92915050565b60006020820190508181036000830152611946818461166f565b905092915050565b60006020820190508181036000830152611967816116a8565b9050919050565b60006020820190508181036000830152611987816116cb565b9050919050565b600060208201905081810360008301526119a7816116ee565b9050919050565b600060208201905081810360008301526119c781611711565b9050919050565b600060208201905081810360008301526119e781611734565b9050919050565b60006020820190508181036000830152611a0781611757565b9050919050565b60006020820190508181036000830152611a278161177a565b9050919050565b60006020820190508181036000830152611a478161179d565b9050919050565b60006020820190508181036000830152611a67816117c0565b9050919050565b60006020820190508181036000830152611a87816117e3565b9050919050565b60006020820190508181036000830152611aa781611806565b9050919050565b60006020820190508181036000830152611ac781611829565b9050919050565b60006020820190508181036000830152611ae78161184c565b9050919050565b60006020820190508181036000830152611b078161186f565b9050919050565b60006020820190508181036000830152611b2781611892565b9050919050565b60006020820190508181036000830152611b47816118b5565b9050919050565b6000602082019050611b6360008301846118d8565b92915050565b6000602082019050611b7e60008301846118e7565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611bab82611c68565b9150611bb683611c68565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611beb57611bea611ce4565b5b828201905092915050565b6000611c0182611c68565b9150611c0c83611c68565b925082821015611c1f57611c1e611ce4565b5b828203905092915050565b6000611c3582611c48565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c9d578082015181840152602081019050611c82565b83811115611cac576000848401525b50505050565b60006002820490506001821680611cca57607f821691505b60208210811415611cde57611cdd611d13565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f76657374696e67206164647265737320697320616c7265616479207365740000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4f6e6c792076657374696e6720636f6e74726163742063616e2063616c6c207460008201527f686973206d6574686f6400000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61216d81611c2a565b811461217857600080fd5b50565b61218481611c68565b811461218f57600080fd5b5056fea26469706673582212200633a1451ed03c669024f8389b425e51e9e521e7acfe6a42a293ca4354ca9a2964736f6c63430008070033

Deployed Bytecode Sourcemap

24031:1052:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12008:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14359:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13128:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15140:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24167:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12970:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15844:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25015:65;;;:::i;:::-;;24574:180;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24246:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23377:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5266:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13299:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;:::i;:::-;;23787:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24946:61;;;:::i;:::-;;2128:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12227:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16585:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13632:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24208:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13888:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12008:100;12062:13;12095:5;12088:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12008:100;:::o;14359:201::-;14442:4;14459:13;14475:12;:10;:12::i;:::-;14459:28;;14498:32;14507:5;14514:7;14523:6;14498:8;:32::i;:::-;14548:4;14541:11;;;14359:201;;;;:::o;13128:108::-;13189:7;13216:12;;13209:19;;13128:108;:::o;15140:295::-;15271:4;15288:15;15306:12;:10;:12::i;:::-;15288:30;;15329:38;15345:4;15351:7;15360:6;15329:15;:38::i;:::-;15378:27;15388:4;15394:2;15398:6;15378:9;:27::i;:::-;15423:4;15416:11;;;15140:295;;;;;:::o;24167:32::-;;;;;;;;;;;;;:::o;12970:93::-;13028:5;13053:2;13046:9;;12970:93;:::o;15844:238::-;15932:4;15949:13;15965:12;:10;:12::i;:::-;15949:28;;15988:64;15997:5;16004:7;16041:10;16013:25;16023:5;16030:7;16013:9;:25::i;:::-;:38;;;;:::i;:::-;15988:8;:64::i;:::-;16070:4;16063:11;;;15844:238;;;;:::o;25015:65::-;2014:13;:11;:13::i;:::-;25062:10:::1;:8;:10::i;:::-;25015:65::o:0;24574:180::-;24655:14;;;;;;;;;;;24641:28;;:10;:28;;;24633:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;24727:19;24733:3;24738:7;24727:5;:19::i;:::-;24574:180;;:::o;24246:232::-;2014:13;:11;:13::i;:::-;24334:20:::1;;;;;;;;;;;24333:21;24325:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;24423:4;24400:20;;:27;;;;;;;;;;;;;;;;;;24455:15;24438:14;;:32;;;;;;;;;;;;;;;;;;24246:232:::0;:::o;23377:91::-;23433:27;23439:12;:10;:12::i;:::-;23453:6;23433:5;:27::i;:::-;23377:91;:::o;5266:86::-;5313:4;5337:7;;;;;;;;;;;5330:14;;5266:86;:::o;13299:127::-;13373:7;13400:9;:18;13410:7;13400:18;;;;;;;;;;;;;;;;13393:25;;13299:127;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;23787:164::-;23864:46;23880:7;23889:12;:10;:12::i;:::-;23903:6;23864:15;:46::i;:::-;23921:22;23927:7;23936:6;23921:5;:22::i;:::-;23787:164;;:::o;24946:61::-;2014:13;:11;:13::i;:::-;24991:8:::1;:6;:8::i;:::-;24946:61::o:0;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;12227:104::-;12283:13;12316:7;12309:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12227:104;:::o;16585:436::-;16678:4;16695:13;16711:12;:10;:12::i;:::-;16695:28;;16734:24;16761:25;16771:5;16778:7;16761:9;:25::i;:::-;16734:52;;16825:15;16805:16;:35;;16797:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16918:60;16927:5;16934:7;16962:15;16943:16;:34;16918:8;:60::i;:::-;17009:4;17002:11;;;;16585:436;;;;:::o;13632:193::-;13711:4;13728:13;13744:12;:10;:12::i;:::-;13728:28;;13767;13777:5;13784:2;13788:6;13767:9;:28::i;:::-;13813:4;13806:11;;;13632:193;;;;:::o;24208:29::-;;;;;;;;;;;;;:::o;13888:151::-;13977:7;14004:11;:18;14016:5;14004:18;;;;;;;;;;;;;;;:27;14023:7;14004:27;;;;;;;;;;;;;;;;13997:34;;13888:151;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;20210:380::-;20363:1;20346:19;;:5;:19;;;;20338:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20444:1;20425:21;;:7;:21;;;;20417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20528:6;20498:11;:18;20510:5;20498:18;;;;;;;;;;;;;;;:27;20517:7;20498:27;;;;;;;;;;;;;;;:36;;;;20566:7;20550:32;;20559:5;20550:32;;;20575:6;20550:32;;;;;;:::i;:::-;;;;;;;;20210:380;;;:::o;20881:453::-;21016:24;21043:25;21053:5;21060:7;21043:9;:25::i;:::-;21016:52;;21103:17;21083:16;:37;21079:248;;21165:6;21145:16;:26;;21137:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21249:51;21258:5;21265:7;21293:6;21274:16;:25;21249:8;:51::i;:::-;21079:248;21005:329;20881:453;;;:::o;17491:671::-;17638:1;17622:18;;:4;:18;;;;17614:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17715:1;17701:16;;:2;:16;;;;17693:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17770:38;17791:4;17797:2;17801:6;17770:20;:38::i;:::-;17821:19;17843:9;:15;17853:4;17843:15;;;;;;;;;;;;;;;;17821:37;;17892:6;17877:11;:21;;17869:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;18009:6;17995:11;:20;17977:9;:15;17987:4;17977:15;;;;;;;;;;;;;;;:38;;;;18054:6;18037:9;:13;18047:2;18037:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;18093:2;18078:26;;18087:4;18078:26;;;18097:6;18078:26;;;;;;:::i;:::-;;;;;;;;18117:37;18137:4;18143:2;18147:6;18117:19;:37::i;:::-;17603:559;17491:671;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;6121:120::-;5130:16;:14;:16::i;:::-;6190:5:::1;6180:7;;:15;;;;;;;;;;;;;;;;;;6211:22;6220:12;:10;:12::i;:::-;6211:22;;;;;;:::i;:::-;;;;;;;;6121:120::o:0;18449:399::-;18552:1;18533:21;;:7;:21;;;;18525:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;18603:49;18632:1;18636:7;18645:6;18603:20;:49::i;:::-;18681:6;18665:12;;:22;;;;;;;:::i;:::-;;;;;;;;18720:6;18698:9;:18;18708:7;18698:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;18763:7;18742:37;;18759:1;18742:37;;;18772:6;18742:37;;;;;;:::i;:::-;;;;;;;;18792:48;18820:1;18824:7;18833:6;18792:19;:48::i;:::-;18449:399;;:::o;19181:591::-;19284:1;19265:21;;:7;:21;;;;19257:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19337:49;19358:7;19375:1;19379:6;19337:20;:49::i;:::-;19399:22;19424:9;:18;19434:7;19424:18;;;;;;;;;;;;;;;;19399:43;;19479:6;19461:14;:24;;19453:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19598:6;19581:14;:23;19560:9;:18;19570:7;19560:18;;;;;;;;;;;;;;;:44;;;;19642:6;19626:12;;:22;;;;;;;:::i;:::-;;;;;;;;19692:1;19666:37;;19675:7;19666:37;;;19696:6;19666:37;;;;;;:::i;:::-;;;;;;;;19716:48;19736:7;19753:1;19757:6;19716:19;:48::i;:::-;19246:526;19181:591;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;5862:118::-;4871:19;:17;:19::i;:::-;5932:4:::1;5922:7;;:14;;;;;;;;;;;;;;;;;;5952:20;5959:12;:10;:12::i;:::-;5952:20;;;;;;:::i;:::-;;;;;;;;5862:118::o:0;24762:172::-;4871:19;:17;:19::i;:::-;24882:44:::1;24909:4;24915:2;24919:6;24882:26;:44::i;:::-;24762:172:::0;;;:::o;22663:124::-;;;;:::o;5610:108::-;5677:8;:6;:8::i;:::-;5669:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;5610:108::o;5425:::-;5496:8;:6;:8::i;:::-;5495:9;5487:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;5425:108::o;21934:125::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:119;;;2331:79;;:::i;:::-;2293:119;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2217:329;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2552:118;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2676:109;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;2791:364;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3161:366;;;:::o;3533:::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3533:366;;;:::o;3905:::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;3905:366;;;:::o;4277:::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4277:366;;;:::o;4649:::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4649:366;;;:::o;5021:::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5021:366;;;:::o;5393:::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5393:366;;;:::o;5765:::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5765:366;;;:::o;6137:::-;6279:3;6300:67;6364:2;6359:3;6300:67;:::i;:::-;6293:74;;6376:93;6465:3;6376:93;:::i;:::-;6494:2;6489:3;6485:12;6478:19;;6137:366;;;:::o;6509:::-;6651:3;6672:67;6736:2;6731:3;6672:67;:::i;:::-;6665:74;;6748:93;6837:3;6748:93;:::i;:::-;6866:2;6861:3;6857:12;6850:19;;6509:366;;;:::o;6881:::-;7023:3;7044:67;7108:2;7103:3;7044:67;:::i;:::-;7037:74;;7120:93;7209:3;7120:93;:::i;:::-;7238:2;7233:3;7229:12;7222:19;;6881:366;;;:::o;7253:::-;7395:3;7416:67;7480:2;7475:3;7416:67;:::i;:::-;7409:74;;7492:93;7581:3;7492:93;:::i;:::-;7610:2;7605:3;7601:12;7594:19;;7253:366;;;:::o;7625:::-;7767:3;7788:67;7852:2;7847:3;7788:67;:::i;:::-;7781:74;;7864:93;7953:3;7864:93;:::i;:::-;7982:2;7977:3;7973:12;7966:19;;7625:366;;;:::o;7997:::-;8139:3;8160:67;8224:2;8219:3;8160:67;:::i;:::-;8153:74;;8236:93;8325:3;8236:93;:::i;:::-;8354:2;8349:3;8345:12;8338:19;;7997:366;;;:::o;8369:::-;8511:3;8532:67;8596:2;8591:3;8532:67;:::i;:::-;8525:74;;8608:93;8697:3;8608:93;:::i;:::-;8726:2;8721:3;8717:12;8710:19;;8369:366;;;:::o;8741:::-;8883:3;8904:67;8968:2;8963:3;8904:67;:::i;:::-;8897:74;;8980:93;9069:3;8980:93;:::i;:::-;9098:2;9093:3;9089:12;9082:19;;8741:366;;;:::o;9113:118::-;9200:24;9218:5;9200:24;:::i;:::-;9195:3;9188:37;9113:118;;:::o;9237:112::-;9320:22;9336:5;9320:22;:::i;:::-;9315:3;9308:35;9237:112;;:::o;9355:222::-;9448:4;9486:2;9475:9;9471:18;9463:26;;9499:71;9567:1;9556:9;9552:17;9543:6;9499:71;:::i;:::-;9355:222;;;;:::o;9583:210::-;9670:4;9708:2;9697:9;9693:18;9685:26;;9721:65;9783:1;9772:9;9768:17;9759:6;9721:65;:::i;:::-;9583:210;;;;:::o;9799:313::-;9912:4;9950:2;9939:9;9935:18;9927:26;;9999:9;9993:4;9989:20;9985:1;9974:9;9970:17;9963:47;10027:78;10100:4;10091:6;10027:78;:::i;:::-;10019:86;;9799:313;;;;:::o;10118:419::-;10284:4;10322:2;10311:9;10307:18;10299:26;;10371:9;10365:4;10361:20;10357:1;10346:9;10342:17;10335:47;10399:131;10525:4;10399:131;:::i;:::-;10391:139;;10118:419;;;:::o;10543:::-;10709:4;10747:2;10736:9;10732:18;10724:26;;10796:9;10790:4;10786:20;10782:1;10771:9;10767:17;10760:47;10824:131;10950:4;10824:131;:::i;:::-;10816:139;;10543:419;;;:::o;10968:::-;11134:4;11172:2;11161:9;11157:18;11149:26;;11221:9;11215:4;11211:20;11207:1;11196:9;11192:17;11185:47;11249:131;11375:4;11249:131;:::i;:::-;11241:139;;10968:419;;;:::o;11393:::-;11559:4;11597:2;11586:9;11582:18;11574:26;;11646:9;11640:4;11636:20;11632:1;11621:9;11617:17;11610:47;11674:131;11800:4;11674:131;:::i;:::-;11666:139;;11393:419;;;:::o;11818:::-;11984:4;12022:2;12011:9;12007:18;11999:26;;12071:9;12065:4;12061:20;12057:1;12046:9;12042:17;12035:47;12099:131;12225:4;12099:131;:::i;:::-;12091:139;;11818:419;;;:::o;12243:::-;12409:4;12447:2;12436:9;12432:18;12424:26;;12496:9;12490:4;12486:20;12482:1;12471:9;12467:17;12460:47;12524:131;12650:4;12524:131;:::i;:::-;12516:139;;12243:419;;;:::o;12668:::-;12834:4;12872:2;12861:9;12857:18;12849:26;;12921:9;12915:4;12911:20;12907:1;12896:9;12892:17;12885:47;12949:131;13075:4;12949:131;:::i;:::-;12941:139;;12668:419;;;:::o;13093:::-;13259:4;13297:2;13286:9;13282:18;13274:26;;13346:9;13340:4;13336:20;13332:1;13321:9;13317:17;13310:47;13374:131;13500:4;13374:131;:::i;:::-;13366:139;;13093:419;;;:::o;13518:::-;13684:4;13722:2;13711:9;13707:18;13699:26;;13771:9;13765:4;13761:20;13757:1;13746:9;13742:17;13735:47;13799:131;13925:4;13799:131;:::i;:::-;13791:139;;13518:419;;;:::o;13943:::-;14109:4;14147:2;14136:9;14132:18;14124:26;;14196:9;14190:4;14186:20;14182:1;14171:9;14167:17;14160:47;14224:131;14350:4;14224:131;:::i;:::-;14216:139;;13943:419;;;:::o;14368:::-;14534:4;14572:2;14561:9;14557:18;14549:26;;14621:9;14615:4;14611:20;14607:1;14596:9;14592:17;14585:47;14649:131;14775:4;14649:131;:::i;:::-;14641:139;;14368:419;;;:::o;14793:::-;14959:4;14997:2;14986:9;14982:18;14974:26;;15046:9;15040:4;15036:20;15032:1;15021:9;15017:17;15010:47;15074:131;15200:4;15074:131;:::i;:::-;15066:139;;14793:419;;;:::o;15218:::-;15384:4;15422:2;15411:9;15407:18;15399:26;;15471:9;15465:4;15461:20;15457:1;15446:9;15442:17;15435:47;15499:131;15625:4;15499:131;:::i;:::-;15491:139;;15218:419;;;:::o;15643:::-;15809:4;15847:2;15836:9;15832:18;15824:26;;15896:9;15890:4;15886:20;15882:1;15871:9;15867:17;15860:47;15924:131;16050:4;15924:131;:::i;:::-;15916:139;;15643:419;;;:::o;16068:::-;16234:4;16272:2;16261:9;16257:18;16249:26;;16321:9;16315:4;16311:20;16307:1;16296:9;16292:17;16285:47;16349:131;16475:4;16349:131;:::i;:::-;16341:139;;16068:419;;;:::o;16493:::-;16659:4;16697:2;16686:9;16682:18;16674:26;;16746:9;16740:4;16736:20;16732:1;16721:9;16717:17;16710:47;16774:131;16900:4;16774:131;:::i;:::-;16766:139;;16493:419;;;:::o;16918:222::-;17011:4;17049:2;17038:9;17034:18;17026:26;;17062:71;17130:1;17119:9;17115:17;17106:6;17062:71;:::i;:::-;16918:222;;;;:::o;17146:214::-;17235:4;17273:2;17262:9;17258:18;17250:26;;17286:67;17350:1;17339:9;17335:17;17326:6;17286:67;:::i;:::-;17146:214;;;;:::o;17447:99::-;17499:6;17533:5;17527:12;17517:22;;17447:99;;;:::o;17552:169::-;17636:11;17670:6;17665:3;17658:19;17710:4;17705:3;17701:14;17686:29;;17552:169;;;;:::o;17727:305::-;17767:3;17786:20;17804:1;17786:20;:::i;:::-;17781:25;;17820:20;17838:1;17820:20;:::i;:::-;17815:25;;17974:1;17906:66;17902:74;17899:1;17896:81;17893:107;;;17980:18;;:::i;:::-;17893:107;18024:1;18021;18017:9;18010:16;;17727:305;;;;:::o;18038:191::-;18078:4;18098:20;18116:1;18098:20;:::i;:::-;18093:25;;18132:20;18150:1;18132:20;:::i;:::-;18127:25;;18171:1;18168;18165:8;18162:34;;;18176:18;;:::i;:::-;18162:34;18221:1;18218;18214:9;18206:17;;18038:191;;;;:::o;18235:96::-;18272:7;18301:24;18319:5;18301:24;:::i;:::-;18290:35;;18235:96;;;:::o;18337:90::-;18371:7;18414:5;18407:13;18400:21;18389:32;;18337:90;;;:::o;18433:126::-;18470:7;18510:42;18503:5;18499:54;18488:65;;18433:126;;;:::o;18565:77::-;18602:7;18631:5;18620:16;;18565:77;;;:::o;18648:86::-;18683:7;18723:4;18716:5;18712:16;18701:27;;18648:86;;;:::o;18740:307::-;18808:1;18818:113;18832:6;18829:1;18826:13;18818:113;;;18917:1;18912:3;18908:11;18902:18;18898:1;18893:3;18889:11;18882:39;18854:2;18851:1;18847:10;18842:15;;18818:113;;;18949:6;18946:1;18943:13;18940:101;;;19029:1;19020:6;19015:3;19011:16;19004:27;18940:101;18789:258;18740:307;;;:::o;19053:320::-;19097:6;19134:1;19128:4;19124:12;19114:22;;19181:1;19175:4;19171:12;19202:18;19192:81;;19258:4;19250:6;19246:17;19236:27;;19192:81;19320:2;19312:6;19309:14;19289:18;19286:38;19283:84;;;19339:18;;:::i;:::-;19283:84;19104:269;19053:320;;;:::o;19379:180::-;19427:77;19424:1;19417:88;19524:4;19521:1;19514:15;19548:4;19545:1;19538:15;19565:180;19613:77;19610:1;19603:88;19710:4;19707:1;19700:15;19734:4;19731:1;19724:15;19874:117;19983:1;19980;19973:12;19997:102;20038:6;20089:2;20085:7;20080:2;20073:5;20069:14;20065:28;20055:38;;19997:102;;;:::o;20105:222::-;20245:34;20241:1;20233:6;20229:14;20222:58;20314:5;20309:2;20301:6;20297:15;20290:30;20105:222;:::o;20333:170::-;20473:22;20469:1;20461:6;20457:14;20450:46;20333:170;:::o;20509:221::-;20649:34;20645:1;20637:6;20633:14;20626:58;20718:4;20713:2;20705:6;20701:15;20694:29;20509:221;:::o;20736:225::-;20876:34;20872:1;20864:6;20860:14;20853:58;20945:8;20940:2;20932:6;20928:15;20921:33;20736:225;:::o;20967:221::-;21107:34;21103:1;21095:6;21091:14;21084:58;21176:4;21171:2;21163:6;21159:15;21152:29;20967:221;:::o;21194:179::-;21334:31;21330:1;21322:6;21318:14;21311:55;21194:179;:::o;21379:225::-;21519:34;21515:1;21507:6;21503:14;21496:58;21588:8;21583:2;21575:6;21571:15;21564:33;21379:225;:::o;21610:180::-;21750:32;21746:1;21738:6;21734:14;21727:56;21610:180;:::o;21796:166::-;21936:18;21932:1;21924:6;21920:14;21913:42;21796:166;:::o;21968:182::-;22108:34;22104:1;22096:6;22092:14;22085:58;21968:182;:::o;22156:229::-;22296:34;22292:1;22284:6;22280:14;22273:58;22365:12;22360:2;22352:6;22348:15;22341:37;22156:229;:::o;22391:220::-;22531:34;22527:1;22519:6;22515:14;22508:58;22600:3;22595:2;22587:6;22583:15;22576:28;22391:220;:::o;22617:224::-;22757:34;22753:1;22745:6;22741:14;22734:58;22826:7;22821:2;22813:6;22809:15;22802:32;22617:224;:::o;22847:223::-;22987:34;22983:1;22975:6;22971:14;22964:58;23056:6;23051:2;23043:6;23039:15;23032:31;22847:223;:::o;23076:224::-;23216:34;23212:1;23204:6;23200:14;23193:58;23285:7;23280:2;23272:6;23268:15;23261:32;23076:224;:::o;23306:181::-;23446:33;23442:1;23434:6;23430:14;23423:57;23306:181;:::o;23493:122::-;23566:24;23584:5;23566:24;:::i;:::-;23559:5;23556:35;23546:63;;23605:1;23602;23595:12;23546:63;23493:122;:::o;23621:::-;23694:24;23712:5;23694:24;:::i;:::-;23687:5;23684:35;23674:63;;23733:1;23730;23723:12;23674:63;23621:122;:::o

Swarm Source

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