ETH Price: $2,873.07 (+6.78%)
 

Overview

Max Total Supply

1,671,064,372.44383708 CTM

Holders

801

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,265 CTM

Value
$0.00
0x45d054692006abdbd21d6b672696f54f79a5cf36
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:
CheatmoonToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-25
*/

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


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

// File: contracts/ERC20Stakeable.sol


// Creator: andreitoma8
pragma solidity ^0.8.4;




contract ERC20Stakeable is ERC20, ERC20Burnable, ReentrancyGuard {
    // Staker info
    struct Staker {
        // The deposited tokens of the Staker
        uint256 deposited;
        // Last time of details update for Deposit
        uint256 timeOfLastUpdate;
        // Calculated, but unclaimed rewards. These are calculated each time
        // a user writes to the contract.
        uint256 unclaimedRewards;
    }

    // Rewards per hour. A fraction calculated as x/10.000.000 to get the percentage
    uint256 public rewardsPerHour = 120; // 0.001%/h or 10% APR

    // Minimum amount to stake
    uint256 public minStake = 10 * 10**decimals();

    // Compounding frequency limit in seconds
    uint256 public compoundFreq = 14400; //4 hours

    // Mapping of address to Staker info
    mapping(address => Staker) internal stakers;

    // Constructor function
    constructor(string memory _name, string memory _symbol)
        ERC20(_name, _symbol)
    {}

    // If address has no Staker struct, initiate one. If address already was a stake,
    // calculate the rewards and add them to unclaimedRewards, reset the last time of
    // deposit and then add _amount to the already deposited amount.
    // Burns the amount staked.
    function deposit(uint256 _amount) external nonReentrant {
        require(_amount >= minStake, "Amount smaller than minimimum deposit");
        require(
            balanceOf(msg.sender) >= _amount,
            "Can't stake more than you own"
        );
        if (stakers[msg.sender].deposited == 0) {
            stakers[msg.sender].deposited = _amount;
            stakers[msg.sender].timeOfLastUpdate = block.timestamp;
            stakers[msg.sender].unclaimedRewards = 0;
        } else {
            uint256 rewards = calculateRewards(msg.sender);
            stakers[msg.sender].unclaimedRewards += rewards;
            stakers[msg.sender].deposited += _amount;
            stakers[msg.sender].timeOfLastUpdate = block.timestamp;
        }
        _burn(msg.sender, _amount);
    }

    // Compound the rewards and reset the last time of update for Deposit info
    function stakeRewards() external nonReentrant {
        require(stakers[msg.sender].deposited > 0, "You have no deposit");
        require(
            compoundRewardsTimer(msg.sender) == 0,
            "Tried to compound rewars too soon"
        );
        uint256 rewards = calculateRewards(msg.sender) +
            stakers[msg.sender].unclaimedRewards;
        stakers[msg.sender].unclaimedRewards = 0;
        stakers[msg.sender].deposited += rewards;
        stakers[msg.sender].timeOfLastUpdate = block.timestamp;
    }

    // Mints rewards for msg.sender
    function claimRewards() external nonReentrant {
        uint256 rewards = calculateRewards(msg.sender) +
            stakers[msg.sender].unclaimedRewards;
        require(rewards > 0, "You have no rewards");
        stakers[msg.sender].unclaimedRewards = 0;
        stakers[msg.sender].timeOfLastUpdate = block.timestamp;
        _mint(msg.sender, rewards);
    }

    // Withdraw specified amount of staked tokens
    function withdraw(uint256 _amount) external nonReentrant {
        require(
            stakers[msg.sender].deposited >= _amount,
            "Can't withdraw more than you have"
        );
        uint256 _rewards = calculateRewards(msg.sender);
        stakers[msg.sender].deposited -= _amount;
        stakers[msg.sender].timeOfLastUpdate = block.timestamp;
        stakers[msg.sender].unclaimedRewards = _rewards;
        _mint(msg.sender, _amount);
    }

    // Withdraw all stake and rewards and mints them to the msg.sender
    function withdrawAll() external nonReentrant {
        require(stakers[msg.sender].deposited > 0, "You have no deposit");
        uint256 _rewards = calculateRewards(msg.sender) +
            stakers[msg.sender].unclaimedRewards;
        uint256 _deposit = stakers[msg.sender].deposited;
        stakers[msg.sender].deposited = 0;
        stakers[msg.sender].timeOfLastUpdate = 0;
        uint256 _amount = _rewards + _deposit;
        _mint(msg.sender, _amount);
    }

    // Function useful for fron-end that returns user stake and rewards by address
    function getDepositInfo(address _user)
        public
        view
        returns (uint256 _stake, uint256 _rewards)
    {
        _stake = stakers[_user].deposited;
        _rewards =
            calculateRewards(_user) +
            stakers[msg.sender].unclaimedRewards;
        return (_stake, _rewards);
    }

    // Utility function that returns the timer for restaking rewards
    function compoundRewardsTimer(address _user)
        public
        view
        returns (uint256 _timer)
    {
        if (stakers[_user].timeOfLastUpdate + compoundFreq <= block.timestamp) {
            return 0;
        } else {
            return
                (stakers[_user].timeOfLastUpdate + compoundFreq) -
                block.timestamp;
        }
    }

    // Calculate the rewards since the last update on Deposit info
    function calculateRewards(address _staker)
        internal
        view
        returns (uint256 rewards)
    {
        return (((((block.timestamp - stakers[_staker].timeOfLastUpdate) *
            stakers[_staker].deposited) * rewardsPerHour) / 3600) / 10000000);
    }
}
// File: contracts/wCTMToken.sol


pragma solidity ^0.8.4;



contract CheatmoonToken is ERC20Stakeable, Ownable {
    address public creatorAddress = 0xbe1769f3D571108cc79A9a2045BFA547E6516114;
    constructor()ERC20Stakeable("Cheatmoon", "CTM")
    {
        _mint(msg.sender, 2000000000 * 10**decimals());
    }
    function mint(uint256 amount) external nonReentrant {
        require(msg.sender == creatorAddress, "You are not the token creator!");
        _mint(creatorAddress, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"compoundFreq","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"compoundRewardsTimer","outputs":[{"internalType":"uint256","name":"_timer","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getDepositInfo","outputs":[{"internalType":"uint256","name":"_stake","type":"uint256"},{"internalType":"uint256","name":"_rewards","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsPerHour","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakeRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052607860065562000019620001a560201b60201c565b600a6200002791906200058d565b600a620000359190620005de565b60075561384060085573be1769f3d571108cc79a9a2045bfa547e6516114600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000a057600080fd5b506040518060400160405280600981526020017f43686561746d6f6f6e00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f43544d00000000000000000000000000000000000000000000000000000000008152508181816003908162000120919062000899565b50806004908162000132919062000899565b505050600160058190555050506200015f62000153620001ae60201b60201c565b620001b660201b60201c565b6200019f3362000174620001a560201b60201c565b600a6200018291906200058d565b6377359400620001939190620005de565b6200027c60201b60201c565b62000a6c565b60006012905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002ee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e590620009e1565b60405180910390fd5b6200030260008383620003e960201b60201c565b806002600082825462000316919062000a03565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003c9919062000a4f565b60405180910390a3620003e560008383620003ee60201b60201c565b5050565b505050565b505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200048157808604811115620004595762000458620003f3565b5b6001851615620004695780820291505b8081029050620004798562000422565b945062000439565b94509492505050565b6000826200049c57600190506200056f565b81620004ac57600090506200056f565b8160018114620004c55760028114620004d05762000506565b60019150506200056f565b60ff841115620004e557620004e4620003f3565b5b8360020a915084821115620004ff57620004fe620003f3565b5b506200056f565b5060208310610133831016604e8410600b8410161715620005405782820a9050838111156200053a5762000539620003f3565b5b6200056f565b6200054f84848460016200042f565b92509050818404811115620005695762000568620003f3565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b60006200059a8262000576565b9150620005a78362000580565b9250620005d67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200048a565b905092915050565b6000620005eb8262000576565b9150620005f88362000576565b9250828202620006088162000576565b91508282048414831517620006225762000621620003f3565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006ab57607f821691505b602082108103620006c157620006c062000663565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200072b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006ec565b620007378683620006ec565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200077a620007746200076e8462000576565b6200074f565b62000576565b9050919050565b6000819050919050565b620007968362000759565b620007ae620007a58262000781565b848454620006f9565b825550505050565b600090565b620007c5620007b6565b620007d28184846200078b565b505050565b5b81811015620007fa57620007ee600082620007bb565b600181019050620007d8565b5050565b601f82111562000849576200081381620006c7565b6200081e84620006dc565b810160208510156200082e578190505b620008466200083d85620006dc565b830182620007d7565b50505b505050565b600082821c905092915050565b60006200086e600019846008026200084e565b1980831691505092915050565b60006200088983836200085b565b9150826002028217905092915050565b620008a48262000629565b67ffffffffffffffff811115620008c057620008bf62000634565b5b620008cc825462000692565b620008d9828285620007fe565b600060209050601f831160018114620009115760008415620008fc578287015190505b6200090885826200087b565b86555062000978565b601f1984166200092186620006c7565b60005b828110156200094b5784890151825560018201915060208501945060208101905062000924565b868310156200096b578489015162000967601f8916826200085b565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620009c9601f8362000980565b9150620009d68262000991565b602082019050919050565b60006020820190508181036000830152620009fc81620009ba565b9050919050565b600062000a108262000576565b915062000a1d8362000576565b925082820190508082111562000a385762000a37620003f3565b5b92915050565b62000a498162000576565b82525050565b600060208201905062000a66600083018462000a3e565b92915050565b612f7c8062000a7c6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063a457c2d711610097578063cf9d0b5f11610071578063cf9d0b5f146104e4578063dd62ed3e146104ee578063e927fc5c1461051e578063f2fde38b1461053c576101c4565b8063a457c2d714610468578063a9059cbb14610498578063b6b55f25146104c8576101c4565b80638da5cb5b116100d35780638da5cb5b146103f25780638e7271fa1461041057806395d89b411461042e578063a0712d681461044c576101c4565b8063715018a6146103c257806379cc6790146103cc578063853828b6146103e8576101c4565b8063313ce567116101665780633950935111610140578063395093511461031557806342966c68146103455780635287ce121461036157806370a0823114610392576101c4565b8063313ce567146102cf578063372500ab146102ed578063375b3c0a146102f7576101c4565b806318160ddd116101a257806318160ddd146102475780631a121d541461026557806323b872dd146102835780632e1a7d4d146102b3576101c4565b806306fdde03146101c9578063095ea7b3146101e757806312e0a05314610217575b600080fd5b6101d1610558565b6040516101de91906120a3565b60405180910390f35b61020160048036038101906101fc919061215e565b6105ea565b60405161020e91906121b9565b60405180910390f35b610231600480360381019061022c91906121d4565b61060d565b60405161023e9190612210565b60405180910390f35b61024f6106d1565b60405161025c9190612210565b60405180910390f35b61026d6106db565b60405161027a9190612210565b60405180910390f35b61029d6004803603810190610298919061222b565b6106e1565b6040516102aa91906121b9565b60405180910390f35b6102cd60048036038101906102c8919061227e565b610710565b005b6102d76108a7565b6040516102e491906122c7565b60405180910390f35b6102f56108b0565b005b6102ff6109f9565b60405161030c9190612210565b60405180910390f35b61032f600480360381019061032a919061215e565b6109ff565b60405161033c91906121b9565b60405180910390f35b61035f600480360381019061035a919061227e565b610a36565b005b61037b600480360381019061037691906121d4565b610a4a565b6040516103899291906122e2565b60405180910390f35b6103ac60048036038101906103a791906121d4565b610aef565b6040516103b99190612210565b60405180910390f35b6103ca610b37565b005b6103e660048036038101906103e1919061215e565b610b4b565b005b6103f0610b6b565b005b6103fa610d50565b604051610407919061231a565b60405180910390f35b610418610d7a565b6040516104259190612210565b60405180910390f35b610436610d80565b60405161044391906120a3565b60405180910390f35b6104666004803603810190610461919061227e565b610e12565b005b610482600480360381019061047d919061215e565b610ee1565b60405161048f91906121b9565b60405180910390f35b6104b260048036038101906104ad919061215e565b610f58565b6040516104bf91906121b9565b60405180910390f35b6104e260048036038101906104dd919061227e565b610f7b565b005b6104ec611255565b005b61050860048036038101906105039190612335565b61147a565b6040516105159190612210565b60405180910390f35b610526611501565b604051610533919061231a565b60405180910390f35b610556600480360381019061055191906121d4565b611527565b005b606060038054610567906123a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610593906123a4565b80156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b6000806105f56115aa565b90506106028185856115b2565b600191505092915050565b600042600854600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546106609190612404565b1161066e57600090506106cc565b42600854600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546106bf9190612404565b6106c99190612438565b90505b919050565b6000600254905090565b60085481565b6000806106ec6115aa565b90506106f985828561177b565b610704858585611807565b60019150509392505050565b610718611a7d565b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154101561079d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610794906124de565b60405180910390fd5b60006107a833611acc565b905081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546107fc9190612438565b9250508190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555061089b3383611b98565b506108a4611cee565b50565b60006012905090565b6108b8611a7d565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461090633611acc565b6109109190612404565b905060008111610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094c9061254a565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506109ee3382611b98565b506109f7611cee565b565b60075481565b600080610a0a6115aa565b9050610a2b818585610a1c858961147a565b610a269190612404565b6115b2565b600191505092915050565b610a47610a416115aa565b82611cf8565b50565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549150600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154610ade84611acc565b610ae89190612404565b9050915091565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b3f611ec5565b610b496000611f43565b565b610b5d82610b576115aa565b8361177b565b610b678282611cf8565b5050565b610b73611a7d565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef906125b6565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154610c4633611acc565b610c509190612404565b90506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015490506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555060008183610d379190612404565b9050610d433382611b98565b505050610d4e611cee565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b606060048054610d8f906123a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbb906123a4565b8015610e085780601f10610ddd57610100808354040283529160200191610e08565b820191906000526020600020905b815481529060010190602001808311610deb57829003601f168201915b5050505050905090565b610e1a611a7d565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190612622565b60405180910390fd5b610ed6600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611b98565b610ede611cee565b50565b600080610eec6115aa565b90506000610efa828661147a565b905083811015610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f36906126b4565b60405180910390fd5b610f4c82868684036115b2565b60019250505092915050565b600080610f636115aa565b9050610f70818585611807565b600191505092915050565b610f83611a7d565b600754811015610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90612746565b60405180910390fd5b80610fd233610aef565b1015611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a906127b2565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154036111385780600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020181905550611240565b600061114333611acc565b905080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008282546111979190612404565b9250508190555081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546111f09190612404565b9250508190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550505b61124a3382611cf8565b611252611cee565b50565b61125d611a7d565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154116112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d9906125b6565b60405180910390fd5b60006112ed3361060d565b1461132d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132490612844565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461137b33611acc565b6113859190612404565b90506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546114219190612404565b9250508190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555050611478611cee565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61152f611ec5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361159e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611595906128d6565b60405180910390fd5b6115a781611f43565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890612968565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611690576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611687906129fa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161176e9190612210565b60405180910390a3505050565b6000611787848461147a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461180157818110156117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90612a66565b60405180910390fd5b61180084848484036115b2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90612af8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dc90612b8a565b60405180910390fd5b6118f0838383612009565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d90612c1c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a649190612210565b60405180910390a3611a7784848461200e565b50505050565b600260055403611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab990612c88565b60405180910390fd5b6002600581905550565b600062989680610e10600654600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015442611b699190612438565b611b739190612ca8565b611b7d9190612ca8565b611b879190612d19565b611b919190612d19565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe90612d96565b60405180910390fd5b611c1360008383612009565b8060026000828254611c259190612404565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cd69190612210565b60405180910390a3611cea6000838361200e565b5050565b6001600581905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e90612e28565b60405180910390fd5b611d7382600083612009565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df090612eba565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611eac9190612210565b60405180910390a3611ec08360008461200e565b505050565b611ecd6115aa565b73ffffffffffffffffffffffffffffffffffffffff16611eeb610d50565b73ffffffffffffffffffffffffffffffffffffffff1614611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3890612f26565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561204d578082015181840152602081019050612032565b60008484015250505050565b6000601f19601f8301169050919050565b600061207582612013565b61207f818561201e565b935061208f81856020860161202f565b61209881612059565b840191505092915050565b600060208201905081810360008301526120bd818461206a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120f5826120ca565b9050919050565b612105816120ea565b811461211057600080fd5b50565b600081359050612122816120fc565b92915050565b6000819050919050565b61213b81612128565b811461214657600080fd5b50565b60008135905061215881612132565b92915050565b60008060408385031215612175576121746120c5565b5b600061218385828601612113565b925050602061219485828601612149565b9150509250929050565b60008115159050919050565b6121b38161219e565b82525050565b60006020820190506121ce60008301846121aa565b92915050565b6000602082840312156121ea576121e96120c5565b5b60006121f884828501612113565b91505092915050565b61220a81612128565b82525050565b60006020820190506122256000830184612201565b92915050565b600080600060608486031215612244576122436120c5565b5b600061225286828701612113565b935050602061226386828701612113565b925050604061227486828701612149565b9150509250925092565b600060208284031215612294576122936120c5565b5b60006122a284828501612149565b91505092915050565b600060ff82169050919050565b6122c1816122ab565b82525050565b60006020820190506122dc60008301846122b8565b92915050565b60006040820190506122f76000830185612201565b6123046020830184612201565b9392505050565b612314816120ea565b82525050565b600060208201905061232f600083018461230b565b92915050565b6000806040838503121561234c5761234b6120c5565b5b600061235a85828601612113565b925050602061236b85828601612113565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806123bc57607f821691505b6020821081036123cf576123ce612375565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061240f82612128565b915061241a83612128565b9250828201905080821115612432576124316123d5565b5b92915050565b600061244382612128565b915061244e83612128565b9250828203905081811115612466576124656123d5565b5b92915050565b7f43616e2774207769746864726177206d6f7265207468616e20796f752068617660008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b60006124c860218361201e565b91506124d38261246c565b604082019050919050565b600060208201905081810360008301526124f7816124bb565b9050919050565b7f596f752068617665206e6f207265776172647300000000000000000000000000600082015250565b600061253460138361201e565b915061253f826124fe565b602082019050919050565b6000602082019050818103600083015261256381612527565b9050919050565b7f596f752068617665206e6f206465706f73697400000000000000000000000000600082015250565b60006125a060138361201e565b91506125ab8261256a565b602082019050919050565b600060208201905081810360008301526125cf81612593565b9050919050565b7f596f7520617265206e6f742074686520746f6b656e2063726561746f72210000600082015250565b600061260c601e8361201e565b9150612617826125d6565b602082019050919050565b6000602082019050818103600083015261263b816125ff565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061269e60258361201e565b91506126a982612642565b604082019050919050565b600060208201905081810360008301526126cd81612691565b9050919050565b7f416d6f756e7420736d616c6c6572207468616e206d696e696d696d756d20646560008201527f706f736974000000000000000000000000000000000000000000000000000000602082015250565b600061273060258361201e565b915061273b826126d4565b604082019050919050565b6000602082019050818103600083015261275f81612723565b9050919050565b7f43616e2774207374616b65206d6f7265207468616e20796f75206f776e000000600082015250565b600061279c601d8361201e565b91506127a782612766565b602082019050919050565b600060208201905081810360008301526127cb8161278f565b9050919050565b7f547269656420746f20636f6d706f756e642072657761727320746f6f20736f6f60008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061282e60218361201e565b9150612839826127d2565b604082019050919050565b6000602082019050818103600083015261285d81612821565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006128c060268361201e565b91506128cb82612864565b604082019050919050565b600060208201905081810360008301526128ef816128b3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061295260248361201e565b915061295d826128f6565b604082019050919050565b6000602082019050818103600083015261298181612945565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006129e460228361201e565b91506129ef82612988565b604082019050919050565b60006020820190508181036000830152612a13816129d7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612a50601d8361201e565b9150612a5b82612a1a565b602082019050919050565b60006020820190508181036000830152612a7f81612a43565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ae260258361201e565b9150612aed82612a86565b604082019050919050565b60006020820190508181036000830152612b1181612ad5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b7460238361201e565b9150612b7f82612b18565b604082019050919050565b60006020820190508181036000830152612ba381612b67565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612c0660268361201e565b9150612c1182612baa565b604082019050919050565b60006020820190508181036000830152612c3581612bf9565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612c72601f8361201e565b9150612c7d82612c3c565b602082019050919050565b60006020820190508181036000830152612ca181612c65565b9050919050565b6000612cb382612128565b9150612cbe83612128565b9250828202612ccc81612128565b91508282048414831517612ce357612ce26123d5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d2482612128565b9150612d2f83612128565b925082612d3f57612d3e612cea565b5b828204905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612d80601f8361201e565b9150612d8b82612d4a565b602082019050919050565b60006020820190508181036000830152612daf81612d73565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e1260218361201e565b9150612e1d82612db6565b604082019050919050565b60006020820190508181036000830152612e4181612e05565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ea460228361201e565b9150612eaf82612e48565b604082019050919050565b60006020820190508181036000830152612ed381612e97565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f1060208361201e565b9150612f1b82612eda565b602082019050919050565b60006020820190508181036000830152612f3f81612f03565b905091905056fea2646970667358221220e5745c594c7cad387f8a6bb76ad33a206df07fb2cc0f4a862a7ae2b2598dbef564736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063a457c2d711610097578063cf9d0b5f11610071578063cf9d0b5f146104e4578063dd62ed3e146104ee578063e927fc5c1461051e578063f2fde38b1461053c576101c4565b8063a457c2d714610468578063a9059cbb14610498578063b6b55f25146104c8576101c4565b80638da5cb5b116100d35780638da5cb5b146103f25780638e7271fa1461041057806395d89b411461042e578063a0712d681461044c576101c4565b8063715018a6146103c257806379cc6790146103cc578063853828b6146103e8576101c4565b8063313ce567116101665780633950935111610140578063395093511461031557806342966c68146103455780635287ce121461036157806370a0823114610392576101c4565b8063313ce567146102cf578063372500ab146102ed578063375b3c0a146102f7576101c4565b806318160ddd116101a257806318160ddd146102475780631a121d541461026557806323b872dd146102835780632e1a7d4d146102b3576101c4565b806306fdde03146101c9578063095ea7b3146101e757806312e0a05314610217575b600080fd5b6101d1610558565b6040516101de91906120a3565b60405180910390f35b61020160048036038101906101fc919061215e565b6105ea565b60405161020e91906121b9565b60405180910390f35b610231600480360381019061022c91906121d4565b61060d565b60405161023e9190612210565b60405180910390f35b61024f6106d1565b60405161025c9190612210565b60405180910390f35b61026d6106db565b60405161027a9190612210565b60405180910390f35b61029d6004803603810190610298919061222b565b6106e1565b6040516102aa91906121b9565b60405180910390f35b6102cd60048036038101906102c8919061227e565b610710565b005b6102d76108a7565b6040516102e491906122c7565b60405180910390f35b6102f56108b0565b005b6102ff6109f9565b60405161030c9190612210565b60405180910390f35b61032f600480360381019061032a919061215e565b6109ff565b60405161033c91906121b9565b60405180910390f35b61035f600480360381019061035a919061227e565b610a36565b005b61037b600480360381019061037691906121d4565b610a4a565b6040516103899291906122e2565b60405180910390f35b6103ac60048036038101906103a791906121d4565b610aef565b6040516103b99190612210565b60405180910390f35b6103ca610b37565b005b6103e660048036038101906103e1919061215e565b610b4b565b005b6103f0610b6b565b005b6103fa610d50565b604051610407919061231a565b60405180910390f35b610418610d7a565b6040516104259190612210565b60405180910390f35b610436610d80565b60405161044391906120a3565b60405180910390f35b6104666004803603810190610461919061227e565b610e12565b005b610482600480360381019061047d919061215e565b610ee1565b60405161048f91906121b9565b60405180910390f35b6104b260048036038101906104ad919061215e565b610f58565b6040516104bf91906121b9565b60405180910390f35b6104e260048036038101906104dd919061227e565b610f7b565b005b6104ec611255565b005b61050860048036038101906105039190612335565b61147a565b6040516105159190612210565b60405180910390f35b610526611501565b604051610533919061231a565b60405180910390f35b610556600480360381019061055191906121d4565b611527565b005b606060038054610567906123a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610593906123a4565b80156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b6000806105f56115aa565b90506106028185856115b2565b600191505092915050565b600042600854600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546106609190612404565b1161066e57600090506106cc565b42600854600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546106bf9190612404565b6106c99190612438565b90505b919050565b6000600254905090565b60085481565b6000806106ec6115aa565b90506106f985828561177b565b610704858585611807565b60019150509392505050565b610718611a7d565b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154101561079d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610794906124de565b60405180910390fd5b60006107a833611acc565b905081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546107fc9190612438565b9250508190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555061089b3383611b98565b506108a4611cee565b50565b60006012905090565b6108b8611a7d565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461090633611acc565b6109109190612404565b905060008111610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094c9061254a565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506109ee3382611b98565b506109f7611cee565b565b60075481565b600080610a0a6115aa565b9050610a2b818585610a1c858961147a565b610a269190612404565b6115b2565b600191505092915050565b610a47610a416115aa565b82611cf8565b50565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549150600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154610ade84611acc565b610ae89190612404565b9050915091565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b3f611ec5565b610b496000611f43565b565b610b5d82610b576115aa565b8361177b565b610b678282611cf8565b5050565b610b73611a7d565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef906125b6565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154610c4633611acc565b610c509190612404565b90506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015490506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555060008183610d379190612404565b9050610d433382611b98565b505050610d4e611cee565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b606060048054610d8f906123a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbb906123a4565b8015610e085780601f10610ddd57610100808354040283529160200191610e08565b820191906000526020600020905b815481529060010190602001808311610deb57829003601f168201915b5050505050905090565b610e1a611a7d565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190612622565b60405180910390fd5b610ed6600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611b98565b610ede611cee565b50565b600080610eec6115aa565b90506000610efa828661147a565b905083811015610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f36906126b4565b60405180910390fd5b610f4c82868684036115b2565b60019250505092915050565b600080610f636115aa565b9050610f70818585611807565b600191505092915050565b610f83611a7d565b600754811015610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90612746565b60405180910390fd5b80610fd233610aef565b1015611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a906127b2565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154036111385780600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020181905550611240565b600061114333611acc565b905080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008282546111979190612404565b9250508190555081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546111f09190612404565b9250508190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550505b61124a3382611cf8565b611252611cee565b50565b61125d611a7d565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154116112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d9906125b6565b60405180910390fd5b60006112ed3361060d565b1461132d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132490612844565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461137b33611acc565b6113859190612404565b90506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546114219190612404565b9250508190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555050611478611cee565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61152f611ec5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361159e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611595906128d6565b60405180910390fd5b6115a781611f43565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890612968565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611690576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611687906129fa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161176e9190612210565b60405180910390a3505050565b6000611787848461147a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461180157818110156117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90612a66565b60405180910390fd5b61180084848484036115b2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90612af8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dc90612b8a565b60405180910390fd5b6118f0838383612009565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d90612c1c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a649190612210565b60405180910390a3611a7784848461200e565b50505050565b600260055403611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab990612c88565b60405180910390fd5b6002600581905550565b600062989680610e10600654600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015442611b699190612438565b611b739190612ca8565b611b7d9190612ca8565b611b879190612d19565b611b919190612d19565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe90612d96565b60405180910390fd5b611c1360008383612009565b8060026000828254611c259190612404565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cd69190612210565b60405180910390a3611cea6000838361200e565b5050565b6001600581905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e90612e28565b60405180910390fd5b611d7382600083612009565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df090612eba565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611eac9190612210565b60405180910390a3611ec08360008461200e565b505050565b611ecd6115aa565b73ffffffffffffffffffffffffffffffffffffffff16611eeb610d50565b73ffffffffffffffffffffffffffffffffffffffff1614611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3890612f26565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561204d578082015181840152602081019050612032565b60008484015250505050565b6000601f19601f8301169050919050565b600061207582612013565b61207f818561201e565b935061208f81856020860161202f565b61209881612059565b840191505092915050565b600060208201905081810360008301526120bd818461206a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120f5826120ca565b9050919050565b612105816120ea565b811461211057600080fd5b50565b600081359050612122816120fc565b92915050565b6000819050919050565b61213b81612128565b811461214657600080fd5b50565b60008135905061215881612132565b92915050565b60008060408385031215612175576121746120c5565b5b600061218385828601612113565b925050602061219485828601612149565b9150509250929050565b60008115159050919050565b6121b38161219e565b82525050565b60006020820190506121ce60008301846121aa565b92915050565b6000602082840312156121ea576121e96120c5565b5b60006121f884828501612113565b91505092915050565b61220a81612128565b82525050565b60006020820190506122256000830184612201565b92915050565b600080600060608486031215612244576122436120c5565b5b600061225286828701612113565b935050602061226386828701612113565b925050604061227486828701612149565b9150509250925092565b600060208284031215612294576122936120c5565b5b60006122a284828501612149565b91505092915050565b600060ff82169050919050565b6122c1816122ab565b82525050565b60006020820190506122dc60008301846122b8565b92915050565b60006040820190506122f76000830185612201565b6123046020830184612201565b9392505050565b612314816120ea565b82525050565b600060208201905061232f600083018461230b565b92915050565b6000806040838503121561234c5761234b6120c5565b5b600061235a85828601612113565b925050602061236b85828601612113565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806123bc57607f821691505b6020821081036123cf576123ce612375565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061240f82612128565b915061241a83612128565b9250828201905080821115612432576124316123d5565b5b92915050565b600061244382612128565b915061244e83612128565b9250828203905081811115612466576124656123d5565b5b92915050565b7f43616e2774207769746864726177206d6f7265207468616e20796f752068617660008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b60006124c860218361201e565b91506124d38261246c565b604082019050919050565b600060208201905081810360008301526124f7816124bb565b9050919050565b7f596f752068617665206e6f207265776172647300000000000000000000000000600082015250565b600061253460138361201e565b915061253f826124fe565b602082019050919050565b6000602082019050818103600083015261256381612527565b9050919050565b7f596f752068617665206e6f206465706f73697400000000000000000000000000600082015250565b60006125a060138361201e565b91506125ab8261256a565b602082019050919050565b600060208201905081810360008301526125cf81612593565b9050919050565b7f596f7520617265206e6f742074686520746f6b656e2063726561746f72210000600082015250565b600061260c601e8361201e565b9150612617826125d6565b602082019050919050565b6000602082019050818103600083015261263b816125ff565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061269e60258361201e565b91506126a982612642565b604082019050919050565b600060208201905081810360008301526126cd81612691565b9050919050565b7f416d6f756e7420736d616c6c6572207468616e206d696e696d696d756d20646560008201527f706f736974000000000000000000000000000000000000000000000000000000602082015250565b600061273060258361201e565b915061273b826126d4565b604082019050919050565b6000602082019050818103600083015261275f81612723565b9050919050565b7f43616e2774207374616b65206d6f7265207468616e20796f75206f776e000000600082015250565b600061279c601d8361201e565b91506127a782612766565b602082019050919050565b600060208201905081810360008301526127cb8161278f565b9050919050565b7f547269656420746f20636f6d706f756e642072657761727320746f6f20736f6f60008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061282e60218361201e565b9150612839826127d2565b604082019050919050565b6000602082019050818103600083015261285d81612821565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006128c060268361201e565b91506128cb82612864565b604082019050919050565b600060208201905081810360008301526128ef816128b3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061295260248361201e565b915061295d826128f6565b604082019050919050565b6000602082019050818103600083015261298181612945565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006129e460228361201e565b91506129ef82612988565b604082019050919050565b60006020820190508181036000830152612a13816129d7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612a50601d8361201e565b9150612a5b82612a1a565b602082019050919050565b60006020820190508181036000830152612a7f81612a43565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ae260258361201e565b9150612aed82612a86565b604082019050919050565b60006020820190508181036000830152612b1181612ad5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b7460238361201e565b9150612b7f82612b18565b604082019050919050565b60006020820190508181036000830152612ba381612b67565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612c0660268361201e565b9150612c1182612baa565b604082019050919050565b60006020820190508181036000830152612c3581612bf9565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612c72601f8361201e565b9150612c7d82612c3c565b602082019050919050565b60006020820190508181036000830152612ca181612c65565b9050919050565b6000612cb382612128565b9150612cbe83612128565b9250828202612ccc81612128565b91508282048414831517612ce357612ce26123d5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d2482612128565b9150612d2f83612128565b925082612d3f57612d3e612cea565b5b828204905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612d80601f8361201e565b9150612d8b82612d4a565b602082019050919050565b60006020820190508181036000830152612daf81612d73565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e1260218361201e565b9150612e1d82612db6565b604082019050919050565b60006020820190508181036000830152612e4181612e05565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ea460228361201e565b9150612eaf82612e48565b604082019050919050565b60006020820190508181036000830152612ed381612e97565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f1060208361201e565b9150612f1b82612eda565b602082019050919050565b60006020820190508181036000830152612f3f81612f03565b905091905056fea2646970667358221220e5745c594c7cad387f8a6bb76ad33a206df07fb2cc0f4a862a7ae2b2598dbef564736f6c63430008120033

Deployed Bytecode Sourcemap

30266:448:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12297:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14648:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29459:378;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13417:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25476:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15429:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27939:468;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13259:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27510:370;;;:::i;:::-;;25375:45;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16133:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24068:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29057:324;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;13588:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5722:103;;;:::i;:::-;;24478:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28487:478;;;:::i;:::-;;5074:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25276:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12516:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30529:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16874:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13921:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26032:808;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26928:537;;;:::i;:::-;;14177:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30324:74;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5980:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12297:100;12351:13;12384:5;12377:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12297:100;:::o;14648:201::-;14731:4;14748:13;14764:12;:10;:12::i;:::-;14748:28;;14787:32;14796:5;14803:7;14812:6;14787:8;:32::i;:::-;14837:4;14830:11;;;14648:201;;;;:::o;29459:378::-;29552:14;29638:15;29622:12;;29588:7;:14;29596:5;29588:14;;;;;;;;;;;;;;;:31;;;:46;;;;:::i;:::-;:65;29584:246;;29677:1;29670:8;;;;29584:246;29803:15;29770:12;;29736:7;:14;29744:5;29736:14;;;;;;;;;;;;;;;:31;;;:46;;;;:::i;:::-;29735:83;;;;:::i;:::-;29711:107;;29459:378;;;;:::o;13417:108::-;13478:7;13505:12;;13498:19;;13417:108;:::o;25476:35::-;;;;:::o;15429:295::-;15560:4;15577:15;15595:12;:10;:12::i;:::-;15577:30;;15618:38;15634:4;15640:7;15649:6;15618:15;:38::i;:::-;15667:27;15677:4;15683:2;15687:6;15667:9;:27::i;:::-;15712:4;15705:11;;;15429:295;;;;;:::o;27939:468::-;2345:21;:19;:21::i;:::-;28062:7:::1;28029;:19;28037:10;28029:19;;;;;;;;;;;;;;;:29;;;:40;;28007:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;28141:16;28160:28;28177:10;28160:16;:28::i;:::-;28141:47;;28232:7;28199;:19;28207:10;28199:19;;;;;;;;;;;;;;;:29;;;:40;;;;;;;:::i;:::-;;;;;;;;28289:15;28250:7;:19;28258:10;28250:19;;;;;;;;;;;;;;;:36;;:54;;;;28354:8;28315:7;:19;28323:10;28315:19;;;;;;;;;;;;;;;:36;;:47;;;;28373:26;28379:10;28391:7;28373:5;:26::i;:::-;27996:411;2389:20:::0;:18;:20::i;:::-;27939:468;:::o;13259:93::-;13317:5;13342:2;13335:9;;13259:93;:::o;27510:370::-;2345:21;:19;:21::i;:::-;27567:15:::1;27629:7;:19;27637:10;27629:19;;;;;;;;;;;;;;;:36;;;27585:28;27602:10;27585:16;:28::i;:::-;:80;;;;:::i;:::-;27567:98;;27694:1;27684:7;:11;27676:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;27769:1;27730:7;:19;27738:10;27730:19;;;;;;;;;;;;;;;:36;;:40;;;;27820:15;27781:7;:19;27789:10;27781:19;;;;;;;;;;;;;;;:36;;:54;;;;27846:26;27852:10;27864:7;27846:5;:26::i;:::-;27556:324;2389:20:::0;:18;:20::i;:::-;27510:370::o;25375:45::-;;;;:::o;16133:238::-;16221:4;16238:13;16254:12;:10;:12::i;:::-;16238:28;;16277:64;16286:5;16293:7;16330:10;16302:25;16312:5;16319:7;16302:9;:25::i;:::-;:38;;;;:::i;:::-;16277:8;:64::i;:::-;16359:4;16352:11;;;16133:238;;;;:::o;24068:91::-;24124:27;24130:12;:10;:12::i;:::-;24144:6;24124:5;:27::i;:::-;24068:91;:::o;29057:324::-;29144:14;29160:16;29203:7;:14;29211:5;29203:14;;;;;;;;;;;;;;;:24;;;29194:33;;29301:7;:19;29309:10;29301:19;;;;;;;;;;;;;;;:36;;;29262:23;29279:5;29262:16;:23::i;:::-;:75;;;;:::i;:::-;29238:99;;29057:324;;;:::o;13588:127::-;13662:7;13689:9;:18;13699:7;13689:18;;;;;;;;;;;;;;;;13682:25;;13588:127;;;:::o;5722:103::-;4960:13;:11;:13::i;:::-;5787:30:::1;5814:1;5787:18;:30::i;:::-;5722:103::o:0;24478:164::-;24555:46;24571:7;24580:12;:10;:12::i;:::-;24594:6;24555:15;:46::i;:::-;24612:22;24618:7;24627:6;24612:5;:22::i;:::-;24478:164;;:::o;28487:478::-;2345:21;:19;:21::i;:::-;28583:1:::1;28551:7;:19;28559:10;28551:19;;;;;;;;;;;;;;;:29;;;:33;28543:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;28619:16;28682:7;:19;28690:10;28682:19;;;;;;;;;;;;;;;:36;;;28638:28;28655:10;28638:16;:28::i;:::-;:80;;;;:::i;:::-;28619:99;;28729:16;28748:7;:19;28756:10;28748:19;;;;;;;;;;;;;;;:29;;;28729:48;;28820:1;28788:7;:19;28796:10;28788:19;;;;;;;;;;;;;;;:29;;:33;;;;28871:1;28832:7;:19;28840:10;28832:19;;;;;;;;;;;;;;;:36;;:40;;;;28883:15;28912:8;28901;:19;;;;:::i;:::-;28883:37;;28931:26;28937:10;28949:7;28931:5;:26::i;:::-;28532:433;;;2389:20:::0;:18;:20::i;:::-;28487:478::o;5074:87::-;5120:7;5147:6;;;;;;;;;;;5140:13;;5074:87;:::o;25276:35::-;;;;:::o;12516:104::-;12572:13;12605:7;12598:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12516:104;:::o;30529:182::-;2345:21;:19;:21::i;:::-;30614:14:::1;;;;;;;;;;;30600:28;;:10;:28;;;30592:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30674:29;30680:14;;;;;;;;;;;30696:6;30674:5;:29::i;:::-;2389:20:::0;:18;:20::i;:::-;30529:182;:::o;16874:436::-;16967:4;16984:13;17000:12;:10;:12::i;:::-;16984:28;;17023:24;17050:25;17060:5;17067:7;17050:9;:25::i;:::-;17023:52;;17114:15;17094:16;:35;;17086:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;17207:60;17216:5;17223:7;17251:15;17232:16;:34;17207:8;:60::i;:::-;17298:4;17291:11;;;;16874:436;;;;:::o;13921:193::-;14000:4;14017:13;14033:12;:10;:12::i;:::-;14017:28;;14056;14066:5;14073:2;14077:6;14056:9;:28::i;:::-;14102:4;14095:11;;;13921:193;;;;:::o;26032:808::-;2345:21;:19;:21::i;:::-;26118:8:::1;;26107:7;:19;;26099:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26226:7;26201:21;26211:10;26201:9;:21::i;:::-;:32;;26179:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26338:1;26305:7;:19;26313:10;26305:19;;;;;;;;;;;;;;;:29;;;:34:::0;26301:495:::1;;26388:7;26356;:19;26364:10;26356:19;;;;;;;;;;;;;;;:29;;:39;;;;26449:15;26410:7;:19;26418:10;26410:19;;;;;;;;;;;;;;;:36;;:54;;;;26518:1;26479:7;:19;26487:10;26479:19;;;;;;;;;;;;;;;:36;;:40;;;;26301:495;;;26552:15;26570:28;26587:10;26570:16;:28::i;:::-;26552:46;;26653:7;26613;:19;26621:10;26613:19;;;;;;;;;;;;;;;:36;;;:47;;;;;;;:::i;:::-;;;;;;;;26708:7;26675;:19;26683:10;26675:19;;;;;;;;;;;;;;;:29;;;:40;;;;;;;:::i;:::-;;;;;;;;26769:15;26730:7;:19;26738:10;26730:19;;;;;;;;;;;;;;;:36;;:54;;;;26537:259;26301:495;26806:26;26812:10;26824:7;26806:5;:26::i;:::-;2389:20:::0;:18;:20::i;:::-;26032:808;:::o;26928:537::-;2345:21;:19;:21::i;:::-;27025:1:::1;26993:7;:19;27001:10;26993:19;;;;;;;;;;;;;;;:29;;;:33;26985:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;27119:1;27083:32;27104:10;27083:20;:32::i;:::-;:37;27061:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;27192:15;27254:7;:19;27262:10;27254:19;;;;;;;;;;;;;;;:36;;;27210:28;27227:10;27210:16;:28::i;:::-;:80;;;;:::i;:::-;27192:98;;27340:1;27301:7;:19;27309:10;27301:19;;;;;;;;;;;;;;;:36;;:40;;;;27385:7;27352;:19;27360:10;27352:19;;;;;;;;;;;;;;;:29;;;:40;;;;;;;:::i;:::-;;;;;;;;27442:15;27403:7;:19;27411:10;27403:19;;;;;;;;;;;;;;;:36;;:54;;;;26974:491;2389:20:::0;:18;:20::i;:::-;26928:537::o;14177:151::-;14266:7;14293:11;:18;14305:5;14293:18;;;;;;;;;;;;;;;:27;14312:7;14293:27;;;;;;;;;;;;;;;;14286:34;;14177:151;;;;:::o;30324:74::-;;;;;;;;;;;;;:::o;5980:201::-;4960:13;:11;:13::i;:::-;6089:1:::1;6069:22;;:8;:22;;::::0;6061:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6145:28;6164:8;6145:18;:28::i;:::-;5980:201:::0;:::o;3625:98::-;3678:7;3705:10;3698:17;;3625:98;:::o;20901:380::-;21054:1;21037:19;;:5;:19;;;21029:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21135:1;21116:21;;:7;:21;;;21108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21219:6;21189:11;:18;21201:5;21189:18;;;;;;;;;;;;;;;:27;21208:7;21189:27;;;;;;;;;;;;;;;:36;;;;21257:7;21241:32;;21250:5;21241:32;;;21266:6;21241:32;;;;;;:::i;:::-;;;;;;;;20901:380;;;:::o;21572:453::-;21707:24;21734:25;21744:5;21751:7;21734:9;:25::i;:::-;21707:52;;21794:17;21774:16;:37;21770:248;;21856:6;21836:16;:26;;21828:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21940:51;21949:5;21956:7;21984:6;21965:16;:25;21940:8;:51::i;:::-;21770:248;21696:329;21572:453;;;:::o;17780:840::-;17927:1;17911:18;;:4;:18;;;17903:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18004:1;17990:16;;:2;:16;;;17982:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;18059:38;18080:4;18086:2;18090:6;18059:20;:38::i;:::-;18110:19;18132:9;:15;18142:4;18132:15;;;;;;;;;;;;;;;;18110:37;;18181:6;18166:11;:21;;18158:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;18298:6;18284:11;:20;18266:9;:15;18276:4;18266:15;;;;;;;;;;;;;;;:38;;;;18501:6;18484:9;:13;18494:2;18484:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;18551:2;18536:26;;18545:4;18536:26;;;18555:6;18536:26;;;;;;:::i;:::-;;;;;;;;18575:37;18595:4;18601:2;18605:6;18575:19;:37::i;:::-;17892:728;17780:840;;;:::o;2425:293::-;1827:1;2559:7;;:19;2551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:1;2692:7;:18;;;;2425:293::o;29913:279::-;30006:15;30175:8;30167:4;30149:14;;30119:7;:16;30127:7;30119:16;;;;;;;;;;;;;;;:26;;;30069:7;:16;30077:7;30069:16;;;;;;;;;;;;;;;:33;;;30051:15;:51;;;;:::i;:::-;30050:95;;;;:::i;:::-;30049:114;;;;:::i;:::-;30048:123;;;;:::i;:::-;30047:136;;;;:::i;:::-;30039:145;;29913:279;;;:::o;18907:548::-;19010:1;18991:21;;:7;:21;;;18983:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;19061:49;19090:1;19094:7;19103:6;19061:20;:49::i;:::-;19139:6;19123:12;;:22;;;;;;;:::i;:::-;;;;;;;;19316:6;19294:9;:18;19304:7;19294:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;19370:7;19349:37;;19366:1;19349:37;;;19379:6;19349:37;;;;;;:::i;:::-;;;;;;;;19399:48;19427:1;19431:7;19440:6;19399:19;:48::i;:::-;18907:548;;:::o;2726:213::-;1783:1;2909:7;:22;;;;2726:213::o;19788:675::-;19891:1;19872:21;;:7;:21;;;19864:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19944:49;19965:7;19982:1;19986:6;19944:20;:49::i;:::-;20006:22;20031:9;:18;20041:7;20031:18;;;;;;;;;;;;;;;;20006:43;;20086:6;20068:14;:24;;20060:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20205:6;20188:14;:23;20167:9;:18;20177:7;20167:18;;;;;;;;;;;;;;;:44;;;;20322:6;20306:12;;:22;;;;;;;;;;;20383:1;20357:37;;20366:7;20357:37;;;20387:6;20357:37;;;;;;:::i;:::-;;;;;;;;20407:48;20427:7;20444:1;20448:6;20407:19;:48::i;:::-;19853:610;19788:675;;:::o;5239:132::-;5314:12;:10;:12::i;:::-;5303:23;;:7;:5;:7::i;:::-;:23;;;5295:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5239:132::o;6341:191::-;6415:16;6434:6;;;;;;;;;;;6415:25;;6460:8;6451:6;;:17;;;;;;;;;;;;;;;;;;6515:8;6484:40;;6505:8;6484:40;;;;;;;;;;;;6404:128;6341:191;:::o;22625:125::-;;;;:::o;23354: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;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:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:329::-;4817:6;4866:2;4854:9;4845:7;4841:23;4837:32;4834:119;;;4872:79;;:::i;:::-;4834:119;4992:1;5017:53;5062:7;5053:6;5042:9;5038:22;5017:53;:::i;:::-;5007:63;;4963:117;4758:329;;;;:::o;5093:86::-;5128:7;5168:4;5161:5;5157:16;5146:27;;5093:86;;;:::o;5185:112::-;5268:22;5284:5;5268:22;:::i;:::-;5263:3;5256:35;5185:112;;:::o;5303:214::-;5392:4;5430:2;5419:9;5415:18;5407:26;;5443:67;5507:1;5496:9;5492:17;5483:6;5443:67;:::i;:::-;5303:214;;;;:::o;5523:332::-;5644:4;5682:2;5671:9;5667:18;5659:26;;5695:71;5763:1;5752:9;5748:17;5739:6;5695:71;:::i;:::-;5776:72;5844:2;5833:9;5829:18;5820:6;5776:72;:::i;:::-;5523:332;;;;;:::o;5861:118::-;5948:24;5966:5;5948:24;:::i;:::-;5943:3;5936:37;5861:118;;:::o;5985:222::-;6078:4;6116:2;6105:9;6101:18;6093:26;;6129:71;6197:1;6186:9;6182:17;6173:6;6129:71;:::i;:::-;5985:222;;;;:::o;6213:474::-;6281:6;6289;6338:2;6326:9;6317:7;6313:23;6309:32;6306:119;;;6344:79;;:::i;:::-;6306:119;6464:1;6489:53;6534:7;6525:6;6514:9;6510:22;6489:53;:::i;:::-;6479:63;;6435:117;6591:2;6617:53;6662:7;6653:6;6642:9;6638:22;6617:53;:::i;:::-;6607:63;;6562:118;6213:474;;;;;:::o;6693:180::-;6741:77;6738:1;6731:88;6838:4;6835:1;6828:15;6862:4;6859:1;6852:15;6879:320;6923:6;6960:1;6954:4;6950:12;6940:22;;7007:1;7001:4;6997:12;7028:18;7018:81;;7084:4;7076:6;7072:17;7062:27;;7018:81;7146:2;7138:6;7135:14;7115:18;7112:38;7109:84;;7165:18;;:::i;:::-;7109:84;6930:269;6879:320;;;:::o;7205:180::-;7253:77;7250:1;7243:88;7350:4;7347:1;7340:15;7374:4;7371:1;7364:15;7391:191;7431:3;7450:20;7468:1;7450:20;:::i;:::-;7445:25;;7484:20;7502:1;7484:20;:::i;:::-;7479:25;;7527:1;7524;7520:9;7513:16;;7548:3;7545:1;7542:10;7539:36;;;7555:18;;:::i;:::-;7539:36;7391:191;;;;:::o;7588:194::-;7628:4;7648:20;7666:1;7648:20;:::i;:::-;7643:25;;7682:20;7700:1;7682:20;:::i;:::-;7677:25;;7726:1;7723;7719:9;7711:17;;7750:1;7744:4;7741:11;7738:37;;;7755:18;;:::i;:::-;7738:37;7588:194;;;;:::o;7788:220::-;7928:34;7924:1;7916:6;7912:14;7905:58;7997:3;7992:2;7984:6;7980:15;7973:28;7788:220;:::o;8014:366::-;8156:3;8177:67;8241:2;8236:3;8177:67;:::i;:::-;8170:74;;8253:93;8342:3;8253:93;:::i;:::-;8371:2;8366:3;8362:12;8355:19;;8014:366;;;:::o;8386:419::-;8552:4;8590:2;8579:9;8575:18;8567:26;;8639:9;8633:4;8629:20;8625:1;8614:9;8610:17;8603:47;8667:131;8793:4;8667:131;:::i;:::-;8659:139;;8386:419;;;:::o;8811:169::-;8951:21;8947:1;8939:6;8935:14;8928:45;8811:169;:::o;8986:366::-;9128:3;9149:67;9213:2;9208:3;9149:67;:::i;:::-;9142:74;;9225:93;9314:3;9225:93;:::i;:::-;9343:2;9338:3;9334:12;9327:19;;8986:366;;;:::o;9358:419::-;9524:4;9562:2;9551:9;9547:18;9539:26;;9611:9;9605:4;9601:20;9597:1;9586:9;9582:17;9575:47;9639:131;9765:4;9639:131;:::i;:::-;9631:139;;9358:419;;;:::o;9783:169::-;9923:21;9919:1;9911:6;9907:14;9900:45;9783:169;:::o;9958:366::-;10100:3;10121:67;10185:2;10180:3;10121:67;:::i;:::-;10114:74;;10197:93;10286:3;10197:93;:::i;:::-;10315:2;10310:3;10306:12;10299:19;;9958:366;;;:::o;10330:419::-;10496:4;10534:2;10523:9;10519:18;10511:26;;10583:9;10577:4;10573:20;10569:1;10558:9;10554:17;10547:47;10611:131;10737:4;10611:131;:::i;:::-;10603:139;;10330:419;;;:::o;10755:180::-;10895:32;10891:1;10883:6;10879:14;10872:56;10755:180;:::o;10941:366::-;11083:3;11104:67;11168:2;11163:3;11104:67;:::i;:::-;11097:74;;11180:93;11269:3;11180:93;:::i;:::-;11298:2;11293:3;11289:12;11282:19;;10941:366;;;:::o;11313:419::-;11479:4;11517:2;11506:9;11502:18;11494:26;;11566:9;11560:4;11556:20;11552:1;11541:9;11537:17;11530:47;11594:131;11720:4;11594:131;:::i;:::-;11586:139;;11313:419;;;:::o;11738:224::-;11878:34;11874:1;11866:6;11862:14;11855:58;11947:7;11942:2;11934:6;11930:15;11923:32;11738:224;:::o;11968:366::-;12110:3;12131:67;12195:2;12190:3;12131:67;:::i;:::-;12124:74;;12207:93;12296:3;12207:93;:::i;:::-;12325:2;12320:3;12316:12;12309:19;;11968:366;;;:::o;12340:419::-;12506:4;12544:2;12533:9;12529:18;12521:26;;12593:9;12587:4;12583:20;12579:1;12568:9;12564:17;12557:47;12621:131;12747:4;12621:131;:::i;:::-;12613:139;;12340:419;;;:::o;12765:224::-;12905:34;12901:1;12893:6;12889:14;12882:58;12974:7;12969:2;12961:6;12957:15;12950:32;12765:224;:::o;12995:366::-;13137:3;13158:67;13222:2;13217:3;13158:67;:::i;:::-;13151:74;;13234:93;13323:3;13234:93;:::i;:::-;13352:2;13347:3;13343:12;13336:19;;12995:366;;;:::o;13367:419::-;13533:4;13571:2;13560:9;13556:18;13548:26;;13620:9;13614:4;13610:20;13606:1;13595:9;13591:17;13584:47;13648:131;13774:4;13648:131;:::i;:::-;13640:139;;13367:419;;;:::o;13792:179::-;13932:31;13928:1;13920:6;13916:14;13909:55;13792:179;:::o;13977:366::-;14119:3;14140:67;14204:2;14199:3;14140:67;:::i;:::-;14133:74;;14216:93;14305:3;14216:93;:::i;:::-;14334:2;14329:3;14325:12;14318:19;;13977:366;;;:::o;14349:419::-;14515:4;14553:2;14542:9;14538:18;14530:26;;14602:9;14596:4;14592:20;14588:1;14577:9;14573:17;14566:47;14630:131;14756:4;14630:131;:::i;:::-;14622:139;;14349:419;;;:::o;14774:220::-;14914:34;14910:1;14902:6;14898:14;14891:58;14983:3;14978:2;14970:6;14966:15;14959:28;14774:220;:::o;15000:366::-;15142:3;15163:67;15227:2;15222:3;15163:67;:::i;:::-;15156:74;;15239:93;15328:3;15239:93;:::i;:::-;15357:2;15352:3;15348:12;15341:19;;15000:366;;;:::o;15372:419::-;15538:4;15576:2;15565:9;15561:18;15553:26;;15625:9;15619:4;15615:20;15611:1;15600:9;15596:17;15589:47;15653:131;15779:4;15653:131;:::i;:::-;15645:139;;15372:419;;;:::o;15797:225::-;15937:34;15933:1;15925:6;15921:14;15914:58;16006:8;16001:2;15993:6;15989:15;15982:33;15797:225;:::o;16028:366::-;16170:3;16191:67;16255:2;16250:3;16191:67;:::i;:::-;16184:74;;16267:93;16356:3;16267:93;:::i;:::-;16385:2;16380:3;16376:12;16369:19;;16028:366;;;:::o;16400:419::-;16566:4;16604:2;16593:9;16589:18;16581:26;;16653:9;16647:4;16643:20;16639:1;16628:9;16624:17;16617:47;16681:131;16807:4;16681:131;:::i;:::-;16673:139;;16400:419;;;:::o;16825:223::-;16965:34;16961:1;16953:6;16949:14;16942:58;17034:6;17029:2;17021:6;17017:15;17010:31;16825:223;:::o;17054:366::-;17196:3;17217:67;17281:2;17276:3;17217:67;:::i;:::-;17210:74;;17293:93;17382:3;17293:93;:::i;:::-;17411:2;17406:3;17402:12;17395:19;;17054:366;;;:::o;17426:419::-;17592:4;17630:2;17619:9;17615:18;17607:26;;17679:9;17673:4;17669:20;17665:1;17654:9;17650:17;17643:47;17707:131;17833:4;17707:131;:::i;:::-;17699:139;;17426:419;;;:::o;17851:221::-;17991:34;17987:1;17979:6;17975:14;17968:58;18060:4;18055:2;18047:6;18043:15;18036:29;17851:221;:::o;18078:366::-;18220:3;18241:67;18305:2;18300:3;18241:67;:::i;:::-;18234:74;;18317:93;18406:3;18317:93;:::i;:::-;18435:2;18430:3;18426:12;18419:19;;18078:366;;;:::o;18450:419::-;18616:4;18654:2;18643:9;18639:18;18631:26;;18703:9;18697:4;18693:20;18689:1;18678:9;18674:17;18667:47;18731:131;18857:4;18731:131;:::i;:::-;18723:139;;18450:419;;;:::o;18875:179::-;19015:31;19011:1;19003:6;18999:14;18992:55;18875:179;:::o;19060:366::-;19202:3;19223:67;19287:2;19282:3;19223:67;:::i;:::-;19216:74;;19299:93;19388:3;19299:93;:::i;:::-;19417:2;19412:3;19408:12;19401:19;;19060:366;;;:::o;19432:419::-;19598:4;19636:2;19625:9;19621:18;19613:26;;19685:9;19679:4;19675:20;19671:1;19660:9;19656:17;19649:47;19713:131;19839:4;19713:131;:::i;:::-;19705:139;;19432:419;;;:::o;19857:224::-;19997:34;19993:1;19985:6;19981:14;19974:58;20066:7;20061:2;20053:6;20049:15;20042:32;19857:224;:::o;20087:366::-;20229:3;20250:67;20314:2;20309:3;20250:67;:::i;:::-;20243:74;;20326:93;20415:3;20326:93;:::i;:::-;20444:2;20439:3;20435:12;20428:19;;20087:366;;;:::o;20459:419::-;20625:4;20663:2;20652:9;20648:18;20640:26;;20712:9;20706:4;20702:20;20698:1;20687:9;20683:17;20676:47;20740:131;20866:4;20740:131;:::i;:::-;20732:139;;20459:419;;;:::o;20884:222::-;21024:34;21020:1;21012:6;21008:14;21001:58;21093:5;21088:2;21080:6;21076:15;21069:30;20884:222;:::o;21112:366::-;21254:3;21275:67;21339:2;21334:3;21275:67;:::i;:::-;21268:74;;21351:93;21440:3;21351:93;:::i;:::-;21469:2;21464:3;21460:12;21453:19;;21112:366;;;:::o;21484:419::-;21650:4;21688:2;21677:9;21673:18;21665:26;;21737:9;21731:4;21727:20;21723:1;21712:9;21708:17;21701:47;21765:131;21891:4;21765:131;:::i;:::-;21757:139;;21484:419;;;:::o;21909:225::-;22049:34;22045:1;22037:6;22033:14;22026:58;22118:8;22113:2;22105:6;22101:15;22094:33;21909:225;:::o;22140:366::-;22282:3;22303:67;22367:2;22362:3;22303:67;:::i;:::-;22296:74;;22379:93;22468:3;22379:93;:::i;:::-;22497:2;22492:3;22488:12;22481:19;;22140:366;;;:::o;22512:419::-;22678:4;22716:2;22705:9;22701:18;22693:26;;22765:9;22759:4;22755:20;22751:1;22740:9;22736:17;22729:47;22793:131;22919:4;22793:131;:::i;:::-;22785:139;;22512:419;;;:::o;22937:181::-;23077:33;23073:1;23065:6;23061:14;23054:57;22937:181;:::o;23124:366::-;23266:3;23287:67;23351:2;23346:3;23287:67;:::i;:::-;23280:74;;23363:93;23452:3;23363:93;:::i;:::-;23481:2;23476:3;23472:12;23465:19;;23124:366;;;:::o;23496:419::-;23662:4;23700:2;23689:9;23685:18;23677:26;;23749:9;23743:4;23739:20;23735:1;23724:9;23720:17;23713:47;23777:131;23903:4;23777:131;:::i;:::-;23769:139;;23496:419;;;:::o;23921:410::-;23961:7;23984:20;24002:1;23984:20;:::i;:::-;23979:25;;24018:20;24036:1;24018:20;:::i;:::-;24013:25;;24073:1;24070;24066:9;24095:30;24113:11;24095:30;:::i;:::-;24084:41;;24274:1;24265:7;24261:15;24258:1;24255:22;24235:1;24228:9;24208:83;24185:139;;24304:18;;:::i;:::-;24185:139;23969:362;23921:410;;;;:::o;24337:180::-;24385:77;24382:1;24375:88;24482:4;24479:1;24472:15;24506:4;24503:1;24496:15;24523:185;24563:1;24580:20;24598:1;24580:20;:::i;:::-;24575:25;;24614:20;24632:1;24614:20;:::i;:::-;24609:25;;24653:1;24643:35;;24658:18;;:::i;:::-;24643:35;24700:1;24697;24693:9;24688:14;;24523:185;;;;:::o;24714:181::-;24854:33;24850:1;24842:6;24838:14;24831:57;24714:181;:::o;24901:366::-;25043:3;25064:67;25128:2;25123:3;25064:67;:::i;:::-;25057:74;;25140:93;25229:3;25140:93;:::i;:::-;25258:2;25253:3;25249:12;25242:19;;24901:366;;;:::o;25273:419::-;25439:4;25477:2;25466:9;25462:18;25454:26;;25526:9;25520:4;25516:20;25512:1;25501:9;25497:17;25490:47;25554:131;25680:4;25554:131;:::i;:::-;25546:139;;25273:419;;;:::o;25698:220::-;25838:34;25834:1;25826:6;25822:14;25815:58;25907:3;25902:2;25894:6;25890:15;25883:28;25698:220;:::o;25924:366::-;26066:3;26087:67;26151:2;26146:3;26087:67;:::i;:::-;26080:74;;26163:93;26252:3;26163:93;:::i;:::-;26281:2;26276:3;26272:12;26265:19;;25924:366;;;:::o;26296:419::-;26462:4;26500:2;26489:9;26485:18;26477:26;;26549:9;26543:4;26539:20;26535:1;26524:9;26520:17;26513:47;26577:131;26703:4;26577:131;:::i;:::-;26569:139;;26296:419;;;:::o;26721:221::-;26861:34;26857:1;26849:6;26845:14;26838:58;26930:4;26925:2;26917:6;26913:15;26906:29;26721:221;:::o;26948:366::-;27090:3;27111:67;27175:2;27170:3;27111:67;:::i;:::-;27104:74;;27187:93;27276:3;27187:93;:::i;:::-;27305:2;27300:3;27296:12;27289:19;;26948:366;;;:::o;27320:419::-;27486:4;27524:2;27513:9;27509:18;27501:26;;27573:9;27567:4;27563:20;27559:1;27548:9;27544:17;27537:47;27601:131;27727:4;27601:131;:::i;:::-;27593:139;;27320:419;;;:::o;27745:182::-;27885:34;27881:1;27873:6;27869:14;27862:58;27745:182;:::o;27933:366::-;28075:3;28096:67;28160:2;28155:3;28096:67;:::i;:::-;28089:74;;28172:93;28261:3;28172:93;:::i;:::-;28290:2;28285:3;28281:12;28274:19;;27933:366;;;:::o;28305:419::-;28471:4;28509:2;28498:9;28494:18;28486:26;;28558:9;28552:4;28548:20;28544:1;28533:9;28529:17;28522:47;28586:131;28712:4;28586:131;:::i;:::-;28578:139;;28305:419;;;:::o

Swarm Source

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