ETH Price: $3,506.87 (-0.07%)
Gas: 2 Gwei

Token

P2PCash (MOOLA)
 

Overview

Max Total Supply

100,029,316 MOOLA

Holders

162

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
metastanny.eth
Balance
14,285.7143 MOOLA

Value
$0.00
0x447742df06d1b2167599bc03ac9d7062bc9ba3d9
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:
MOOLAToken

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.16;

/**
 * @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.16;


/**
 * @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.16;


/**
 * @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 (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.16;

/**
 * @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 `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);

    /**
     * @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.16;


/**
 * @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.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.16;




/**
 * @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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, 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:
     *
     * - `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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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.16;



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


pragma solidity ^0.8.16;





contract MOOLAToken is ERC20, ERC20Burnable, Pausable, Ownable {
             // MAPPINGS//
    mapping (address=>uint256) public amountToClaim;
    mapping (address=> uint256) public totalClaimed;
             //VARIABLE//
    address public admin; 

    /**
     * @dev Throws if called by any account other than the Admin.
     */
     modifier onlyAdmin() {
        require(msg.sender == admin, "MOOLA: caller is not the admin");
        _;
    }


    constructor() ERC20("P2PCash", "MOOLA") {
        _mint(msg.sender, 100000000000000000000000000); // 100 Million initial Supply
        admin = address(0xcf4F78dc6382d422B99579F446f5bB099C84A635); // replace 0x123 with admin address
    }

    function pause() public onlyOwner {
        _pause();
    }

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

    function setNewAdmin (address newAdmin) external onlyOwner {
        require (newAdmin != address(0), "MOOLA: new admin can't be a zero address");
        admin = newAdmin;
    }

    /**
      * @dev  Admin can set Users and there Claimable Rewards
      */

    function setUsersAndAmounts (address [] calldata userAddress, uint256 [] calldata amount) external onlyAdmin {
        for (uint256 i= 0; i < userAddress.length; i++){
            uint256 unClaimedAmount = amountToClaim[userAddress[i]];
            amountToClaim[userAddress[i]] = unClaimedAmount + amount[i]; 
        }
    }
    
    /**
      *@dev user can claim there pending amounts
      */

    function claim () external {
        uint256 amount = amountToClaim[msg.sender];
        require (amount > 0, "MOOLA: you have already claimed or zero pending tokens"); 
         amountToClaim[msg.sender]= 0;
        _transfer(address(this), msg.sender, amount);
         totalClaimed[msg.sender] += amount ;
    }

    /**
      *@dev Admin can mint the tokens to any address
      */

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

   /**
     *@dev Owner can claim the other erc20 tokens and ETH from the contract.
     *     Moolah token can be claimed by users only as per amount assigned by the Admin.
     */

   function claimStuckTokens(address _token) external onlyOwner {
        require(_token != address(this), "No rug pulls :)");

        if (_token == address(0x0)) {
            payable(owner()).transfer(address(this).balance);
            return;
        }

        IERC20 erc20token = IERC20(_token);
        uint256 balance = erc20token.balanceOf(address(this));
        erc20token.transfer(owner(), balance);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"","type":"address"}],"name":"amountToClaim","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":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","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":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"setNewAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"userAddress","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"setUsersAndAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600781526020017f50325043617368000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d4f4f4c4100000000000000000000000000000000000000000000000000000081525081600390816200008f9190620006a8565b508060049081620000a19190620006a8565b5050506000600560006101000a81548160ff021916908315150217905550620000df620000d36200015760201b60201c565b6200015f60201b60201c565b620000fc336a52b7d2dcc80cd2e40000006200022560201b60201c565b73cf4f78dc6382d422b99579f446f5bb099c84a635600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200091c565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000297576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028e90620007f0565b60405180910390fd5b620002ab600083836200039d60201b60201c565b8060026000828254620002bf919062000841565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000316919062000841565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200037d91906200088d565b60405180910390a362000399600083836200040d60201b60201c565b5050565b620003ad6200041260201b60201c565b15620003f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e790620008fa565b60405180910390fd5b620004088383836200042960201b620013b11760201c565b505050565b505050565b6000600560009054906101000a900460ff16905090565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004b057607f821691505b602082108103620004c657620004c562000468565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004f1565b6200053c8683620004f1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000589620005836200057d8462000554565b6200055e565b62000554565b9050919050565b6000819050919050565b620005a58362000568565b620005bd620005b48262000590565b848454620004fe565b825550505050565b600090565b620005d4620005c5565b620005e18184846200059a565b505050565b5b818110156200060957620005fd600082620005ca565b600181019050620005e7565b5050565b601f82111562000658576200062281620004cc565b6200062d84620004e1565b810160208510156200063d578190505b620006556200064c85620004e1565b830182620005e6565b50505b505050565b600082821c905092915050565b60006200067d600019846008026200065d565b1980831691505092915050565b60006200069883836200066a565b9150826002028217905092915050565b620006b3826200042e565b67ffffffffffffffff811115620006cf57620006ce62000439565b5b620006db825462000497565b620006e88282856200060d565b600060209050601f8311600181146200072057600084156200070b578287015190505b6200071785826200068a565b86555062000787565b601f1984166200073086620004cc565b60005b828110156200075a5784890151825560018201915060208501945060208101905062000733565b868310156200077a578489015162000776601f8916826200066a565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007d8601f836200078f565b9150620007e582620007a0565b602082019050919050565b600060208201905081810360008301526200080b81620007c9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200084e8262000554565b91506200085b8362000554565b925082820190508082111562000876576200087562000812565b5b92915050565b620008878162000554565b82525050565b6000602082019050620008a460008301846200087c565b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000620008e26010836200078f565b9150620008ef82620008aa565b602082019050919050565b600060208201905081810360008301526200091581620008d3565b9050919050565b612e4b806200092c6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806379cc6790116100f9578063a9059cbb11610097578063ef5d9ae811610071578063ef5d9ae814610496578063f2fde38b146104c6578063f851a440146104e2578063f9d0831a14610500576101a9565b8063a9059cbb1461041a578063db3cea651461044a578063dd62ed3e14610466576101a9565b80638da5cb5b116100d35780638da5cb5b146103925780638eec99c8146103b057806395d89b41146103cc578063a457c2d7146103ea576101a9565b806379cc67901461033c5780638456cb591461035857806387e30f9514610362576101a9565b80633f4ba83a116101665780634e71d92d116101405780634e71d92d146102da5780635c975abb146102e457806370a0823114610302578063715018a614610332576101a9565b80633f4ba83a1461029857806340c10f19146102a257806342966c68146102be576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc57806323b872dd1461021a578063313ce5671461024a5780633950935114610268575b600080fd5b6101b661051c565b6040516101c39190611ebf565b60405180910390f35b6101e660048036038101906101e19190611f7f565b6105ae565b6040516101f39190611fda565b60405180910390f35b6102046105d1565b6040516102119190612004565b60405180910390f35b610234600480360381019061022f919061201f565b6105db565b6040516102419190611fda565b60405180910390f35b61025261060a565b60405161025f919061208e565b60405180910390f35b610282600480360381019061027d9190611f7f565b610613565b60405161028f9190611fda565b60405180910390f35b6102a06106bd565b005b6102bc60048036038101906102b79190611f7f565b610743565b005b6102d860048036038101906102d391906120a9565b6107e1565b005b6102e26107f5565b005b6102ec610925565b6040516102f99190611fda565b60405180910390f35b61031c600480360381019061031791906120d6565b61093c565b6040516103299190612004565b60405180910390f35b61033a610984565b005b61035660048036038101906103519190611f7f565b610a0c565b005b610360610a2c565b005b61037c600480360381019061037791906120d6565b610ab2565b6040516103899190612004565b60405180910390f35b61039a610aca565b6040516103a79190612112565b60405180910390f35b6103ca60048036038101906103c591906120d6565b610af4565b005b6103d4610c23565b6040516103e19190611ebf565b60405180910390f35b61040460048036038101906103ff9190611f7f565b610cb5565b6040516104119190611fda565b60405180910390f35b610434600480360381019061042f9190611f7f565b610d9f565b6040516104419190611fda565b60405180910390f35b610464600480360381019061045f91906121e8565b610dc2565b005b610480600480360381019061047b9190612269565b610f75565b60405161048d9190612004565b60405180910390f35b6104b060048036038101906104ab91906120d6565b610ffc565b6040516104bd9190612004565b60405180910390f35b6104e060048036038101906104db91906120d6565b611014565b005b6104ea61110b565b6040516104f79190612112565b60405180910390f35b61051a600480360381019061051591906120d6565b611131565b005b60606003805461052b906122d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610557906122d8565b80156105a45780601f10610579576101008083540402835291602001916105a4565b820191906000526020600020905b81548152906001019060200180831161058757829003601f168201915b5050505050905090565b6000806105b96113b6565b90506105c68185856113be565b600191505092915050565b6000600254905090565b6000806105e66113b6565b90506105f3858285611587565b6105fe858585611613565b60019150509392505050565b60006012905090565b60008061061e6113b6565b90506106b2818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106ad9190612338565b6113be565b600191505092915050565b6106c56113b6565b73ffffffffffffffffffffffffffffffffffffffff166106e3610aca565b73ffffffffffffffffffffffffffffffffffffffff1614610739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610730906123b8565b60405180910390fd5b610741611892565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ca90612424565b60405180910390fd5b6107dd8282611934565b5050565b6107f26107ec6113b6565b82611a93565b50565b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811161087c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610873906124b6565b60405180910390fd5b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506108cc303383611613565b80600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461091b9190612338565b9250508190555050565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61098c6113b6565b73ffffffffffffffffffffffffffffffffffffffff166109aa610aca565b73ffffffffffffffffffffffffffffffffffffffff1614610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f7906123b8565b60405180910390fd5b610a0a6000611c69565b565b610a1e82610a186113b6565b83611587565b610a288282611a93565b5050565b610a346113b6565b73ffffffffffffffffffffffffffffffffffffffff16610a52610aca565b73ffffffffffffffffffffffffffffffffffffffff1614610aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9f906123b8565b60405180910390fd5b610ab0611d2f565b565b60066020528060005260406000206000915090505481565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610afc6113b6565b73ffffffffffffffffffffffffffffffffffffffff16610b1a610aca565b73ffffffffffffffffffffffffffffffffffffffff1614610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b67906123b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690612548565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060048054610c32906122d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5e906122d8565b8015610cab5780601f10610c8057610100808354040283529160200191610cab565b820191906000526020600020905b815481529060010190602001808311610c8e57829003601f168201915b5050505050905090565b600080610cc06113b6565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d906125da565b60405180910390fd5b610d9382868684036113be565b60019250505092915050565b600080610daa6113b6565b9050610db7818585611613565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4990612424565b60405180910390fd5b60005b84849050811015610f6e57600060066000878785818110610e7957610e786125fa565b5b9050602002016020810190610e8e91906120d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838383818110610ede57610edd6125fa565b5b9050602002013581610ef09190612338565b60066000888886818110610f0757610f066125fa565b5b9050602002016020810190610f1c91906120d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550508080610f6690612629565b915050610e55565b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60076020528060005260406000206000915090505481565b61101c6113b6565b73ffffffffffffffffffffffffffffffffffffffff1661103a610aca565b73ffffffffffffffffffffffffffffffffffffffff1614611090576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611087906123b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f6906126e3565b60405180910390fd5b61110881611c69565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111396113b6565b73ffffffffffffffffffffffffffffffffffffffff16611157610aca565b73ffffffffffffffffffffffffffffffffffffffff16146111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a4906123b8565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361121b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112129061274f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112a257611257610aca565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561129c573d6000803e3d6000fd5b506113ae565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112e29190612112565b602060405180830381865afa1580156112ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113239190612784565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611349610aca565b836040518363ffffffff1660e01b81526004016113679291906127b1565b6020604051808303816000875af1158015611386573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113aa9190612806565b5050505b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361142d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611424906128a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390612937565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161157a9190612004565b60405180910390a3505050565b60006115938484610f75565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461160d57818110156115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f6906129a3565b60405180910390fd5b61160c84848484036113be565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990612a35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e890612ac7565b60405180910390fd5b6116fc838383611dd2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990612b59565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118159190612338565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118799190612004565b60405180910390a361188c848484611e2a565b50505050565b61189a610925565b6118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090612bc5565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61191d6113b6565b60405161192a9190612112565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199a90612c31565b60405180910390fd5b6119af60008383611dd2565b80600260008282546119c19190612338565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a169190612338565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a7b9190612004565b60405180910390a3611a8f60008383611e2a565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af990612cc3565b60405180910390fd5b611b0e82600083611dd2565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b90612d55565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611beb9190612d75565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c509190612004565b60405180910390a3611c6483600084611e2a565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d37610925565b15611d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6e90612df5565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611dbb6113b6565b604051611dc89190612112565b60405180910390a1565b611dda610925565b15611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1190612df5565b60405180910390fd5b611e258383836113b1565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e69578082015181840152602081019050611e4e565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e9182611e2f565b611e9b8185611e3a565b9350611eab818560208601611e4b565b611eb481611e75565b840191505092915050565b60006020820190508181036000830152611ed98184611e86565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f1682611eeb565b9050919050565b611f2681611f0b565b8114611f3157600080fd5b50565b600081359050611f4381611f1d565b92915050565b6000819050919050565b611f5c81611f49565b8114611f6757600080fd5b50565b600081359050611f7981611f53565b92915050565b60008060408385031215611f9657611f95611ee1565b5b6000611fa485828601611f34565b9250506020611fb585828601611f6a565b9150509250929050565b60008115159050919050565b611fd481611fbf565b82525050565b6000602082019050611fef6000830184611fcb565b92915050565b611ffe81611f49565b82525050565b60006020820190506120196000830184611ff5565b92915050565b60008060006060848603121561203857612037611ee1565b5b600061204686828701611f34565b935050602061205786828701611f34565b925050604061206886828701611f6a565b9150509250925092565b600060ff82169050919050565b61208881612072565b82525050565b60006020820190506120a3600083018461207f565b92915050565b6000602082840312156120bf576120be611ee1565b5b60006120cd84828501611f6a565b91505092915050565b6000602082840312156120ec576120eb611ee1565b5b60006120fa84828501611f34565b91505092915050565b61210c81611f0b565b82525050565b60006020820190506121276000830184612103565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126121525761215161212d565b5b8235905067ffffffffffffffff81111561216f5761216e612132565b5b60208301915083602082028301111561218b5761218a612137565b5b9250929050565b60008083601f8401126121a8576121a761212d565b5b8235905067ffffffffffffffff8111156121c5576121c4612132565b5b6020830191508360208202830111156121e1576121e0612137565b5b9250929050565b6000806000806040858703121561220257612201611ee1565b5b600085013567ffffffffffffffff8111156122205761221f611ee6565b5b61222c8782880161213c565b9450945050602085013567ffffffffffffffff81111561224f5761224e611ee6565b5b61225b87828801612192565b925092505092959194509250565b600080604083850312156122805761227f611ee1565b5b600061228e85828601611f34565b925050602061229f85828601611f34565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806122f057607f821691505b602082108103612303576123026122a9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061234382611f49565b915061234e83611f49565b925082820190508082111561236657612365612309565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006123a2602083611e3a565b91506123ad8261236c565b602082019050919050565b600060208201905081810360008301526123d181612395565b9050919050565b7f4d4f4f4c413a2063616c6c6572206973206e6f74207468652061646d696e0000600082015250565b600061240e601e83611e3a565b9150612419826123d8565b602082019050919050565b6000602082019050818103600083015261243d81612401565b9050919050565b7f4d4f4f4c413a20796f75206861766520616c726561647920636c61696d65642060008201527f6f72207a65726f2070656e64696e6720746f6b656e7300000000000000000000602082015250565b60006124a0603683611e3a565b91506124ab82612444565b604082019050919050565b600060208201905081810360008301526124cf81612493565b9050919050565b7f4d4f4f4c413a206e65772061646d696e2063616e27742062652061207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b6000612532602883611e3a565b915061253d826124d6565b604082019050919050565b6000602082019050818103600083015261256181612525565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006125c4602583611e3a565b91506125cf82612568565b604082019050919050565b600060208201905081810360008301526125f3816125b7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061263482611f49565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361266657612665612309565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006126cd602683611e3a565b91506126d882612671565b604082019050919050565b600060208201905081810360008301526126fc816126c0565b9050919050565b7f4e6f207275672070756c6c73203a290000000000000000000000000000000000600082015250565b6000612739600f83611e3a565b915061274482612703565b602082019050919050565b600060208201905081810360008301526127688161272c565b9050919050565b60008151905061277e81611f53565b92915050565b60006020828403121561279a57612799611ee1565b5b60006127a88482850161276f565b91505092915050565b60006040820190506127c66000830185612103565b6127d36020830184611ff5565b9392505050565b6127e381611fbf565b81146127ee57600080fd5b50565b600081519050612800816127da565b92915050565b60006020828403121561281c5761281b611ee1565b5b600061282a848285016127f1565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061288f602483611e3a565b915061289a82612833565b604082019050919050565b600060208201905081810360008301526128be81612882565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612921602283611e3a565b915061292c826128c5565b604082019050919050565b6000602082019050818103600083015261295081612914565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061298d601d83611e3a565b915061299882612957565b602082019050919050565b600060208201905081810360008301526129bc81612980565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a1f602583611e3a565b9150612a2a826129c3565b604082019050919050565b60006020820190508181036000830152612a4e81612a12565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ab1602383611e3a565b9150612abc82612a55565b604082019050919050565b60006020820190508181036000830152612ae081612aa4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b43602683611e3a565b9150612b4e82612ae7565b604082019050919050565b60006020820190508181036000830152612b7281612b36565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612baf601483611e3a565b9150612bba82612b79565b602082019050919050565b60006020820190508181036000830152612bde81612ba2565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612c1b601f83611e3a565b9150612c2682612be5565b602082019050919050565b60006020820190508181036000830152612c4a81612c0e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cad602183611e3a565b9150612cb882612c51565b604082019050919050565b60006020820190508181036000830152612cdc81612ca0565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d3f602283611e3a565b9150612d4a82612ce3565b604082019050919050565b60006020820190508181036000830152612d6e81612d32565b9050919050565b6000612d8082611f49565b9150612d8b83611f49565b9250828203905081811115612da357612da2612309565b5b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612ddf601083611e3a565b9150612dea82612da9565b602082019050919050565b60006020820190508181036000830152612e0e81612dd2565b905091905056fea2646970667358221220274bd0813fa672846bb25083e9226692aa218fcc348343cdba76cc3604bcd4e164736f6c63430008100033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806379cc6790116100f9578063a9059cbb11610097578063ef5d9ae811610071578063ef5d9ae814610496578063f2fde38b146104c6578063f851a440146104e2578063f9d0831a14610500576101a9565b8063a9059cbb1461041a578063db3cea651461044a578063dd62ed3e14610466576101a9565b80638da5cb5b116100d35780638da5cb5b146103925780638eec99c8146103b057806395d89b41146103cc578063a457c2d7146103ea576101a9565b806379cc67901461033c5780638456cb591461035857806387e30f9514610362576101a9565b80633f4ba83a116101665780634e71d92d116101405780634e71d92d146102da5780635c975abb146102e457806370a0823114610302578063715018a614610332576101a9565b80633f4ba83a1461029857806340c10f19146102a257806342966c68146102be576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc57806323b872dd1461021a578063313ce5671461024a5780633950935114610268575b600080fd5b6101b661051c565b6040516101c39190611ebf565b60405180910390f35b6101e660048036038101906101e19190611f7f565b6105ae565b6040516101f39190611fda565b60405180910390f35b6102046105d1565b6040516102119190612004565b60405180910390f35b610234600480360381019061022f919061201f565b6105db565b6040516102419190611fda565b60405180910390f35b61025261060a565b60405161025f919061208e565b60405180910390f35b610282600480360381019061027d9190611f7f565b610613565b60405161028f9190611fda565b60405180910390f35b6102a06106bd565b005b6102bc60048036038101906102b79190611f7f565b610743565b005b6102d860048036038101906102d391906120a9565b6107e1565b005b6102e26107f5565b005b6102ec610925565b6040516102f99190611fda565b60405180910390f35b61031c600480360381019061031791906120d6565b61093c565b6040516103299190612004565b60405180910390f35b61033a610984565b005b61035660048036038101906103519190611f7f565b610a0c565b005b610360610a2c565b005b61037c600480360381019061037791906120d6565b610ab2565b6040516103899190612004565b60405180910390f35b61039a610aca565b6040516103a79190612112565b60405180910390f35b6103ca60048036038101906103c591906120d6565b610af4565b005b6103d4610c23565b6040516103e19190611ebf565b60405180910390f35b61040460048036038101906103ff9190611f7f565b610cb5565b6040516104119190611fda565b60405180910390f35b610434600480360381019061042f9190611f7f565b610d9f565b6040516104419190611fda565b60405180910390f35b610464600480360381019061045f91906121e8565b610dc2565b005b610480600480360381019061047b9190612269565b610f75565b60405161048d9190612004565b60405180910390f35b6104b060048036038101906104ab91906120d6565b610ffc565b6040516104bd9190612004565b60405180910390f35b6104e060048036038101906104db91906120d6565b611014565b005b6104ea61110b565b6040516104f79190612112565b60405180910390f35b61051a600480360381019061051591906120d6565b611131565b005b60606003805461052b906122d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610557906122d8565b80156105a45780601f10610579576101008083540402835291602001916105a4565b820191906000526020600020905b81548152906001019060200180831161058757829003601f168201915b5050505050905090565b6000806105b96113b6565b90506105c68185856113be565b600191505092915050565b6000600254905090565b6000806105e66113b6565b90506105f3858285611587565b6105fe858585611613565b60019150509392505050565b60006012905090565b60008061061e6113b6565b90506106b2818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106ad9190612338565b6113be565b600191505092915050565b6106c56113b6565b73ffffffffffffffffffffffffffffffffffffffff166106e3610aca565b73ffffffffffffffffffffffffffffffffffffffff1614610739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610730906123b8565b60405180910390fd5b610741611892565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ca90612424565b60405180910390fd5b6107dd8282611934565b5050565b6107f26107ec6113b6565b82611a93565b50565b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811161087c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610873906124b6565b60405180910390fd5b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506108cc303383611613565b80600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461091b9190612338565b9250508190555050565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61098c6113b6565b73ffffffffffffffffffffffffffffffffffffffff166109aa610aca565b73ffffffffffffffffffffffffffffffffffffffff1614610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f7906123b8565b60405180910390fd5b610a0a6000611c69565b565b610a1e82610a186113b6565b83611587565b610a288282611a93565b5050565b610a346113b6565b73ffffffffffffffffffffffffffffffffffffffff16610a52610aca565b73ffffffffffffffffffffffffffffffffffffffff1614610aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9f906123b8565b60405180910390fd5b610ab0611d2f565b565b60066020528060005260406000206000915090505481565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610afc6113b6565b73ffffffffffffffffffffffffffffffffffffffff16610b1a610aca565b73ffffffffffffffffffffffffffffffffffffffff1614610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b67906123b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690612548565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060048054610c32906122d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5e906122d8565b8015610cab5780601f10610c8057610100808354040283529160200191610cab565b820191906000526020600020905b815481529060010190602001808311610c8e57829003601f168201915b5050505050905090565b600080610cc06113b6565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d906125da565b60405180910390fd5b610d9382868684036113be565b60019250505092915050565b600080610daa6113b6565b9050610db7818585611613565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4990612424565b60405180910390fd5b60005b84849050811015610f6e57600060066000878785818110610e7957610e786125fa565b5b9050602002016020810190610e8e91906120d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838383818110610ede57610edd6125fa565b5b9050602002013581610ef09190612338565b60066000888886818110610f0757610f066125fa565b5b9050602002016020810190610f1c91906120d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550508080610f6690612629565b915050610e55565b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60076020528060005260406000206000915090505481565b61101c6113b6565b73ffffffffffffffffffffffffffffffffffffffff1661103a610aca565b73ffffffffffffffffffffffffffffffffffffffff1614611090576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611087906123b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f6906126e3565b60405180910390fd5b61110881611c69565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111396113b6565b73ffffffffffffffffffffffffffffffffffffffff16611157610aca565b73ffffffffffffffffffffffffffffffffffffffff16146111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a4906123b8565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361121b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112129061274f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112a257611257610aca565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561129c573d6000803e3d6000fd5b506113ae565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112e29190612112565b602060405180830381865afa1580156112ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113239190612784565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611349610aca565b836040518363ffffffff1660e01b81526004016113679291906127b1565b6020604051808303816000875af1158015611386573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113aa9190612806565b5050505b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361142d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611424906128a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390612937565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161157a9190612004565b60405180910390a3505050565b60006115938484610f75565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461160d57818110156115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f6906129a3565b60405180910390fd5b61160c84848484036113be565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990612a35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e890612ac7565b60405180910390fd5b6116fc838383611dd2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990612b59565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118159190612338565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118799190612004565b60405180910390a361188c848484611e2a565b50505050565b61189a610925565b6118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090612bc5565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61191d6113b6565b60405161192a9190612112565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199a90612c31565b60405180910390fd5b6119af60008383611dd2565b80600260008282546119c19190612338565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a169190612338565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a7b9190612004565b60405180910390a3611a8f60008383611e2a565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af990612cc3565b60405180910390fd5b611b0e82600083611dd2565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b90612d55565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611beb9190612d75565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c509190612004565b60405180910390a3611c6483600084611e2a565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d37610925565b15611d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6e90612df5565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611dbb6113b6565b604051611dc89190612112565b60405180910390a1565b611dda610925565b15611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1190612df5565b60405180910390fd5b611e258383836113b1565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e69578082015181840152602081019050611e4e565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e9182611e2f565b611e9b8185611e3a565b9350611eab818560208601611e4b565b611eb481611e75565b840191505092915050565b60006020820190508181036000830152611ed98184611e86565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f1682611eeb565b9050919050565b611f2681611f0b565b8114611f3157600080fd5b50565b600081359050611f4381611f1d565b92915050565b6000819050919050565b611f5c81611f49565b8114611f6757600080fd5b50565b600081359050611f7981611f53565b92915050565b60008060408385031215611f9657611f95611ee1565b5b6000611fa485828601611f34565b9250506020611fb585828601611f6a565b9150509250929050565b60008115159050919050565b611fd481611fbf565b82525050565b6000602082019050611fef6000830184611fcb565b92915050565b611ffe81611f49565b82525050565b60006020820190506120196000830184611ff5565b92915050565b60008060006060848603121561203857612037611ee1565b5b600061204686828701611f34565b935050602061205786828701611f34565b925050604061206886828701611f6a565b9150509250925092565b600060ff82169050919050565b61208881612072565b82525050565b60006020820190506120a3600083018461207f565b92915050565b6000602082840312156120bf576120be611ee1565b5b60006120cd84828501611f6a565b91505092915050565b6000602082840312156120ec576120eb611ee1565b5b60006120fa84828501611f34565b91505092915050565b61210c81611f0b565b82525050565b60006020820190506121276000830184612103565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126121525761215161212d565b5b8235905067ffffffffffffffff81111561216f5761216e612132565b5b60208301915083602082028301111561218b5761218a612137565b5b9250929050565b60008083601f8401126121a8576121a761212d565b5b8235905067ffffffffffffffff8111156121c5576121c4612132565b5b6020830191508360208202830111156121e1576121e0612137565b5b9250929050565b6000806000806040858703121561220257612201611ee1565b5b600085013567ffffffffffffffff8111156122205761221f611ee6565b5b61222c8782880161213c565b9450945050602085013567ffffffffffffffff81111561224f5761224e611ee6565b5b61225b87828801612192565b925092505092959194509250565b600080604083850312156122805761227f611ee1565b5b600061228e85828601611f34565b925050602061229f85828601611f34565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806122f057607f821691505b602082108103612303576123026122a9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061234382611f49565b915061234e83611f49565b925082820190508082111561236657612365612309565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006123a2602083611e3a565b91506123ad8261236c565b602082019050919050565b600060208201905081810360008301526123d181612395565b9050919050565b7f4d4f4f4c413a2063616c6c6572206973206e6f74207468652061646d696e0000600082015250565b600061240e601e83611e3a565b9150612419826123d8565b602082019050919050565b6000602082019050818103600083015261243d81612401565b9050919050565b7f4d4f4f4c413a20796f75206861766520616c726561647920636c61696d65642060008201527f6f72207a65726f2070656e64696e6720746f6b656e7300000000000000000000602082015250565b60006124a0603683611e3a565b91506124ab82612444565b604082019050919050565b600060208201905081810360008301526124cf81612493565b9050919050565b7f4d4f4f4c413a206e65772061646d696e2063616e27742062652061207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b6000612532602883611e3a565b915061253d826124d6565b604082019050919050565b6000602082019050818103600083015261256181612525565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006125c4602583611e3a565b91506125cf82612568565b604082019050919050565b600060208201905081810360008301526125f3816125b7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061263482611f49565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361266657612665612309565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006126cd602683611e3a565b91506126d882612671565b604082019050919050565b600060208201905081810360008301526126fc816126c0565b9050919050565b7f4e6f207275672070756c6c73203a290000000000000000000000000000000000600082015250565b6000612739600f83611e3a565b915061274482612703565b602082019050919050565b600060208201905081810360008301526127688161272c565b9050919050565b60008151905061277e81611f53565b92915050565b60006020828403121561279a57612799611ee1565b5b60006127a88482850161276f565b91505092915050565b60006040820190506127c66000830185612103565b6127d36020830184611ff5565b9392505050565b6127e381611fbf565b81146127ee57600080fd5b50565b600081519050612800816127da565b92915050565b60006020828403121561281c5761281b611ee1565b5b600061282a848285016127f1565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061288f602483611e3a565b915061289a82612833565b604082019050919050565b600060208201905081810360008301526128be81612882565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612921602283611e3a565b915061292c826128c5565b604082019050919050565b6000602082019050818103600083015261295081612914565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061298d601d83611e3a565b915061299882612957565b602082019050919050565b600060208201905081810360008301526129bc81612980565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a1f602583611e3a565b9150612a2a826129c3565b604082019050919050565b60006020820190508181036000830152612a4e81612a12565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ab1602383611e3a565b9150612abc82612a55565b604082019050919050565b60006020820190508181036000830152612ae081612aa4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b43602683611e3a565b9150612b4e82612ae7565b604082019050919050565b60006020820190508181036000830152612b7281612b36565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612baf601483611e3a565b9150612bba82612b79565b602082019050919050565b60006020820190508181036000830152612bde81612ba2565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612c1b601f83611e3a565b9150612c2682612be5565b602082019050919050565b60006020820190508181036000830152612c4a81612c0e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cad602183611e3a565b9150612cb882612c51565b604082019050919050565b60006020820190508181036000830152612cdc81612ca0565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d3f602283611e3a565b9150612d4a82612ce3565b604082019050919050565b60006020820190508181036000830152612d6e81612d32565b9050919050565b6000612d8082611f49565b9150612d8b83611f49565b9250828203905081811115612da357612da2612309565b5b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612ddf601083611e3a565b9150612dea82612da9565b602082019050919050565b60006020820190508181036000830152612e0e81612dd2565b905091905056fea2646970667358221220274bd0813fa672846bb25083e9226692aa218fcc348343cdba76cc3604bcd4e164736f6c63430008100033

Deployed Bytecode Sourcemap

23559:2880:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11539:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13890:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12659:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14671:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12501:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15375:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24350:65;;;:::i;:::-;;25513:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22918:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25110:320;;;:::i;:::-;;4590:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12830:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2640:103;;;:::i;:::-;;23328:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24281:61;;;:::i;:::-;;23657:47;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1989:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24423:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11758:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16118:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13163:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24696:331;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13419:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23711:47;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2898:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23792:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25803:426;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11539:100;11593:13;11626:5;11619:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11539:100;:::o;13890:201::-;13973:4;13990:13;14006:12;:10;:12::i;:::-;13990:28;;14029:32;14038:5;14045:7;14054:6;14029:8;:32::i;:::-;14079:4;14072:11;;;13890:201;;;;:::o;12659:108::-;12720:7;12747:12;;12740:19;;12659:108;:::o;14671:295::-;14802:4;14819:15;14837:12;:10;:12::i;:::-;14819:30;;14860:38;14876:4;14882:7;14891:6;14860:15;:38::i;:::-;14909:27;14919:4;14925:2;14929:6;14909:9;:27::i;:::-;14954:4;14947:11;;;14671:295;;;;;:::o;12501:93::-;12559:5;12584:2;12577:9;;12501:93;:::o;15375:240::-;15463:4;15480:13;15496:12;:10;:12::i;:::-;15480:28;;15519:66;15528:5;15535:7;15574:10;15544:11;:18;15556:5;15544:18;;;;;;;;;;;;;;;:27;15563:7;15544:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;15519:8;:66::i;:::-;15603:4;15596:11;;;15375:240;;;;:::o;24350:65::-;2220:12;:10;:12::i;:::-;2209:23;;:7;:5;:7::i;:::-;:23;;;2201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24397:10:::1;:8;:10::i;:::-;24350:65::o:0;25513:95::-;23962:5;;;;;;;;;;;23948:19;;:10;:19;;;23940:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25583:17:::1;25589:2;25593:6;25583:5;:17::i;:::-;25513:95:::0;;:::o;22918:91::-;22974:27;22980:12;:10;:12::i;:::-;22994:6;22974:5;:27::i;:::-;22918:91;:::o;25110:320::-;25148:14;25165:13;:25;25179:10;25165:25;;;;;;;;;;;;;;;;25148:42;;25219:1;25210:6;:10;25201:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;25319:1;25292:13;:25;25306:10;25292:25;;;;;;;;;;;;;;;:28;;;;25331:44;25349:4;25356:10;25368:6;25331:9;:44::i;:::-;25415:6;25387:12;:24;25400:10;25387:24;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;25137:293;25110:320::o;4590:86::-;4637:4;4661:7;;;;;;;;;;;4654:14;;4590:86;:::o;12830:127::-;12904:7;12931:9;:18;12941:7;12931:18;;;;;;;;;;;;;;;;12924:25;;12830:127;;;:::o;2640:103::-;2220:12;:10;:12::i;:::-;2209:23;;:7;:5;:7::i;:::-;:23;;;2201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2705:30:::1;2732:1;2705:18;:30::i;:::-;2640:103::o:0;23328:164::-;23405:46;23421:7;23430:12;:10;:12::i;:::-;23444:6;23405:15;:46::i;:::-;23462:22;23468:7;23477:6;23462:5;:22::i;:::-;23328:164;;:::o;24281:61::-;2220:12;:10;:12::i;:::-;2209:23;;:7;:5;:7::i;:::-;:23;;;2201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24326:8:::1;:6;:8::i;:::-;24281:61::o:0;23657:47::-;;;;;;;;;;;;;;;;;:::o;1989:87::-;2035:7;2062:6;;;;;;;;;;;2055:13;;1989:87;:::o;24423:181::-;2220:12;:10;:12::i;:::-;2209:23;;:7;:5;:7::i;:::-;:23;;;2201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24522:1:::1;24502:22;;:8;:22;;::::0;24493:76:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;24588:8;24580:5;;:16;;;;;;;;;;;;;;;;;;24423:181:::0;:::o;11758:104::-;11814:13;11847:7;11840:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11758:104;:::o;16118:438::-;16211:4;16228:13;16244:12;:10;:12::i;:::-;16228:28;;16267:24;16294:11;:18;16306:5;16294:18;;;;;;;;;;;;;;;:27;16313:7;16294:27;;;;;;;;;;;;;;;;16267:54;;16360:15;16340:16;:35;;16332:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16453:60;16462:5;16469:7;16497:15;16478:16;:34;16453:8;:60::i;:::-;16544:4;16537:11;;;;16118:438;;;;:::o;13163:193::-;13242:4;13259:13;13275:12;:10;:12::i;:::-;13259:28;;13298;13308:5;13315:2;13319:6;13298:9;:28::i;:::-;13344:4;13337:11;;;13163:193;;;;:::o;24696:331::-;23962:5;;;;;;;;;;;23948:19;;:10;:19;;;23940:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;24821:9:::1;24816:204;24839:11;;:18;;24835:1;:22;24816:204;;;24878:23;24904:13;:29;24918:11;;24930:1;24918:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;24904:29;;;;;;;;;;;;;;;;24878:55;;24998:6;;25005:1;24998:9;;;;;;;:::i;:::-;;;;;;;;24980:15;:27;;;;:::i;:::-;24948:13;:29;24962:11;;24974:1;24962:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;24948:29;;;;;;;;;;;;;;;:59;;;;24863:157;24859:3;;;;;:::i;:::-;;;;24816:204;;;;24696:331:::0;;;;:::o;13419:151::-;13508:7;13535:11;:18;13547:5;13535:18;;;;;;;;;;;;;;;:27;13554:7;13535:27;;;;;;;;;;;;;;;;13528:34;;13419:151;;;;:::o;23711:47::-;;;;;;;;;;;;;;;;;:::o;2898:201::-;2220:12;:10;:12::i;:::-;2209:23;;:7;:5;:7::i;:::-;:23;;;2201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3007:1:::1;2987:22;;:8;:22;;::::0;2979:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3063:28;3082:8;3063:18;:28::i;:::-;2898:201:::0;:::o;23792:20::-;;;;;;;;;;;;;:::o;25803:426::-;2220:12;:10;:12::i;:::-;2209:23;;:7;:5;:7::i;:::-;:23;;;2201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25901:4:::1;25883:23;;:6;:23;;::::0;25875:51:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;25961:3;25943:22;;:6;:22;;::::0;25939:124:::1;;25990:7;:5;:7::i;:::-;25982:25;;:48;26008:21;25982:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;26045:7;;25939:124;26075:17;26102:6;26075:34;;26120:15;26138:10;:20;;;26167:4;26138:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26120:53;;26184:10;:19;;;26204:7;:5;:7::i;:::-;26213;26184:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25864:365;;2280:1;25803:426:::0;:::o;21474:125::-;;;;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;19754:380::-;19907:1;19890:19;;:5;:19;;;19882:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19988:1;19969:21;;:7;:21;;;19961:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20072:6;20042:11;:18;20054:5;20042:18;;;;;;;;;;;;;;;:27;20061:7;20042:27;;;;;;;;;;;;;;;:36;;;;20110:7;20094:32;;20103:5;20094:32;;;20119:6;20094:32;;;;;;:::i;:::-;;;;;;;;19754:380;;;:::o;20421:453::-;20556:24;20583:25;20593:5;20600:7;20583:9;:25::i;:::-;20556:52;;20643:17;20623:16;:37;20619:248;;20705:6;20685:16;:26;;20677:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20789:51;20798:5;20805:7;20833:6;20814:16;:25;20789:8;:51::i;:::-;20619:248;20545:329;20421:453;;;:::o;17035:671::-;17182:1;17166:18;;:4;:18;;;17158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17259:1;17245:16;;:2;:16;;;17237:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17314:38;17335:4;17341:2;17345:6;17314:20;:38::i;:::-;17365:19;17387:9;:15;17397:4;17387:15;;;;;;;;;;;;;;;;17365:37;;17436:6;17421:11;:21;;17413:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;17553:6;17539:11;:20;17521:9;:15;17531:4;17521:15;;;;;;;;;;;;;;;:38;;;;17598:6;17581:9;:13;17591:2;17581:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;17637:2;17622:26;;17631:4;17622:26;;;17641:6;17622:26;;;;;;:::i;:::-;;;;;;;;17661:37;17681:4;17687:2;17691:6;17661:19;:37::i;:::-;17147:559;17035:671;;;:::o;5649:120::-;5193:8;:6;:8::i;:::-;5185:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;5718:5:::1;5708:7;;:15;;;;;;;;;;;;;;;;;;5739:22;5748:12;:10;:12::i;:::-;5739:22;;;;;;:::i;:::-;;;;;;;;5649:120::o:0;17993:399::-;18096:1;18077:21;;:7;:21;;;18069:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;18147:49;18176:1;18180:7;18189:6;18147:20;:49::i;:::-;18225:6;18209:12;;:22;;;;;;;:::i;:::-;;;;;;;;18264:6;18242:9;:18;18252:7;18242:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;18307:7;18286:37;;18303:1;18286:37;;;18316:6;18286:37;;;;;;:::i;:::-;;;;;;;;18336:48;18364:1;18368:7;18377:6;18336:19;:48::i;:::-;17993:399;;:::o;18725:591::-;18828:1;18809:21;;:7;:21;;;18801:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18881:49;18902:7;18919:1;18923:6;18881:20;:49::i;:::-;18943:22;18968:9;:18;18978:7;18968:18;;;;;;;;;;;;;;;;18943:43;;19023:6;19005:14;:24;;18997:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19142:6;19125:14;:23;19104:9;:18;19114:7;19104:18;;;;;;;;;;;;;;;:44;;;;19186:6;19170:12;;:22;;;;;;;:::i;:::-;;;;;;;;19236:1;19210:37;;19219:7;19210:37;;;19240:6;19210:37;;;;;;:::i;:::-;;;;;;;;19260:48;19280:7;19297:1;19301:6;19260:19;:48::i;:::-;18790:526;18725:591;;:::o;3259:191::-;3333:16;3352:6;;;;;;;;;;;3333:25;;3378:8;3369:6;;:17;;;;;;;;;;;;;;;;;;3433:8;3402:40;;3423:8;3402:40;;;;;;;;;;;;3322:128;3259:191;:::o;5390:118::-;4916:8;:6;:8::i;:::-;4915:9;4907:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;5460:4:::1;5450:7;;:14;;;;;;;;;;;;;;;;;;5480:20;5487:12;:10;:12::i;:::-;5480:20;;;;;;:::i;:::-;;;;;;;;5390:118::o:0;26237:199::-;4916:8;:6;:8::i;:::-;4915:9;4907:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;26384:44:::1;26411:4;26417:2;26421:6;26384:26;:44::i;:::-;26237:199:::0;;;:::o;22203:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:117::-;5984:1;5981;5974:12;5998:117;6107:1;6104;6097:12;6121:117;6230:1;6227;6220:12;6261:568;6334:8;6344:6;6394:3;6387:4;6379:6;6375:17;6371:27;6361:122;;6402:79;;:::i;:::-;6361:122;6515:6;6502:20;6492:30;;6545:18;6537:6;6534:30;6531:117;;;6567:79;;:::i;:::-;6531:117;6681:4;6673:6;6669:17;6657:29;;6735:3;6727:4;6719:6;6715:17;6705:8;6701:32;6698:41;6695:128;;;6742:79;;:::i;:::-;6695:128;6261:568;;;;;:::o;6852:::-;6925:8;6935:6;6985:3;6978:4;6970:6;6966:17;6962:27;6952:122;;6993:79;;:::i;:::-;6952:122;7106:6;7093:20;7083:30;;7136:18;7128:6;7125:30;7122:117;;;7158:79;;:::i;:::-;7122:117;7272:4;7264:6;7260:17;7248:29;;7326:3;7318:4;7310:6;7306:17;7296:8;7292:32;7289:41;7286:128;;;7333:79;;:::i;:::-;7286:128;6852:568;;;;;:::o;7426:934::-;7548:6;7556;7564;7572;7621:2;7609:9;7600:7;7596:23;7592:32;7589:119;;;7627:79;;:::i;:::-;7589:119;7775:1;7764:9;7760:17;7747:31;7805:18;7797:6;7794:30;7791:117;;;7827:79;;:::i;:::-;7791:117;7940:80;8012:7;8003:6;7992:9;7988:22;7940:80;:::i;:::-;7922:98;;;;7718:312;8097:2;8086:9;8082:18;8069:32;8128:18;8120:6;8117:30;8114:117;;;8150:79;;:::i;:::-;8114:117;8263:80;8335:7;8326:6;8315:9;8311:22;8263:80;:::i;:::-;8245:98;;;;8040:313;7426:934;;;;;;;:::o;8366:474::-;8434:6;8442;8491:2;8479:9;8470:7;8466:23;8462:32;8459:119;;;8497:79;;:::i;:::-;8459:119;8617:1;8642:53;8687:7;8678:6;8667:9;8663:22;8642:53;:::i;:::-;8632:63;;8588:117;8744:2;8770:53;8815:7;8806:6;8795:9;8791:22;8770:53;:::i;:::-;8760:63;;8715:118;8366:474;;;;;:::o;8846:180::-;8894:77;8891:1;8884:88;8991:4;8988:1;8981:15;9015:4;9012:1;9005:15;9032:320;9076:6;9113:1;9107:4;9103:12;9093:22;;9160:1;9154:4;9150:12;9181:18;9171:81;;9237:4;9229:6;9225:17;9215:27;;9171:81;9299:2;9291:6;9288:14;9268:18;9265:38;9262:84;;9318:18;;:::i;:::-;9262:84;9083:269;9032:320;;;:::o;9358:180::-;9406:77;9403:1;9396:88;9503:4;9500:1;9493:15;9527:4;9524:1;9517:15;9544:191;9584:3;9603:20;9621:1;9603:20;:::i;:::-;9598:25;;9637:20;9655:1;9637:20;:::i;:::-;9632:25;;9680:1;9677;9673:9;9666:16;;9701:3;9698:1;9695:10;9692:36;;;9708:18;;:::i;:::-;9692:36;9544:191;;;;:::o;9741:182::-;9881:34;9877:1;9869:6;9865:14;9858:58;9741:182;:::o;9929:366::-;10071:3;10092:67;10156:2;10151:3;10092:67;:::i;:::-;10085:74;;10168:93;10257:3;10168:93;:::i;:::-;10286:2;10281:3;10277:12;10270:19;;9929:366;;;:::o;10301:419::-;10467:4;10505:2;10494:9;10490:18;10482:26;;10554:9;10548:4;10544:20;10540:1;10529:9;10525:17;10518:47;10582:131;10708:4;10582:131;:::i;:::-;10574:139;;10301:419;;;:::o;10726:180::-;10866:32;10862:1;10854:6;10850:14;10843:56;10726:180;:::o;10912:366::-;11054:3;11075:67;11139:2;11134:3;11075:67;:::i;:::-;11068:74;;11151:93;11240:3;11151:93;:::i;:::-;11269:2;11264:3;11260:12;11253:19;;10912:366;;;:::o;11284:419::-;11450:4;11488:2;11477:9;11473:18;11465:26;;11537:9;11531:4;11527:20;11523:1;11512:9;11508:17;11501:47;11565:131;11691:4;11565:131;:::i;:::-;11557:139;;11284:419;;;:::o;11709:241::-;11849:34;11845:1;11837:6;11833:14;11826:58;11918:24;11913:2;11905:6;11901:15;11894:49;11709:241;:::o;11956:366::-;12098:3;12119:67;12183:2;12178:3;12119:67;:::i;:::-;12112:74;;12195:93;12284:3;12195:93;:::i;:::-;12313:2;12308:3;12304:12;12297:19;;11956:366;;;:::o;12328:419::-;12494:4;12532:2;12521:9;12517:18;12509:26;;12581:9;12575:4;12571:20;12567:1;12556:9;12552:17;12545:47;12609:131;12735:4;12609:131;:::i;:::-;12601:139;;12328:419;;;:::o;12753:227::-;12893:34;12889:1;12881:6;12877:14;12870:58;12962:10;12957:2;12949:6;12945:15;12938:35;12753:227;:::o;12986:366::-;13128:3;13149:67;13213:2;13208:3;13149:67;:::i;:::-;13142:74;;13225:93;13314:3;13225:93;:::i;:::-;13343:2;13338:3;13334:12;13327:19;;12986:366;;;:::o;13358:419::-;13524:4;13562:2;13551:9;13547:18;13539:26;;13611:9;13605:4;13601:20;13597:1;13586:9;13582:17;13575:47;13639:131;13765:4;13639:131;:::i;:::-;13631:139;;13358:419;;;:::o;13783:224::-;13923:34;13919:1;13911:6;13907:14;13900:58;13992:7;13987:2;13979:6;13975:15;13968:32;13783:224;:::o;14013:366::-;14155:3;14176:67;14240:2;14235:3;14176:67;:::i;:::-;14169:74;;14252:93;14341:3;14252:93;:::i;:::-;14370:2;14365:3;14361:12;14354:19;;14013:366;;;:::o;14385:419::-;14551:4;14589:2;14578:9;14574:18;14566:26;;14638:9;14632:4;14628:20;14624:1;14613:9;14609:17;14602:47;14666:131;14792:4;14666:131;:::i;:::-;14658:139;;14385:419;;;:::o;14810:180::-;14858:77;14855:1;14848:88;14955:4;14952:1;14945:15;14979:4;14976:1;14969:15;14996:233;15035:3;15058:24;15076:5;15058:24;:::i;:::-;15049:33;;15104:66;15097:5;15094:77;15091:103;;15174:18;;:::i;:::-;15091:103;15221:1;15214:5;15210:13;15203:20;;14996:233;;;:::o;15235:225::-;15375:34;15371:1;15363:6;15359:14;15352:58;15444:8;15439:2;15431:6;15427:15;15420:33;15235:225;:::o;15466:366::-;15608:3;15629:67;15693:2;15688:3;15629:67;:::i;:::-;15622:74;;15705:93;15794:3;15705:93;:::i;:::-;15823:2;15818:3;15814:12;15807:19;;15466:366;;;:::o;15838:419::-;16004:4;16042:2;16031:9;16027:18;16019:26;;16091:9;16085:4;16081:20;16077:1;16066:9;16062:17;16055:47;16119:131;16245:4;16119:131;:::i;:::-;16111:139;;15838:419;;;:::o;16263:157::-;16399:17;16395:1;16387:6;16383:14;16376:41;16263:157;:::o;16422:350::-;16564:3;16581:67;16645:2;16640:3;16581:67;:::i;:::-;16574:74;;16653:93;16742:3;16653:93;:::i;:::-;16767:2;16762:3;16758:12;16751:19;;16422:350;;;:::o;16774:403::-;16940:4;16974:2;16963:9;16959:18;16951:26;;17019:9;17013:4;17009:20;17005:1;16994:9;16990:17;16983:47;17043:131;17169:4;17043:131;:::i;:::-;17035:139;;16774:403;;;:::o;17179:131::-;17236:5;17263:6;17257:13;17248:22;;17275:33;17302:5;17275:33;:::i;:::-;17179:131;;;;:::o;17312:327::-;17382:6;17427:2;17415:9;17406:7;17402:23;17398:32;17395:119;;;17433:79;;:::i;:::-;17395:119;17545:1;17566:64;17622:7;17613:6;17602:9;17598:22;17566:64;:::i;:::-;17556:74;;17520:116;17312:327;;;;:::o;17641:316::-;17762:4;17796:2;17785:9;17781:18;17773:26;;17805:71;17873:1;17862:9;17858:17;17849:6;17805:71;:::i;:::-;17882:72;17950:2;17939:9;17935:18;17926:6;17882:72;:::i;:::-;17641:316;;;;;:::o;17959:108::-;18025:21;18040:5;18025:21;:::i;:::-;18018:5;18015:32;18005:60;;18061:1;18058;18051:12;18005:60;17959:108;:::o;18069:125::-;18123:5;18150:6;18144:13;18135:22;;18162:30;18186:5;18162:30;:::i;:::-;18069:125;;;;:::o;18196:321::-;18263:6;18308:2;18296:9;18287:7;18283:23;18279:32;18276:119;;;18314:79;;:::i;:::-;18276:119;18426:1;18447:61;18500:7;18491:6;18480:9;18476:22;18447:61;:::i;:::-;18437:71;;18401:113;18196:321;;;;:::o;18519:211::-;18655:34;18651:1;18643:6;18639:14;18632:58;18720:6;18715:2;18707:6;18703:15;18696:31;18519:211;:::o;18732:350::-;18874:3;18891:67;18955:2;18950:3;18891:67;:::i;:::-;18884:74;;18963:93;19052:3;18963:93;:::i;:::-;19077:2;19072:3;19068:12;19061:19;;18732:350;;;:::o;19084:403::-;19250:4;19284:2;19273:9;19269:18;19261:26;;19329:9;19323:4;19319:20;19315:1;19304:9;19300:17;19293:47;19353:131;19479:4;19353:131;:::i;:::-;19345:139;;19084:403;;;:::o;19489:209::-;19625:34;19621:1;19613:6;19609:14;19602:58;19690:4;19685:2;19677:6;19673:15;19666:29;19489:209;:::o;19700:350::-;19842:3;19859:67;19923:2;19918:3;19859:67;:::i;:::-;19852:74;;19931:93;20020:3;19931:93;:::i;:::-;20045:2;20040:3;20036:12;20029:19;;19700:350;;;:::o;20052:403::-;20218:4;20252:2;20241:9;20237:18;20229:26;;20297:9;20291:4;20287:20;20283:1;20272:9;20268:17;20261:47;20321:131;20447:4;20321:131;:::i;:::-;20313:139;;20052:403;;;:::o;20457:171::-;20593:31;20589:1;20581:6;20577:14;20570:55;20457:171;:::o;20630:350::-;20772:3;20789:67;20853:2;20848:3;20789:67;:::i;:::-;20782:74;;20861:93;20950:3;20861:93;:::i;:::-;20975:2;20970:3;20966:12;20959:19;;20630:350;;;:::o;20982:403::-;21148:4;21182:2;21171:9;21167:18;21159:26;;21227:9;21221:4;21217:20;21213:1;21202:9;21198:17;21191:47;21251:131;21377:4;21251:131;:::i;:::-;21243:139;;20982:403;;;:::o;21387:212::-;21523:34;21519:1;21511:6;21507:14;21500:58;21588:7;21583:2;21575:6;21571:15;21564:32;21387:212;:::o;21601:350::-;21743:3;21760:67;21824:2;21819:3;21760:67;:::i;:::-;21753:74;;21832:93;21921:3;21832:93;:::i;:::-;21946:2;21941:3;21937:12;21930:19;;21601:350;;;:::o;21953:403::-;22119:4;22153:2;22142:9;22138:18;22130:26;;22198:9;22192:4;22188:20;22184:1;22173:9;22169:17;22162:47;22222:131;22348:4;22222:131;:::i;:::-;22214:139;;21953:403;;;:::o;22358:210::-;22494:34;22490:1;22482:6;22478:14;22471:58;22559:5;22554:2;22546:6;22542:15;22535:30;22358:210;:::o;22570:350::-;22712:3;22729:67;22793:2;22788:3;22729:67;:::i;:::-;22722:74;;22801:93;22890:3;22801:93;:::i;:::-;22915:2;22910:3;22906:12;22899:19;;22570:350;;;:::o;22922:403::-;23088:4;23122:2;23111:9;23107:18;23099:26;;23167:9;23161:4;23157:20;23153:1;23142:9;23138:17;23131:47;23191:131;23317:4;23191:131;:::i;:::-;23183:139;;22922:403;;;:::o;23327:213::-;23463:34;23459:1;23451:6;23447:14;23440:58;23528:8;23523:2;23515:6;23511:15;23504:33;23327:213;:::o;23542:350::-;23684:3;23701:67;23765:2;23760:3;23701:67;:::i;:::-;23694:74;;23773:93;23862:3;23773:93;:::i;:::-;23887:2;23882:3;23878:12;23871:19;;23542:350;;;:::o;23894:403::-;24060:4;24094:2;24083:9;24079:18;24071:26;;24139:9;24133:4;24129:20;24125:1;24114:9;24110:17;24103:47;24163:131;24289:4;24163:131;:::i;:::-;24155:139;;23894:403;;;:::o;24299:162::-;24435:22;24431:1;24423:6;24419:14;24412:46;24299:162;:::o;24463:350::-;24605:3;24622:67;24686:2;24681:3;24622:67;:::i;:::-;24615:74;;24694:93;24783:3;24694:93;:::i;:::-;24808:2;24803:3;24799:12;24792:19;;24463:350;;;:::o;24815:403::-;24981:4;25015:2;25004:9;25000:18;24992:26;;25060:9;25054:4;25050:20;25046:1;25035:9;25031:17;25024:47;25084:131;25210:4;25084:131;:::i;:::-;25076:139;;24815:403;;;:::o;25220:173::-;25356:33;25352:1;25344:6;25340:14;25333:57;25220:173;:::o;25395:350::-;25537:3;25554:67;25618:2;25613:3;25554:67;:::i;:::-;25547:74;;25626:93;25715:3;25626:93;:::i;:::-;25740:2;25735:3;25731:12;25724:19;;25395:350;;;:::o;25747:403::-;25913:4;25947:2;25936:9;25932:18;25924:26;;25992:9;25986:4;25982:20;25978:1;25967:9;25963:17;25956:47;26016:131;26142:4;26016:131;:::i;:::-;26008:139;;25747:403;;;:::o;26152:208::-;26288:34;26284:1;26276:6;26272:14;26265:58;26353:3;26348:2;26340:6;26336:15;26329:28;26152:208;:::o;26362:350::-;26504:3;26521:67;26585:2;26580:3;26521:67;:::i;:::-;26514:74;;26593:93;26682:3;26593:93;:::i;:::-;26707:2;26702:3;26698:12;26691:19;;26362:350;;;:::o;26714:403::-;26880:4;26914:2;26903:9;26899:18;26891:26;;26959:9;26953:4;26949:20;26945:1;26934:9;26930:17;26923:47;26983:131;27109:4;26983:131;:::i;:::-;26975:139;;26714:403;;;:::o;27119:209::-;27255:34;27251:1;27243:6;27239:14;27232:58;27320:4;27315:2;27307:6;27303:15;27296:29;27119:209;:::o;27330:350::-;27472:3;27489:67;27553:2;27548:3;27489:67;:::i;:::-;27482:74;;27561:93;27650:3;27561:93;:::i;:::-;27675:2;27670:3;27666:12;27659:19;;27330:350;;;:::o;27682:403::-;27848:4;27882:2;27871:9;27867:18;27859:26;;27927:9;27921:4;27917:20;27913:1;27902:9;27898:17;27891:47;27951:131;28077:4;27951:131;:::i;:::-;27943:139;;27682:403;;;:::o;28087:174::-;28127:4;28143:20;28161:1;28143:20;:::i;:::-;28138:25;;28173:20;28191:1;28173:20;:::i;:::-;28168:25;;28213:1;28210;28206:9;28198:17;;28233:1;28227:4;28224:11;28221:37;;;28238:18;;:::i;:::-;28221:37;28087:174;;;;:::o;28263:158::-;28399:18;28395:1;28387:6;28383:14;28376:42;28263:158;:::o;28423:350::-;28565:3;28582:67;28646:2;28641:3;28582:67;:::i;:::-;28575:74;;28654:93;28743:3;28654:93;:::i;:::-;28768:2;28763:3;28759:12;28752:19;;28423:350;;;:::o;28775:403::-;28941:4;28975:2;28964:9;28960:18;28952:26;;29020:9;29014:4;29010:20;29006:1;28995:9;28991:17;28984:47;29044:131;29170:4;29044:131;:::i;:::-;29036:139;;28775:403;;;:::o

Swarm Source

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