ETH Price: $2,085.10 (-14.89%)

Token

SGGenesis (SGG)
 

Overview

Max Total Supply

1,000,000,000 SGG

Holders

173

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,000 SGG

Value
$0.00
0xa5266228e88f3867ad4ae45367356cc4cfc4f26a
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:
SGGenesis

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 2021-12-30
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (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 Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

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

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        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 v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/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 v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

// File: contracts/sg_genesis.sol



pragma solidity ^0.8.2;







contract SGGenesis is ERC20, ERC20Burnable, Pausable, Ownable {

    constructor() ERC20("SGGenesis", "SGG") {}

    

    bool public isMintable = true;



    function pause() public onlyOwner {

        _pause();

    }



    function unpause() public onlyOwner {

        _unpause();

    }



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

        require(isMintable == true, "Mint finished");



        _mint(to, amount);

    }



    function mintFinish() public onlyOwner returns(bool) {

        isMintable = false;



        return true;

    }



    function _beforeTokenTransfer(address from, address to, uint256 amount)

        internal

        whenNotPaused

        override

    {

        super._beforeTokenTransfer(from, to, amount);

    }

}

Contract Security Audit

Contract ABI

API
[{"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":"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":[],"name":"isMintable","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":"mintFinish","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600560156101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600981526020017f534747656e6573697300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f53474700000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000b1929190620001dc565b508060049080519060200190620000ca929190620001dc565b5050506000600560006101000a81548160ff02191690831515021790555062000108620000fc6200010e60201b60201c565b6200011660201b60201c565b620002f1565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ea906200028c565b90600052602060002090601f0160209004810192826200020e57600085556200025a565b82601f106200022957805160ff19168380011785556200025a565b828001600101855582156200025a579182015b82811115620002595782518255916020019190600101906200023c565b5b5090506200026991906200026d565b5090565b5b80821115620002885760008160009055506001016200026e565b5090565b60006002820490506001821680620002a557607f821691505b60208210811415620002bc57620002bb620002c2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6124c180620003016000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b85780638da5cb5b1161007c5780638da5cb5b1461032d57806395d89b411461034b578063a457c2d714610369578063a9059cbb14610399578063dd62ed3e146103c9578063f2fde38b146103f957610142565b806370a08231146102af578063715018a6146102df57806379cc6790146102e9578063807a599c146103055780638456cb591461032357610142565b8063395093511161010a57806339509351146102015780633f4ba83a1461023157806340c10f191461023b57806342966c681461025757806346b45af7146102735780635c975abb1461029157610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610415565b60405161015c9190611bff565b60405180910390f35b61017f600480360381019061017a91906118b7565b6104a7565b60405161018c9190611be4565b60405180910390f35b61019d6104c5565b6040516101aa9190611e21565b60405180910390f35b6101cd60048036038101906101c89190611864565b6104cf565b6040516101da9190611be4565b60405180910390f35b6101eb6105c7565b6040516101f89190611e3c565b60405180910390f35b61021b600480360381019061021691906118b7565b6105d0565b6040516102289190611be4565b60405180910390f35b61023961067c565b005b610255600480360381019061025091906118b7565b610702565b005b610271600480360381019061026c91906118f7565b6107e2565b005b61027b6107f6565b6040516102889190611be4565b60405180910390f35b610299610809565b6040516102a69190611be4565b60405180910390f35b6102c960048036038101906102c491906117f7565b610820565b6040516102d69190611e21565b60405180910390f35b6102e7610868565b005b61030360048036038101906102fe91906118b7565b6108f0565b005b61030d61096b565b60405161031a9190611be4565b60405180910390f35b61032b610a0b565b005b610335610a91565b6040516103429190611bc9565b60405180910390f35b610353610abb565b6040516103609190611bff565b60405180910390f35b610383600480360381019061037e91906118b7565b610b4d565b6040516103909190611be4565b60405180910390f35b6103b360048036038101906103ae91906118b7565b610c38565b6040516103c09190611be4565b60405180910390f35b6103e360048036038101906103de9190611824565b610c56565b6040516103f09190611e21565b60405180910390f35b610413600480360381019061040e91906117f7565b610cdd565b005b60606003805461042490611f85565b80601f016020809104026020016040519081016040528092919081815260200182805461045090611f85565b801561049d5780601f106104725761010080835404028352916020019161049d565b820191906000526020600020905b81548152906001019060200180831161048057829003601f168201915b5050505050905090565b60006104bb6104b4610dd5565b8484610ddd565b6001905092915050565b6000600254905090565b60006104dc848484610fa8565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610527610dd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059e90611d01565b60405180910390fd5b6105bb856105b3610dd5565b858403610ddd565b60019150509392505050565b60006012905090565b60006106726105dd610dd5565b8484600160006105eb610dd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461066d9190611e73565b610ddd565b6001905092915050565b610684610dd5565b73ffffffffffffffffffffffffffffffffffffffff166106a2610a91565b73ffffffffffffffffffffffffffffffffffffffff16146106f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ef90611d21565b60405180910390fd5b610700611229565b565b61070a610dd5565b73ffffffffffffffffffffffffffffffffffffffff16610728610a91565b73ffffffffffffffffffffffffffffffffffffffff161461077e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077590611d21565b60405180910390fd5b60011515600560159054906101000a900460ff161515146107d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cb90611d61565b60405180910390fd5b6107de82826112cb565b5050565b6107f36107ed610dd5565b8261142b565b50565b600560159054906101000a900460ff1681565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610870610dd5565b73ffffffffffffffffffffffffffffffffffffffff1661088e610a91565b73ffffffffffffffffffffffffffffffffffffffff16146108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db90611d21565b60405180910390fd5b6108ee6000611602565b565b6000610903836108fe610dd5565b610c56565b905081811015610948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093f90611d41565b60405180910390fd5b61095c83610954610dd5565b848403610ddd565b610966838361142b565b505050565b6000610975610dd5565b73ffffffffffffffffffffffffffffffffffffffff16610993610a91565b73ffffffffffffffffffffffffffffffffffffffff16146109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611d21565b60405180910390fd5b6000600560156101000a81548160ff0219169083151502179055506001905090565b610a13610dd5565b73ffffffffffffffffffffffffffffffffffffffff16610a31610a91565b73ffffffffffffffffffffffffffffffffffffffff1614610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90611d21565b60405180910390fd5b610a8f6116c8565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610aca90611f85565b80601f0160208091040260200160405190810160405280929190818152602001828054610af690611f85565b8015610b435780601f10610b1857610100808354040283529160200191610b43565b820191906000526020600020905b815481529060010190602001808311610b2657829003601f168201915b5050505050905090565b60008060016000610b5c610dd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090611de1565b60405180910390fd5b610c2d610c24610dd5565b85858403610ddd565b600191505092915050565b6000610c4c610c45610dd5565b8484610fa8565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ce5610dd5565b73ffffffffffffffffffffffffffffffffffffffff16610d03610a91565b73ffffffffffffffffffffffffffffffffffffffff1614610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090611d21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090611c81565b60405180910390fd5b610dd281611602565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490611dc1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490611ca1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9b9190611e21565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90611da1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90611c21565b60405180910390fd5b61109383838361176b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090611cc1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111ac9190611e73565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112109190611e21565b60405180910390a36112238484846117c3565b50505050565b611231610809565b611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126790611c41565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6112b4610dd5565b6040516112c19190611bc9565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290611e01565b60405180910390fd5b6113476000838361176b565b80600260008282546113599190611e73565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113ae9190611e73565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114139190611e21565b60405180910390a3611427600083836117c3565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290611d81565b60405180910390fd5b6114a78260008361176b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490611c61565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546115849190611ec9565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115e99190611e21565b60405180910390a36115fd836000846117c3565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6116d0610809565b15611710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170790611ce1565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611754610dd5565b6040516117619190611bc9565b60405180910390a1565b611773610809565b156117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90611ce1565b60405180910390fd5b6117be8383836117c8565b505050565b505050565b505050565b6000813590506117dc8161245d565b92915050565b6000813590506117f181612474565b92915050565b60006020828403121561180d5761180c612015565b5b600061181b848285016117cd565b91505092915050565b6000806040838503121561183b5761183a612015565b5b6000611849858286016117cd565b925050602061185a858286016117cd565b9150509250929050565b60008060006060848603121561187d5761187c612015565b5b600061188b868287016117cd565b935050602061189c868287016117cd565b92505060406118ad868287016117e2565b9150509250925092565b600080604083850312156118ce576118cd612015565b5b60006118dc858286016117cd565b92505060206118ed858286016117e2565b9150509250929050565b60006020828403121561190d5761190c612015565b5b600061191b848285016117e2565b91505092915050565b61192d81611efd565b82525050565b61193c81611f0f565b82525050565b600061194d82611e57565b6119578185611e62565b9350611967818560208601611f52565b6119708161201a565b840191505092915050565b6000611988602383611e62565b91506119938261202b565b604082019050919050565b60006119ab601483611e62565b91506119b68261207a565b602082019050919050565b60006119ce602283611e62565b91506119d9826120a3565b604082019050919050565b60006119f1602683611e62565b91506119fc826120f2565b604082019050919050565b6000611a14602283611e62565b9150611a1f82612141565b604082019050919050565b6000611a37602683611e62565b9150611a4282612190565b604082019050919050565b6000611a5a601083611e62565b9150611a65826121df565b602082019050919050565b6000611a7d602883611e62565b9150611a8882612208565b604082019050919050565b6000611aa0602083611e62565b9150611aab82612257565b602082019050919050565b6000611ac3602483611e62565b9150611ace82612280565b604082019050919050565b6000611ae6600d83611e62565b9150611af1826122cf565b602082019050919050565b6000611b09602183611e62565b9150611b14826122f8565b604082019050919050565b6000611b2c602583611e62565b9150611b3782612347565b604082019050919050565b6000611b4f602483611e62565b9150611b5a82612396565b604082019050919050565b6000611b72602583611e62565b9150611b7d826123e5565b604082019050919050565b6000611b95601f83611e62565b9150611ba082612434565b602082019050919050565b611bb481611f3b565b82525050565b611bc381611f45565b82525050565b6000602082019050611bde6000830184611924565b92915050565b6000602082019050611bf96000830184611933565b92915050565b60006020820190508181036000830152611c198184611942565b905092915050565b60006020820190508181036000830152611c3a8161197b565b9050919050565b60006020820190508181036000830152611c5a8161199e565b9050919050565b60006020820190508181036000830152611c7a816119c1565b9050919050565b60006020820190508181036000830152611c9a816119e4565b9050919050565b60006020820190508181036000830152611cba81611a07565b9050919050565b60006020820190508181036000830152611cda81611a2a565b9050919050565b60006020820190508181036000830152611cfa81611a4d565b9050919050565b60006020820190508181036000830152611d1a81611a70565b9050919050565b60006020820190508181036000830152611d3a81611a93565b9050919050565b60006020820190508181036000830152611d5a81611ab6565b9050919050565b60006020820190508181036000830152611d7a81611ad9565b9050919050565b60006020820190508181036000830152611d9a81611afc565b9050919050565b60006020820190508181036000830152611dba81611b1f565b9050919050565b60006020820190508181036000830152611dda81611b42565b9050919050565b60006020820190508181036000830152611dfa81611b65565b9050919050565b60006020820190508181036000830152611e1a81611b88565b9050919050565b6000602082019050611e366000830184611bab565b92915050565b6000602082019050611e516000830184611bba565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611e7e82611f3b565b9150611e8983611f3b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ebe57611ebd611fb7565b5b828201905092915050565b6000611ed482611f3b565b9150611edf83611f3b565b925082821015611ef257611ef1611fb7565b5b828203905092915050565b6000611f0882611f1b565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611f70578082015181840152602081019050611f55565b83811115611f7f576000848401525b50505050565b60006002820490506001821680611f9d57607f821691505b60208210811415611fb157611fb0611fe6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742066696e697368656400000000000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61246681611efd565b811461247157600080fd5b50565b61247d81611f3b565b811461248857600080fd5b5056fea2646970667358221220bd9f33eab1cf6b8c11ad0a3b4485bfdfab8f5b213f4b13ecab876571f3c76f3a64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b85780638da5cb5b1161007c5780638da5cb5b1461032d57806395d89b411461034b578063a457c2d714610369578063a9059cbb14610399578063dd62ed3e146103c9578063f2fde38b146103f957610142565b806370a08231146102af578063715018a6146102df57806379cc6790146102e9578063807a599c146103055780638456cb591461032357610142565b8063395093511161010a57806339509351146102015780633f4ba83a1461023157806340c10f191461023b57806342966c681461025757806346b45af7146102735780635c975abb1461029157610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610415565b60405161015c9190611bff565b60405180910390f35b61017f600480360381019061017a91906118b7565b6104a7565b60405161018c9190611be4565b60405180910390f35b61019d6104c5565b6040516101aa9190611e21565b60405180910390f35b6101cd60048036038101906101c89190611864565b6104cf565b6040516101da9190611be4565b60405180910390f35b6101eb6105c7565b6040516101f89190611e3c565b60405180910390f35b61021b600480360381019061021691906118b7565b6105d0565b6040516102289190611be4565b60405180910390f35b61023961067c565b005b610255600480360381019061025091906118b7565b610702565b005b610271600480360381019061026c91906118f7565b6107e2565b005b61027b6107f6565b6040516102889190611be4565b60405180910390f35b610299610809565b6040516102a69190611be4565b60405180910390f35b6102c960048036038101906102c491906117f7565b610820565b6040516102d69190611e21565b60405180910390f35b6102e7610868565b005b61030360048036038101906102fe91906118b7565b6108f0565b005b61030d61096b565b60405161031a9190611be4565b60405180910390f35b61032b610a0b565b005b610335610a91565b6040516103429190611bc9565b60405180910390f35b610353610abb565b6040516103609190611bff565b60405180910390f35b610383600480360381019061037e91906118b7565b610b4d565b6040516103909190611be4565b60405180910390f35b6103b360048036038101906103ae91906118b7565b610c38565b6040516103c09190611be4565b60405180910390f35b6103e360048036038101906103de9190611824565b610c56565b6040516103f09190611e21565b60405180910390f35b610413600480360381019061040e91906117f7565b610cdd565b005b60606003805461042490611f85565b80601f016020809104026020016040519081016040528092919081815260200182805461045090611f85565b801561049d5780601f106104725761010080835404028352916020019161049d565b820191906000526020600020905b81548152906001019060200180831161048057829003601f168201915b5050505050905090565b60006104bb6104b4610dd5565b8484610ddd565b6001905092915050565b6000600254905090565b60006104dc848484610fa8565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610527610dd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059e90611d01565b60405180910390fd5b6105bb856105b3610dd5565b858403610ddd565b60019150509392505050565b60006012905090565b60006106726105dd610dd5565b8484600160006105eb610dd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461066d9190611e73565b610ddd565b6001905092915050565b610684610dd5565b73ffffffffffffffffffffffffffffffffffffffff166106a2610a91565b73ffffffffffffffffffffffffffffffffffffffff16146106f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ef90611d21565b60405180910390fd5b610700611229565b565b61070a610dd5565b73ffffffffffffffffffffffffffffffffffffffff16610728610a91565b73ffffffffffffffffffffffffffffffffffffffff161461077e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077590611d21565b60405180910390fd5b60011515600560159054906101000a900460ff161515146107d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cb90611d61565b60405180910390fd5b6107de82826112cb565b5050565b6107f36107ed610dd5565b8261142b565b50565b600560159054906101000a900460ff1681565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610870610dd5565b73ffffffffffffffffffffffffffffffffffffffff1661088e610a91565b73ffffffffffffffffffffffffffffffffffffffff16146108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db90611d21565b60405180910390fd5b6108ee6000611602565b565b6000610903836108fe610dd5565b610c56565b905081811015610948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093f90611d41565b60405180910390fd5b61095c83610954610dd5565b848403610ddd565b610966838361142b565b505050565b6000610975610dd5565b73ffffffffffffffffffffffffffffffffffffffff16610993610a91565b73ffffffffffffffffffffffffffffffffffffffff16146109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611d21565b60405180910390fd5b6000600560156101000a81548160ff0219169083151502179055506001905090565b610a13610dd5565b73ffffffffffffffffffffffffffffffffffffffff16610a31610a91565b73ffffffffffffffffffffffffffffffffffffffff1614610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90611d21565b60405180910390fd5b610a8f6116c8565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610aca90611f85565b80601f0160208091040260200160405190810160405280929190818152602001828054610af690611f85565b8015610b435780601f10610b1857610100808354040283529160200191610b43565b820191906000526020600020905b815481529060010190602001808311610b2657829003601f168201915b5050505050905090565b60008060016000610b5c610dd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090611de1565b60405180910390fd5b610c2d610c24610dd5565b85858403610ddd565b600191505092915050565b6000610c4c610c45610dd5565b8484610fa8565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ce5610dd5565b73ffffffffffffffffffffffffffffffffffffffff16610d03610a91565b73ffffffffffffffffffffffffffffffffffffffff1614610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090611d21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090611c81565b60405180910390fd5b610dd281611602565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490611dc1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490611ca1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9b9190611e21565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90611da1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90611c21565b60405180910390fd5b61109383838361176b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090611cc1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111ac9190611e73565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112109190611e21565b60405180910390a36112238484846117c3565b50505050565b611231610809565b611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126790611c41565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6112b4610dd5565b6040516112c19190611bc9565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290611e01565b60405180910390fd5b6113476000838361176b565b80600260008282546113599190611e73565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113ae9190611e73565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114139190611e21565b60405180910390a3611427600083836117c3565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290611d81565b60405180910390fd5b6114a78260008361176b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490611c61565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546115849190611ec9565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115e99190611e21565b60405180910390a36115fd836000846117c3565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6116d0610809565b15611710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170790611ce1565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611754610dd5565b6040516117619190611bc9565b60405180910390a1565b611773610809565b156117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90611ce1565b60405180910390fd5b6117be8383836117c8565b505050565b505050565b505050565b6000813590506117dc8161245d565b92915050565b6000813590506117f181612474565b92915050565b60006020828403121561180d5761180c612015565b5b600061181b848285016117cd565b91505092915050565b6000806040838503121561183b5761183a612015565b5b6000611849858286016117cd565b925050602061185a858286016117cd565b9150509250929050565b60008060006060848603121561187d5761187c612015565b5b600061188b868287016117cd565b935050602061189c868287016117cd565b92505060406118ad868287016117e2565b9150509250925092565b600080604083850312156118ce576118cd612015565b5b60006118dc858286016117cd565b92505060206118ed858286016117e2565b9150509250929050565b60006020828403121561190d5761190c612015565b5b600061191b848285016117e2565b91505092915050565b61192d81611efd565b82525050565b61193c81611f0f565b82525050565b600061194d82611e57565b6119578185611e62565b9350611967818560208601611f52565b6119708161201a565b840191505092915050565b6000611988602383611e62565b91506119938261202b565b604082019050919050565b60006119ab601483611e62565b91506119b68261207a565b602082019050919050565b60006119ce602283611e62565b91506119d9826120a3565b604082019050919050565b60006119f1602683611e62565b91506119fc826120f2565b604082019050919050565b6000611a14602283611e62565b9150611a1f82612141565b604082019050919050565b6000611a37602683611e62565b9150611a4282612190565b604082019050919050565b6000611a5a601083611e62565b9150611a65826121df565b602082019050919050565b6000611a7d602883611e62565b9150611a8882612208565b604082019050919050565b6000611aa0602083611e62565b9150611aab82612257565b602082019050919050565b6000611ac3602483611e62565b9150611ace82612280565b604082019050919050565b6000611ae6600d83611e62565b9150611af1826122cf565b602082019050919050565b6000611b09602183611e62565b9150611b14826122f8565b604082019050919050565b6000611b2c602583611e62565b9150611b3782612347565b604082019050919050565b6000611b4f602483611e62565b9150611b5a82612396565b604082019050919050565b6000611b72602583611e62565b9150611b7d826123e5565b604082019050919050565b6000611b95601f83611e62565b9150611ba082612434565b602082019050919050565b611bb481611f3b565b82525050565b611bc381611f45565b82525050565b6000602082019050611bde6000830184611924565b92915050565b6000602082019050611bf96000830184611933565b92915050565b60006020820190508181036000830152611c198184611942565b905092915050565b60006020820190508181036000830152611c3a8161197b565b9050919050565b60006020820190508181036000830152611c5a8161199e565b9050919050565b60006020820190508181036000830152611c7a816119c1565b9050919050565b60006020820190508181036000830152611c9a816119e4565b9050919050565b60006020820190508181036000830152611cba81611a07565b9050919050565b60006020820190508181036000830152611cda81611a2a565b9050919050565b60006020820190508181036000830152611cfa81611a4d565b9050919050565b60006020820190508181036000830152611d1a81611a70565b9050919050565b60006020820190508181036000830152611d3a81611a93565b9050919050565b60006020820190508181036000830152611d5a81611ab6565b9050919050565b60006020820190508181036000830152611d7a81611ad9565b9050919050565b60006020820190508181036000830152611d9a81611afc565b9050919050565b60006020820190508181036000830152611dba81611b1f565b9050919050565b60006020820190508181036000830152611dda81611b42565b9050919050565b60006020820190508181036000830152611dfa81611b65565b9050919050565b60006020820190508181036000830152611e1a81611b88565b9050919050565b6000602082019050611e366000830184611bab565b92915050565b6000602082019050611e516000830184611bba565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611e7e82611f3b565b9150611e8983611f3b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ebe57611ebd611fb7565b5b828201905092915050565b6000611ed482611f3b565b9150611edf83611f3b565b925082821015611ef257611ef1611fb7565b5b828203905092915050565b6000611f0882611f1b565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611f70578082015181840152602081019050611f55565b83811115611f7f576000848401525b50505050565b60006002820490506001821680611f9d57607f821691505b60208210811415611fb157611fb0611fe6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742066696e697368656400000000000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61246681611efd565b811461247157600080fd5b50565b61247d81611f3b565b811461248857600080fd5b5056fea2646970667358221220bd9f33eab1cf6b8c11ad0a3b4485bfdfab8f5b213f4b13ecab876571f3c76f3a64736f6c63430008070033

Deployed Bytecode Sourcemap

22930:851:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11536:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13703:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12656:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14354:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12498:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15255:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23178:69;;;:::i;:::-;;23259:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22065:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23059:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4588:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12827:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2639:103;;;:::i;:::-;;22475:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23431:122;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23101:65;;;:::i;:::-;;1988:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11755:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15973:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13167:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13405:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2897:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11536:100;11590:13;11623:5;11616:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11536:100;:::o;13703:169::-;13786:4;13803:39;13812:12;:10;:12::i;:::-;13826:7;13835:6;13803:8;:39::i;:::-;13860:4;13853:11;;13703:169;;;;:::o;12656:108::-;12717:7;12744:12;;12737:19;;12656:108;:::o;14354:492::-;14494:4;14511:36;14521:6;14529:9;14540:6;14511:9;:36::i;:::-;14560:24;14587:11;:19;14599:6;14587:19;;;;;;;;;;;;;;;:33;14607:12;:10;:12::i;:::-;14587:33;;;;;;;;;;;;;;;;14560:60;;14659:6;14639:16;:26;;14631:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;14746:57;14755:6;14763:12;:10;:12::i;:::-;14796:6;14777:16;:25;14746:8;:57::i;:::-;14834:4;14827:11;;;14354:492;;;;;:::o;12498:93::-;12556:5;12581:2;12574:9;;12498:93;:::o;15255:215::-;15343:4;15360:80;15369:12;:10;:12::i;:::-;15383:7;15429:10;15392:11;:25;15404:12;:10;:12::i;:::-;15392:25;;;;;;;;;;;;;;;:34;15418:7;15392:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;15360:8;:80::i;:::-;15458:4;15451:11;;15255:215;;;;:::o;23178:69::-;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23227:10:::1;:8;:10::i;:::-;23178:69::o:0;23259:160::-;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23353:4:::1;23339:18;;:10;;;;;;;;;;;:18;;;23331:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;23392:17;23398:2;23402:6;23392:5;:17::i;:::-;23259:160:::0;;:::o;22065:91::-;22121:27;22127:12;:10;:12::i;:::-;22141:6;22121:5;:27::i;:::-;22065:91;:::o;23059:29::-;;;;;;;;;;;;;:::o;4588:86::-;4635:4;4659:7;;;;;;;;;;;4652:14;;4588:86;:::o;12827:127::-;12901:7;12928:9;:18;12938:7;12928:18;;;;;;;;;;;;;;;;12921:25;;12827:127;;;:::o;2639:103::-;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2704:30:::1;2731:1;2704:18;:30::i;:::-;2639:103::o:0;22475:368::-;22552:24;22579:32;22589:7;22598:12;:10;:12::i;:::-;22579:9;:32::i;:::-;22552:59;;22650:6;22630:16;:26;;22622:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;22733:58;22742:7;22751:12;:10;:12::i;:::-;22784:6;22765:16;:25;22733:8;:58::i;:::-;22813:22;22819:7;22828:6;22813:5;:22::i;:::-;22541:302;22475:368;;:::o;23431:122::-;23478:4;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23510:5:::1;23497:10;;:18;;;;;;;;;;;;;;;;;;23539:4;23532:11;;23431:122:::0;:::o;23101:65::-;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23148:8:::1;:6;:8::i;:::-;23101:65::o:0;1988:87::-;2034:7;2061:6;;;;;;;;;;;2054:13;;1988:87;:::o;11755:104::-;11811:13;11844:7;11837:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11755:104;:::o;15973:413::-;16066:4;16083:24;16110:11;:25;16122:12;:10;:12::i;:::-;16110:25;;;;;;;;;;;;;;;:34;16136:7;16110:34;;;;;;;;;;;;;;;;16083:61;;16183:15;16163:16;:35;;16155:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16276:67;16285:12;:10;:12::i;:::-;16299:7;16327:15;16308:16;:34;16276:8;:67::i;:::-;16374:4;16367:11;;;15973:413;;;;:::o;13167:175::-;13253:4;13270:42;13280:12;:10;:12::i;:::-;13294:9;13305:6;13270:9;:42::i;:::-;13330:4;13323:11;;13167:175;;;;:::o;13405:151::-;13494:7;13521:11;:18;13533:5;13521:18;;;;;;;;;;;;;;;:27;13540:7;13521:27;;;;;;;;;;;;;;;;13514:34;;13405:151;;;;:::o;2897:201::-;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3006:1:::1;2986:22;;:8;:22;;;;2978:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3062:28;3081:8;3062:18;:28::i;:::-;2897:201:::0;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;19657:380::-;19810:1;19793:19;;:5;:19;;;;19785:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19891:1;19872:21;;:7;:21;;;;19864:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19975:6;19945:11;:18;19957:5;19945:18;;;;;;;;;;;;;;;:27;19964:7;19945:27;;;;;;;;;;;;;;;:36;;;;20013:7;19997:32;;20006:5;19997:32;;;20022:6;19997:32;;;;;;:::i;:::-;;;;;;;;19657:380;;;:::o;16876:733::-;17034:1;17016:20;;:6;:20;;;;17008:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;17118:1;17097:23;;:9;:23;;;;17089:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17173:47;17194:6;17202:9;17213:6;17173:20;:47::i;:::-;17233:21;17257:9;:17;17267:6;17257:17;;;;;;;;;;;;;;;;17233:41;;17310:6;17293:13;:23;;17285:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;17431:6;17415:13;:22;17395:9;:17;17405:6;17395:17;;;;;;;;;;;;;;;:42;;;;17483:6;17459:9;:20;17469:9;17459:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17524:9;17507:35;;17516:6;17507:35;;;17535:6;17507:35;;;;;;:::i;:::-;;;;;;;;17555:46;17575:6;17583:9;17594:6;17555:19;:46::i;:::-;16997:612;16876:733;;;:::o;5647:120::-;5191:8;:6;:8::i;:::-;5183:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;5716:5:::1;5706:7;;:15;;;;;;;;;;;;;;;;;;5737:22;5746:12;:10;:12::i;:::-;5737:22;;;;;;:::i;:::-;;;;;;;;5647:120::o:0;17896:399::-;17999:1;17980:21;;:7;:21;;;;17972:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;18050:49;18079:1;18083:7;18092:6;18050:20;:49::i;:::-;18128:6;18112:12;;:22;;;;;;;:::i;:::-;;;;;;;;18167:6;18145:9;:18;18155:7;18145:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;18210:7;18189:37;;18206:1;18189:37;;;18219:6;18189:37;;;;;;:::i;:::-;;;;;;;;18239:48;18267:1;18271:7;18280:6;18239:19;:48::i;:::-;17896:399;;:::o;18628:591::-;18731:1;18712:21;;:7;:21;;;;18704:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18784:49;18805:7;18822:1;18826:6;18784:20;:49::i;:::-;18846:22;18871:9;:18;18881:7;18871:18;;;;;;;;;;;;;;;;18846:43;;18926:6;18908:14;:24;;18900:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19045:6;19028:14;:23;19007:9;:18;19017:7;19007:18;;;;;;;;;;;;;;;:44;;;;19089:6;19073:12;;:22;;;;;;;:::i;:::-;;;;;;;;19139:1;19113:37;;19122:7;19113:37;;;19143:6;19113:37;;;;;;:::i;:::-;;;;;;;;19163:48;19183:7;19200:1;19204:6;19163:19;:48::i;:::-;18693:526;18628:591;;:::o;3258:191::-;3332:16;3351:6;;;;;;;;;;;3332:25;;3377:8;3368:6;;:17;;;;;;;;;;;;;;;;;;3432:8;3401:40;;3422:8;3401:40;;;;;;;;;;;;3321:128;3258:191;:::o;5388:118::-;4914:8;:6;:8::i;:::-;4913:9;4905:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;5458:4:::1;5448:7;;:14;;;;;;;;;;;;;;;;;;5478:20;5485:12;:10;:12::i;:::-;5478:20;;;;;;:::i;:::-;;;;;;;;5388:118::o:0;23565:211::-;4914:8;:6;:8::i;:::-;4913:9;4905:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;23722:44:::1;23749:4;23755:2;23759:6;23722:26;:44::i;:::-;23565:211:::0;;;:::o;21366:124::-;;;;:::o;20637: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:225::-;21334:34;21330:1;21322:6;21318:14;21311:58;21403:8;21398:2;21390:6;21386:15;21379:33;21194:225;:::o;21425:166::-;21565:18;21561:1;21553:6;21549:14;21542:42;21425:166;:::o;21597:227::-;21737:34;21733:1;21725:6;21721:14;21714:58;21806:10;21801:2;21793:6;21789:15;21782:35;21597:227;:::o;21830:182::-;21970:34;21966:1;21958:6;21954:14;21947:58;21830:182;:::o;22018:223::-;22158:34;22154:1;22146:6;22142:14;22135:58;22227:6;22222:2;22214:6;22210:15;22203:31;22018:223;:::o;22247:163::-;22387:15;22383:1;22375:6;22371:14;22364:39;22247:163;:::o;22416:220::-;22556:34;22552:1;22544:6;22540:14;22533:58;22625:3;22620:2;22612:6;22608:15;22601:28;22416:220;:::o;22642:224::-;22782:34;22778:1;22770:6;22766:14;22759:58;22851:7;22846:2;22838:6;22834:15;22827:32;22642:224;:::o;22872:223::-;23012:34;23008:1;23000:6;22996:14;22989:58;23081:6;23076:2;23068:6;23064:15;23057:31;22872:223;:::o;23101:224::-;23241:34;23237:1;23229:6;23225:14;23218:58;23310:7;23305:2;23297:6;23293:15;23286:32;23101:224;:::o;23331:181::-;23471:33;23467:1;23459:6;23455:14;23448:57;23331:181;:::o;23518:122::-;23591:24;23609:5;23591:24;:::i;:::-;23584:5;23581:35;23571:63;;23630:1;23627;23620:12;23571:63;23518:122;:::o;23646:::-;23719:24;23737:5;23719:24;:::i;:::-;23712:5;23709:35;23699:63;;23758:1;23755;23748:12;23699:63;23646:122;:::o

Swarm Source

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