ETH Price: $2,857.95 (+6.22%)
 

Overview

Max Total Supply

328,116,147.69928264 wCTM

Holders

394

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
18,530 wCTM

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:
MyStakeableToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-16
*/

// SPDX-License-Identifier: MIT
// 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 MyStakeableToken is ERC20Stakeable, Ownable {
    constructor()ERC20Stakeable("Cheatmoon", "wCTM")
    {
        _mint(msg.sender, 500000000 * 10**decimals());
    }
}

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":"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":[],"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"}]

60806040526078600655620000196200015060201b60201c565b600a62000027919062000538565b600a62000035919062000589565b6007556138406008553480156200004b57600080fd5b506040518060400160405280600981526020017f43686561746d6f6f6e00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f7743544d0000000000000000000000000000000000000000000000000000000081525081818160039081620000cb919062000844565b508060049081620000dd919062000844565b505050600160058190555050506200010a620000fe6200015960201b60201c565b6200016160201b60201c565b6200014a336200011f6200015060201b60201c565b600a6200012d919062000538565b631dcd65006200013e919062000589565b6200022760201b60201c565b62000a17565b60006012905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000290906200098c565b60405180910390fd5b620002ad600083836200039460201b60201c565b8060026000828254620002c19190620009ae565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003749190620009fa565b60405180910390a362000390600083836200039960201b60201c565b5050565b505050565b505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200042c578086048111156200040457620004036200039e565b5b6001851615620004145780820291505b80810290506200042485620003cd565b9450620003e4565b94509492505050565b6000826200044757600190506200051a565b816200045757600090506200051a565b81600181146200047057600281146200047b57620004b1565b60019150506200051a565b60ff84111562000490576200048f6200039e565b5b8360020a915084821115620004aa57620004a96200039e565b5b506200051a565b5060208310610133831016604e8410600b8410161715620004eb5782820a905083811115620004e557620004e46200039e565b5b6200051a565b620004fa8484846001620003da565b925090508184048111156200051457620005136200039e565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620005458262000521565b915062000552836200052b565b9250620005817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000435565b905092915050565b6000620005968262000521565b9150620005a38362000521565b9250828202620005b38162000521565b91508282048414831517620005cd57620005cc6200039e565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200065657607f821691505b6020821081036200066c576200066b6200060e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006d67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000697565b620006e2868362000697565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007256200071f620007198462000521565b620006fa565b62000521565b9050919050565b6000819050919050565b620007418362000704565b6200075962000750826200072c565b848454620006a4565b825550505050565b600090565b6200077062000761565b6200077d81848462000736565b505050565b5b81811015620007a5576200079960008262000766565b60018101905062000783565b5050565b601f821115620007f457620007be8162000672565b620007c98462000687565b81016020851015620007d9578190505b620007f1620007e88562000687565b83018262000782565b50505b505050565b600082821c905092915050565b60006200081960001984600802620007f9565b1980831691505092915050565b600062000834838362000806565b9150826002028217905092915050565b6200084f82620005d4565b67ffffffffffffffff8111156200086b576200086a620005df565b5b6200087782546200063d565b62000884828285620007a9565b600060209050601f831160018114620008bc5760008415620008a7578287015190505b620008b3858262000826565b86555062000923565b601f198416620008cc8662000672565b60005b82811015620008f657848901518255600182019150602085019450602081019050620008cf565b8683101562000916578489015162000912601f89168262000806565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000974601f836200092b565b915062000981826200093c565b602082019050919050565b60006020820190508181036000830152620009a78162000965565b9050919050565b6000620009bb8262000521565b9150620009c88362000521565b9250828201905080821115620009e357620009e26200039e565b5b92915050565b620009f48162000521565b82525050565b600060208201905062000a116000830184620009e9565b92915050565b612dab8062000a276000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de57806395d89b4111610097578063b6b55f2511610071578063b6b55f2514610476578063cf9d0b5f14610492578063dd62ed3e1461049c578063f2fde38b146104cc5761018e565b806395d89b41146103f8578063a457c2d714610416578063a9059cbb146104465761018e565b806370a082311461035c578063715018a61461038c57806379cc679014610396578063853828b6146103b25780638da5cb5b146103bc5780638e7271fa146103da5761018e565b80632e1a7d4d1161014b578063375b3c0a11610125578063375b3c0a146102c157806339509351146102df57806342966c681461030f5780635287ce121461032b5761018e565b80632e1a7d4d1461027d578063313ce56714610299578063372500ab146102b75761018e565b806306fdde0314610193578063095ea7b3146101b157806312e0a053146101e157806318160ddd146102115780631a121d541461022f57806323b872dd1461024d575b600080fd5b61019b6104e8565b6040516101a89190611f3e565b60405180910390f35b6101cb60048036038101906101c69190611ff9565b61057a565b6040516101d89190612054565b60405180910390f35b6101fb60048036038101906101f6919061206f565b61059d565b60405161020891906120ab565b60405180910390f35b610219610661565b60405161022691906120ab565b60405180910390f35b61023761066b565b60405161024491906120ab565b60405180910390f35b610267600480360381019061026291906120c6565b610671565b6040516102749190612054565b60405180910390f35b61029760048036038101906102929190612119565b6106a0565b005b6102a1610837565b6040516102ae9190612162565b60405180910390f35b6102bf610840565b005b6102c9610989565b6040516102d691906120ab565b60405180910390f35b6102f960048036038101906102f49190611ff9565b61098f565b6040516103069190612054565b60405180910390f35b61032960048036038101906103249190612119565b6109c6565b005b6103456004803603810190610340919061206f565b6109da565b60405161035392919061217d565b60405180910390f35b6103766004803603810190610371919061206f565b610a7f565b60405161038391906120ab565b60405180910390f35b610394610ac7565b005b6103b060048036038101906103ab9190611ff9565b610adb565b005b6103ba610afb565b005b6103c4610ce0565b6040516103d191906121b5565b60405180910390f35b6103e2610d0a565b6040516103ef91906120ab565b60405180910390f35b610400610d10565b60405161040d9190611f3e565b60405180910390f35b610430600480360381019061042b9190611ff9565b610da2565b60405161043d9190612054565b60405180910390f35b610460600480360381019061045b9190611ff9565b610e19565b60405161046d9190612054565b60405180910390f35b610490600480360381019061048b9190612119565b610e3c565b005b61049a611116565b005b6104b660048036038101906104b191906121d0565b61133b565b6040516104c391906120ab565b60405180910390f35b6104e660048036038101906104e1919061206f565b6113c2565b005b6060600380546104f79061223f565b80601f01602080910402602001604051908101604052809291908181526020018280546105239061223f565b80156105705780601f1061054557610100808354040283529160200191610570565b820191906000526020600020905b81548152906001019060200180831161055357829003601f168201915b5050505050905090565b600080610585611445565b905061059281858561144d565b600191505092915050565b600042600854600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546105f0919061229f565b116105fe576000905061065c565b42600854600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461064f919061229f565b61065991906122d3565b90505b919050565b6000600254905090565b60085481565b60008061067c611445565b9050610689858285611616565b6106948585856116a2565b60019150509392505050565b6106a8611918565b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154101561072d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072490612379565b60405180910390fd5b600061073833611967565b905081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001600082825461078c91906122d3565b9250508190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555061082b3383611a33565b50610834611b89565b50565b60006012905090565b610848611918565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461089633611967565b6108a0919061229f565b9050600081116108e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dc906123e5565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555061097e3382611a33565b50610987611b89565b565b60075481565b60008061099a611445565b90506109bb8185856109ac858961133b565b6109b6919061229f565b61144d565b600191505092915050565b6109d76109d1611445565b82611b93565b50565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549150600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154610a6e84611967565b610a78919061229f565b9050915091565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610acf611d60565b610ad96000611dde565b565b610aed82610ae7611445565b83611616565b610af78282611b93565b5050565b610b03611918565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90612451565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154610bd633611967565b610be0919061229f565b90506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015490506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555060008183610cc7919061229f565b9050610cd33382611a33565b505050610cde611b89565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b606060048054610d1f9061223f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4b9061223f565b8015610d985780601f10610d6d57610100808354040283529160200191610d98565b820191906000526020600020905b815481529060010190602001808311610d7b57829003601f168201915b5050505050905090565b600080610dad611445565b90506000610dbb828661133b565b905083811015610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df7906124e3565b60405180910390fd5b610e0d828686840361144d565b60019250505092915050565b600080610e24611445565b9050610e318185856116a2565b600191505092915050565b610e44611918565b600754811015610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090612575565b60405180910390fd5b80610e9333610a7f565b1015610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb906125e1565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015403610ff95780600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020181905550611101565b600061100433611967565b905080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002016000828254611058919061229f565b9250508190555081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546110b1919061229f565b9250508190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550505b61110b3382611b93565b611113611b89565b50565b61111e611918565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154116111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a90612451565b60405180910390fd5b60006111ae3361059d565b146111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590612673565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461123c33611967565b611246919061229f565b90506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546112e2919061229f565b9250508190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555050611339611b89565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113ca611d60565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143090612705565b60405180910390fd5b61144281611dde565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390612797565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361152b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152290612829565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161160991906120ab565b60405180910390a3505050565b6000611622848461133b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461169c578181101561168e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168590612895565b60405180910390fd5b61169b848484840361144d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170890612927565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611777906129b9565b60405180910390fd5b61178b838383611ea4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890612a4b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118ff91906120ab565b60405180910390a3611912848484611ea9565b50505050565b60026005540361195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490612ab7565b60405180910390fd5b6002600581905550565b600062989680610e10600654600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015442611a0491906122d3565b611a0e9190612ad7565b611a189190612ad7565b611a229190612b48565b611a2c9190612b48565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990612bc5565b60405180910390fd5b611aae60008383611ea4565b8060026000828254611ac0919061229f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b7191906120ab565b60405180910390a3611b8560008383611ea9565b5050565b6001600581905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf990612c57565b60405180910390fd5b611c0e82600083611ea4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b90612ce9565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d4791906120ab565b60405180910390a3611d5b83600084611ea9565b505050565b611d68611445565b73ffffffffffffffffffffffffffffffffffffffff16611d86610ce0565b73ffffffffffffffffffffffffffffffffffffffff1614611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd390612d55565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ee8578082015181840152602081019050611ecd565b60008484015250505050565b6000601f19601f8301169050919050565b6000611f1082611eae565b611f1a8185611eb9565b9350611f2a818560208601611eca565b611f3381611ef4565b840191505092915050565b60006020820190508181036000830152611f588184611f05565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f9082611f65565b9050919050565b611fa081611f85565b8114611fab57600080fd5b50565b600081359050611fbd81611f97565b92915050565b6000819050919050565b611fd681611fc3565b8114611fe157600080fd5b50565b600081359050611ff381611fcd565b92915050565b600080604083850312156120105761200f611f60565b5b600061201e85828601611fae565b925050602061202f85828601611fe4565b9150509250929050565b60008115159050919050565b61204e81612039565b82525050565b60006020820190506120696000830184612045565b92915050565b60006020828403121561208557612084611f60565b5b600061209384828501611fae565b91505092915050565b6120a581611fc3565b82525050565b60006020820190506120c0600083018461209c565b92915050565b6000806000606084860312156120df576120de611f60565b5b60006120ed86828701611fae565b93505060206120fe86828701611fae565b925050604061210f86828701611fe4565b9150509250925092565b60006020828403121561212f5761212e611f60565b5b600061213d84828501611fe4565b91505092915050565b600060ff82169050919050565b61215c81612146565b82525050565b60006020820190506121776000830184612153565b92915050565b6000604082019050612192600083018561209c565b61219f602083018461209c565b9392505050565b6121af81611f85565b82525050565b60006020820190506121ca60008301846121a6565b92915050565b600080604083850312156121e7576121e6611f60565b5b60006121f585828601611fae565b925050602061220685828601611fae565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061225757607f821691505b60208210810361226a57612269612210565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122aa82611fc3565b91506122b583611fc3565b92508282019050808211156122cd576122cc612270565b5b92915050565b60006122de82611fc3565b91506122e983611fc3565b925082820390508181111561230157612300612270565b5b92915050565b7f43616e2774207769746864726177206d6f7265207468616e20796f752068617660008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6000612363602183611eb9565b915061236e82612307565b604082019050919050565b6000602082019050818103600083015261239281612356565b9050919050565b7f596f752068617665206e6f207265776172647300000000000000000000000000600082015250565b60006123cf601383611eb9565b91506123da82612399565b602082019050919050565b600060208201905081810360008301526123fe816123c2565b9050919050565b7f596f752068617665206e6f206465706f73697400000000000000000000000000600082015250565b600061243b601383611eb9565b915061244682612405565b602082019050919050565b6000602082019050818103600083015261246a8161242e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006124cd602583611eb9565b91506124d882612471565b604082019050919050565b600060208201905081810360008301526124fc816124c0565b9050919050565b7f416d6f756e7420736d616c6c6572207468616e206d696e696d696d756d20646560008201527f706f736974000000000000000000000000000000000000000000000000000000602082015250565b600061255f602583611eb9565b915061256a82612503565b604082019050919050565b6000602082019050818103600083015261258e81612552565b9050919050565b7f43616e2774207374616b65206d6f7265207468616e20796f75206f776e000000600082015250565b60006125cb601d83611eb9565b91506125d682612595565b602082019050919050565b600060208201905081810360008301526125fa816125be565b9050919050565b7f547269656420746f20636f6d706f756e642072657761727320746f6f20736f6f60008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061265d602183611eb9565b915061266882612601565b604082019050919050565b6000602082019050818103600083015261268c81612650565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006126ef602683611eb9565b91506126fa82612693565b604082019050919050565b6000602082019050818103600083015261271e816126e2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612781602483611eb9565b915061278c82612725565b604082019050919050565b600060208201905081810360008301526127b081612774565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612813602283611eb9565b915061281e826127b7565b604082019050919050565b6000602082019050818103600083015261284281612806565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061287f601d83611eb9565b915061288a82612849565b602082019050919050565b600060208201905081810360008301526128ae81612872565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612911602583611eb9565b915061291c826128b5565b604082019050919050565b6000602082019050818103600083015261294081612904565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006129a3602383611eb9565b91506129ae82612947565b604082019050919050565b600060208201905081810360008301526129d281612996565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612a35602683611eb9565b9150612a40826129d9565b604082019050919050565b60006020820190508181036000830152612a6481612a28565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612aa1601f83611eb9565b9150612aac82612a6b565b602082019050919050565b60006020820190508181036000830152612ad081612a94565b9050919050565b6000612ae282611fc3565b9150612aed83611fc3565b9250828202612afb81611fc3565b91508282048414831517612b1257612b11612270565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b5382611fc3565b9150612b5e83611fc3565b925082612b6e57612b6d612b19565b5b828204905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612baf601f83611eb9565b9150612bba82612b79565b602082019050919050565b60006020820190508181036000830152612bde81612ba2565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c41602183611eb9565b9150612c4c82612be5565b604082019050919050565b60006020820190508181036000830152612c7081612c34565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cd3602283611eb9565b9150612cde82612c77565b604082019050919050565b60006020820190508181036000830152612d0281612cc6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d3f602083611eb9565b9150612d4a82612d09565b602082019050919050565b60006020820190508181036000830152612d6e81612d32565b905091905056fea264697066735822122050d8b4d1509926e842d0cee57c7e45e3575234f26827400383e99d0bc99c0ba364736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de57806395d89b4111610097578063b6b55f2511610071578063b6b55f2514610476578063cf9d0b5f14610492578063dd62ed3e1461049c578063f2fde38b146104cc5761018e565b806395d89b41146103f8578063a457c2d714610416578063a9059cbb146104465761018e565b806370a082311461035c578063715018a61461038c57806379cc679014610396578063853828b6146103b25780638da5cb5b146103bc5780638e7271fa146103da5761018e565b80632e1a7d4d1161014b578063375b3c0a11610125578063375b3c0a146102c157806339509351146102df57806342966c681461030f5780635287ce121461032b5761018e565b80632e1a7d4d1461027d578063313ce56714610299578063372500ab146102b75761018e565b806306fdde0314610193578063095ea7b3146101b157806312e0a053146101e157806318160ddd146102115780631a121d541461022f57806323b872dd1461024d575b600080fd5b61019b6104e8565b6040516101a89190611f3e565b60405180910390f35b6101cb60048036038101906101c69190611ff9565b61057a565b6040516101d89190612054565b60405180910390f35b6101fb60048036038101906101f6919061206f565b61059d565b60405161020891906120ab565b60405180910390f35b610219610661565b60405161022691906120ab565b60405180910390f35b61023761066b565b60405161024491906120ab565b60405180910390f35b610267600480360381019061026291906120c6565b610671565b6040516102749190612054565b60405180910390f35b61029760048036038101906102929190612119565b6106a0565b005b6102a1610837565b6040516102ae9190612162565b60405180910390f35b6102bf610840565b005b6102c9610989565b6040516102d691906120ab565b60405180910390f35b6102f960048036038101906102f49190611ff9565b61098f565b6040516103069190612054565b60405180910390f35b61032960048036038101906103249190612119565b6109c6565b005b6103456004803603810190610340919061206f565b6109da565b60405161035392919061217d565b60405180910390f35b6103766004803603810190610371919061206f565b610a7f565b60405161038391906120ab565b60405180910390f35b610394610ac7565b005b6103b060048036038101906103ab9190611ff9565b610adb565b005b6103ba610afb565b005b6103c4610ce0565b6040516103d191906121b5565b60405180910390f35b6103e2610d0a565b6040516103ef91906120ab565b60405180910390f35b610400610d10565b60405161040d9190611f3e565b60405180910390f35b610430600480360381019061042b9190611ff9565b610da2565b60405161043d9190612054565b60405180910390f35b610460600480360381019061045b9190611ff9565b610e19565b60405161046d9190612054565b60405180910390f35b610490600480360381019061048b9190612119565b610e3c565b005b61049a611116565b005b6104b660048036038101906104b191906121d0565b61133b565b6040516104c391906120ab565b60405180910390f35b6104e660048036038101906104e1919061206f565b6113c2565b005b6060600380546104f79061223f565b80601f01602080910402602001604051908101604052809291908181526020018280546105239061223f565b80156105705780601f1061054557610100808354040283529160200191610570565b820191906000526020600020905b81548152906001019060200180831161055357829003601f168201915b5050505050905090565b600080610585611445565b905061059281858561144d565b600191505092915050565b600042600854600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546105f0919061229f565b116105fe576000905061065c565b42600854600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461064f919061229f565b61065991906122d3565b90505b919050565b6000600254905090565b60085481565b60008061067c611445565b9050610689858285611616565b6106948585856116a2565b60019150509392505050565b6106a8611918565b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154101561072d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072490612379565b60405180910390fd5b600061073833611967565b905081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001600082825461078c91906122d3565b9250508190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555061082b3383611a33565b50610834611b89565b50565b60006012905090565b610848611918565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461089633611967565b6108a0919061229f565b9050600081116108e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dc906123e5565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555061097e3382611a33565b50610987611b89565b565b60075481565b60008061099a611445565b90506109bb8185856109ac858961133b565b6109b6919061229f565b61144d565b600191505092915050565b6109d76109d1611445565b82611b93565b50565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549150600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154610a6e84611967565b610a78919061229f565b9050915091565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610acf611d60565b610ad96000611dde565b565b610aed82610ae7611445565b83611616565b610af78282611b93565b5050565b610b03611918565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90612451565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154610bd633611967565b610be0919061229f565b90506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015490506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555060008183610cc7919061229f565b9050610cd33382611a33565b505050610cde611b89565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b606060048054610d1f9061223f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4b9061223f565b8015610d985780601f10610d6d57610100808354040283529160200191610d98565b820191906000526020600020905b815481529060010190602001808311610d7b57829003601f168201915b5050505050905090565b600080610dad611445565b90506000610dbb828661133b565b905083811015610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df7906124e3565b60405180910390fd5b610e0d828686840361144d565b60019250505092915050565b600080610e24611445565b9050610e318185856116a2565b600191505092915050565b610e44611918565b600754811015610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090612575565b60405180910390fd5b80610e9333610a7f565b1015610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb906125e1565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015403610ff95780600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020181905550611101565b600061100433611967565b905080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002016000828254611058919061229f565b9250508190555081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546110b1919061229f565b9250508190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550505b61110b3382611b93565b611113611b89565b50565b61111e611918565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154116111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a90612451565b60405180910390fd5b60006111ae3361059d565b146111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590612673565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461123c33611967565b611246919061229f565b90506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546112e2919061229f565b9250508190555042600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555050611339611b89565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113ca611d60565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143090612705565b60405180910390fd5b61144281611dde565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390612797565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361152b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152290612829565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161160991906120ab565b60405180910390a3505050565b6000611622848461133b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461169c578181101561168e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168590612895565b60405180910390fd5b61169b848484840361144d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170890612927565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611777906129b9565b60405180910390fd5b61178b838383611ea4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890612a4b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118ff91906120ab565b60405180910390a3611912848484611ea9565b50505050565b60026005540361195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490612ab7565b60405180910390fd5b6002600581905550565b600062989680610e10600654600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015442611a0491906122d3565b611a0e9190612ad7565b611a189190612ad7565b611a229190612b48565b611a2c9190612b48565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990612bc5565b60405180910390fd5b611aae60008383611ea4565b8060026000828254611ac0919061229f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b7191906120ab565b60405180910390a3611b8560008383611ea9565b5050565b6001600581905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf990612c57565b60405180910390fd5b611c0e82600083611ea4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b90612ce9565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d4791906120ab565b60405180910390a3611d5b83600084611ea9565b505050565b611d68611445565b73ffffffffffffffffffffffffffffffffffffffff16611d86610ce0565b73ffffffffffffffffffffffffffffffffffffffff1614611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd390612d55565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ee8578082015181840152602081019050611ecd565b60008484015250505050565b6000601f19601f8301169050919050565b6000611f1082611eae565b611f1a8185611eb9565b9350611f2a818560208601611eca565b611f3381611ef4565b840191505092915050565b60006020820190508181036000830152611f588184611f05565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f9082611f65565b9050919050565b611fa081611f85565b8114611fab57600080fd5b50565b600081359050611fbd81611f97565b92915050565b6000819050919050565b611fd681611fc3565b8114611fe157600080fd5b50565b600081359050611ff381611fcd565b92915050565b600080604083850312156120105761200f611f60565b5b600061201e85828601611fae565b925050602061202f85828601611fe4565b9150509250929050565b60008115159050919050565b61204e81612039565b82525050565b60006020820190506120696000830184612045565b92915050565b60006020828403121561208557612084611f60565b5b600061209384828501611fae565b91505092915050565b6120a581611fc3565b82525050565b60006020820190506120c0600083018461209c565b92915050565b6000806000606084860312156120df576120de611f60565b5b60006120ed86828701611fae565b93505060206120fe86828701611fae565b925050604061210f86828701611fe4565b9150509250925092565b60006020828403121561212f5761212e611f60565b5b600061213d84828501611fe4565b91505092915050565b600060ff82169050919050565b61215c81612146565b82525050565b60006020820190506121776000830184612153565b92915050565b6000604082019050612192600083018561209c565b61219f602083018461209c565b9392505050565b6121af81611f85565b82525050565b60006020820190506121ca60008301846121a6565b92915050565b600080604083850312156121e7576121e6611f60565b5b60006121f585828601611fae565b925050602061220685828601611fae565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061225757607f821691505b60208210810361226a57612269612210565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122aa82611fc3565b91506122b583611fc3565b92508282019050808211156122cd576122cc612270565b5b92915050565b60006122de82611fc3565b91506122e983611fc3565b925082820390508181111561230157612300612270565b5b92915050565b7f43616e2774207769746864726177206d6f7265207468616e20796f752068617660008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6000612363602183611eb9565b915061236e82612307565b604082019050919050565b6000602082019050818103600083015261239281612356565b9050919050565b7f596f752068617665206e6f207265776172647300000000000000000000000000600082015250565b60006123cf601383611eb9565b91506123da82612399565b602082019050919050565b600060208201905081810360008301526123fe816123c2565b9050919050565b7f596f752068617665206e6f206465706f73697400000000000000000000000000600082015250565b600061243b601383611eb9565b915061244682612405565b602082019050919050565b6000602082019050818103600083015261246a8161242e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006124cd602583611eb9565b91506124d882612471565b604082019050919050565b600060208201905081810360008301526124fc816124c0565b9050919050565b7f416d6f756e7420736d616c6c6572207468616e206d696e696d696d756d20646560008201527f706f736974000000000000000000000000000000000000000000000000000000602082015250565b600061255f602583611eb9565b915061256a82612503565b604082019050919050565b6000602082019050818103600083015261258e81612552565b9050919050565b7f43616e2774207374616b65206d6f7265207468616e20796f75206f776e000000600082015250565b60006125cb601d83611eb9565b91506125d682612595565b602082019050919050565b600060208201905081810360008301526125fa816125be565b9050919050565b7f547269656420746f20636f6d706f756e642072657761727320746f6f20736f6f60008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061265d602183611eb9565b915061266882612601565b604082019050919050565b6000602082019050818103600083015261268c81612650565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006126ef602683611eb9565b91506126fa82612693565b604082019050919050565b6000602082019050818103600083015261271e816126e2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612781602483611eb9565b915061278c82612725565b604082019050919050565b600060208201905081810360008301526127b081612774565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612813602283611eb9565b915061281e826127b7565b604082019050919050565b6000602082019050818103600083015261284281612806565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061287f601d83611eb9565b915061288a82612849565b602082019050919050565b600060208201905081810360008301526128ae81612872565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612911602583611eb9565b915061291c826128b5565b604082019050919050565b6000602082019050818103600083015261294081612904565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006129a3602383611eb9565b91506129ae82612947565b604082019050919050565b600060208201905081810360008301526129d281612996565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612a35602683611eb9565b9150612a40826129d9565b604082019050919050565b60006020820190508181036000830152612a6481612a28565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612aa1601f83611eb9565b9150612aac82612a6b565b602082019050919050565b60006020820190508181036000830152612ad081612a94565b9050919050565b6000612ae282611fc3565b9150612aed83611fc3565b9250828202612afb81611fc3565b91508282048414831517612b1257612b11612270565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b5382611fc3565b9150612b5e83611fc3565b925082612b6e57612b6d612b19565b5b828204905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612baf601f83611eb9565b9150612bba82612b79565b602082019050919050565b60006020820190508181036000830152612bde81612ba2565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c41602183611eb9565b9150612c4c82612be5565b604082019050919050565b60006020820190508181036000830152612c7081612c34565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cd3602283611eb9565b9150612cde82612c77565b604082019050919050565b60006020820190508181036000830152612d0281612cc6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d3f602083611eb9565b9150612d4a82612d09565b602082019050919050565b60006020820190508181036000830152612d6e81612d32565b905091905056fea264697066735822122050d8b4d1509926e842d0cee57c7e45e3575234f26827400383e99d0bc99c0ba364736f6c63430008120033

Deployed Bytecode Sourcemap

30299:181:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12330:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14681:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29492:378;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13450:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25509:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15462:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27972:468;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13292:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27543:370;;;:::i;:::-;;25408:45;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16166:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24101:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29090:324;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;13621:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5755:103;;;:::i;:::-;;24511:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28520:478;;;:::i;:::-;;5107:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25309:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12549:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16907:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13954:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26065:808;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26961:537;;;:::i;:::-;;14210:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6013:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12330:100;12384:13;12417:5;12410:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12330:100;:::o;14681:201::-;14764:4;14781:13;14797:12;:10;:12::i;:::-;14781:28;;14820:32;14829:5;14836:7;14845:6;14820:8;:32::i;:::-;14870:4;14863:11;;;14681:201;;;;:::o;29492:378::-;29585:14;29671:15;29655:12;;29621:7;:14;29629:5;29621:14;;;;;;;;;;;;;;;:31;;;:46;;;;:::i;:::-;:65;29617:246;;29710:1;29703:8;;;;29617:246;29836:15;29803:12;;29769:7;:14;29777:5;29769:14;;;;;;;;;;;;;;;:31;;;:46;;;;:::i;:::-;29768:83;;;;:::i;:::-;29744:107;;29492:378;;;;:::o;13450:108::-;13511:7;13538:12;;13531:19;;13450:108;:::o;25509:35::-;;;;:::o;15462:295::-;15593:4;15610:15;15628:12;:10;:12::i;:::-;15610:30;;15651:38;15667:4;15673:7;15682:6;15651:15;:38::i;:::-;15700:27;15710:4;15716:2;15720:6;15700:9;:27::i;:::-;15745:4;15738:11;;;15462:295;;;;;:::o;27972:468::-;2378:21;:19;:21::i;:::-;28095:7:::1;28062;:19;28070:10;28062:19;;;;;;;;;;;;;;;:29;;;:40;;28040:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;28174:16;28193:28;28210:10;28193:16;:28::i;:::-;28174:47;;28265:7;28232;:19;28240:10;28232:19;;;;;;;;;;;;;;;:29;;;:40;;;;;;;:::i;:::-;;;;;;;;28322:15;28283:7;:19;28291:10;28283:19;;;;;;;;;;;;;;;:36;;:54;;;;28387:8;28348:7;:19;28356:10;28348:19;;;;;;;;;;;;;;;:36;;:47;;;;28406:26;28412:10;28424:7;28406:5;:26::i;:::-;28029:411;2422:20:::0;:18;:20::i;:::-;27972:468;:::o;13292:93::-;13350:5;13375:2;13368:9;;13292:93;:::o;27543:370::-;2378:21;:19;:21::i;:::-;27600:15:::1;27662:7;:19;27670:10;27662:19;;;;;;;;;;;;;;;:36;;;27618:28;27635:10;27618:16;:28::i;:::-;:80;;;;:::i;:::-;27600:98;;27727:1;27717:7;:11;27709:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;27802:1;27763:7;:19;27771:10;27763:19;;;;;;;;;;;;;;;:36;;:40;;;;27853:15;27814:7;:19;27822:10;27814:19;;;;;;;;;;;;;;;:36;;:54;;;;27879:26;27885:10;27897:7;27879:5;:26::i;:::-;27589:324;2422:20:::0;:18;:20::i;:::-;27543:370::o;25408:45::-;;;;:::o;16166:238::-;16254:4;16271:13;16287:12;:10;:12::i;:::-;16271:28;;16310:64;16319:5;16326:7;16363:10;16335:25;16345:5;16352:7;16335:9;:25::i;:::-;:38;;;;:::i;:::-;16310:8;:64::i;:::-;16392:4;16385:11;;;16166:238;;;;:::o;24101:91::-;24157:27;24163:12;:10;:12::i;:::-;24177:6;24157:5;:27::i;:::-;24101:91;:::o;29090:324::-;29177:14;29193:16;29236:7;:14;29244:5;29236:14;;;;;;;;;;;;;;;:24;;;29227:33;;29334:7;:19;29342:10;29334:19;;;;;;;;;;;;;;;:36;;;29295:23;29312:5;29295:16;:23::i;:::-;:75;;;;:::i;:::-;29271:99;;29090:324;;;:::o;13621:127::-;13695:7;13722:9;:18;13732:7;13722:18;;;;;;;;;;;;;;;;13715:25;;13621:127;;;:::o;5755:103::-;4993:13;:11;:13::i;:::-;5820:30:::1;5847:1;5820:18;:30::i;:::-;5755:103::o:0;24511:164::-;24588:46;24604:7;24613:12;:10;:12::i;:::-;24627:6;24588:15;:46::i;:::-;24645:22;24651:7;24660:6;24645:5;:22::i;:::-;24511:164;;:::o;28520:478::-;2378:21;:19;:21::i;:::-;28616:1:::1;28584:7;:19;28592:10;28584:19;;;;;;;;;;;;;;;:29;;;:33;28576:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;28652:16;28715:7;:19;28723:10;28715:19;;;;;;;;;;;;;;;:36;;;28671:28;28688:10;28671:16;:28::i;:::-;:80;;;;:::i;:::-;28652:99;;28762:16;28781:7;:19;28789:10;28781:19;;;;;;;;;;;;;;;:29;;;28762:48;;28853:1;28821:7;:19;28829:10;28821:19;;;;;;;;;;;;;;;:29;;:33;;;;28904:1;28865:7;:19;28873:10;28865:19;;;;;;;;;;;;;;;:36;;:40;;;;28916:15;28945:8;28934;:19;;;;:::i;:::-;28916:37;;28964:26;28970:10;28982:7;28964:5;:26::i;:::-;28565:433;;;2422:20:::0;:18;:20::i;:::-;28520:478::o;5107:87::-;5153:7;5180:6;;;;;;;;;;;5173:13;;5107:87;:::o;25309:35::-;;;;:::o;12549:104::-;12605:13;12638:7;12631:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12549:104;:::o;16907:436::-;17000:4;17017:13;17033:12;:10;:12::i;:::-;17017:28;;17056:24;17083:25;17093:5;17100:7;17083:9;:25::i;:::-;17056:52;;17147:15;17127:16;:35;;17119:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;17240:60;17249:5;17256:7;17284:15;17265:16;:34;17240:8;:60::i;:::-;17331:4;17324:11;;;;16907:436;;;;:::o;13954:193::-;14033:4;14050:13;14066:12;:10;:12::i;:::-;14050:28;;14089;14099:5;14106:2;14110:6;14089:9;:28::i;:::-;14135:4;14128:11;;;13954:193;;;;:::o;26065:808::-;2378:21;:19;:21::i;:::-;26151:8:::1;;26140:7;:19;;26132:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26259:7;26234:21;26244:10;26234:9;:21::i;:::-;:32;;26212:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26371:1;26338:7;:19;26346:10;26338:19;;;;;;;;;;;;;;;:29;;;:34:::0;26334:495:::1;;26421:7;26389;:19;26397:10;26389:19;;;;;;;;;;;;;;;:29;;:39;;;;26482:15;26443:7;:19;26451:10;26443:19;;;;;;;;;;;;;;;:36;;:54;;;;26551:1;26512:7;:19;26520:10;26512:19;;;;;;;;;;;;;;;:36;;:40;;;;26334:495;;;26585:15;26603:28;26620:10;26603:16;:28::i;:::-;26585:46;;26686:7;26646;:19;26654:10;26646:19;;;;;;;;;;;;;;;:36;;;:47;;;;;;;:::i;:::-;;;;;;;;26741:7;26708;:19;26716:10;26708:19;;;;;;;;;;;;;;;:29;;;:40;;;;;;;:::i;:::-;;;;;;;;26802:15;26763:7;:19;26771:10;26763:19;;;;;;;;;;;;;;;:36;;:54;;;;26570:259;26334:495;26839:26;26845:10;26857:7;26839:5;:26::i;:::-;2422:20:::0;:18;:20::i;:::-;26065:808;:::o;26961:537::-;2378:21;:19;:21::i;:::-;27058:1:::1;27026:7;:19;27034:10;27026:19;;;;;;;;;;;;;;;:29;;;:33;27018:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;27152:1;27116:32;27137:10;27116:20;:32::i;:::-;:37;27094:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;27225:15;27287:7;:19;27295:10;27287:19;;;;;;;;;;;;;;;:36;;;27243:28;27260:10;27243:16;:28::i;:::-;:80;;;;:::i;:::-;27225:98;;27373:1;27334:7;:19;27342:10;27334:19;;;;;;;;;;;;;;;:36;;:40;;;;27418:7;27385;:19;27393:10;27385:19;;;;;;;;;;;;;;;:29;;;:40;;;;;;;:::i;:::-;;;;;;;;27475:15;27436:7;:19;27444:10;27436:19;;;;;;;;;;;;;;;:36;;:54;;;;27007:491;2422:20:::0;:18;:20::i;:::-;26961:537::o;14210:151::-;14299:7;14326:11;:18;14338:5;14326:18;;;;;;;;;;;;;;;:27;14345:7;14326:27;;;;;;;;;;;;;;;;14319:34;;14210:151;;;;:::o;6013:201::-;4993:13;:11;:13::i;:::-;6122:1:::1;6102:22;;:8;:22;;::::0;6094:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6178:28;6197:8;6178:18;:28::i;:::-;6013:201:::0;:::o;3658:98::-;3711:7;3738:10;3731:17;;3658:98;:::o;20934:380::-;21087:1;21070:19;;:5;:19;;;21062:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21168:1;21149:21;;:7;:21;;;21141:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21252:6;21222:11;:18;21234:5;21222:18;;;;;;;;;;;;;;;:27;21241:7;21222:27;;;;;;;;;;;;;;;:36;;;;21290:7;21274:32;;21283:5;21274:32;;;21299:6;21274:32;;;;;;:::i;:::-;;;;;;;;20934:380;;;:::o;21605:453::-;21740:24;21767:25;21777:5;21784:7;21767:9;:25::i;:::-;21740:52;;21827:17;21807:16;:37;21803:248;;21889:6;21869:16;:26;;21861:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21973:51;21982:5;21989:7;22017:6;21998:16;:25;21973:8;:51::i;:::-;21803:248;21729:329;21605:453;;;:::o;17813:840::-;17960:1;17944:18;;:4;:18;;;17936:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18037:1;18023:16;;:2;:16;;;18015:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;18092:38;18113:4;18119:2;18123:6;18092:20;:38::i;:::-;18143:19;18165:9;:15;18175:4;18165:15;;;;;;;;;;;;;;;;18143:37;;18214:6;18199:11;:21;;18191:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;18331:6;18317:11;:20;18299:9;:15;18309:4;18299:15;;;;;;;;;;;;;;;:38;;;;18534:6;18517:9;:13;18527:2;18517:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;18584:2;18569:26;;18578:4;18569:26;;;18588:6;18569:26;;;;;;:::i;:::-;;;;;;;;18608:37;18628:4;18634:2;18638:6;18608:19;:37::i;:::-;17925:728;17813:840;;;:::o;2458:293::-;1860:1;2592:7;;:19;2584:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1860:1;2725:7;:18;;;;2458:293::o;29946:279::-;30039:15;30208:8;30200:4;30182:14;;30152:7;:16;30160:7;30152:16;;;;;;;;;;;;;;;:26;;;30102:7;:16;30110:7;30102:16;;;;;;;;;;;;;;;:33;;;30084:15;:51;;;;:::i;:::-;30083:95;;;;:::i;:::-;30082:114;;;;:::i;:::-;30081:123;;;;:::i;:::-;30080:136;;;;:::i;:::-;30072:145;;29946:279;;;:::o;18940:548::-;19043:1;19024:21;;:7;:21;;;19016:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;19094:49;19123:1;19127:7;19136:6;19094:20;:49::i;:::-;19172:6;19156:12;;:22;;;;;;;:::i;:::-;;;;;;;;19349:6;19327:9;:18;19337:7;19327:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;19403:7;19382:37;;19399:1;19382:37;;;19412:6;19382:37;;;;;;:::i;:::-;;;;;;;;19432:48;19460:1;19464:7;19473:6;19432:19;:48::i;:::-;18940:548;;:::o;2759:213::-;1816:1;2942:7;:22;;;;2759:213::o;19821:675::-;19924:1;19905:21;;:7;:21;;;19897:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19977:49;19998:7;20015:1;20019:6;19977:20;:49::i;:::-;20039:22;20064:9;:18;20074:7;20064:18;;;;;;;;;;;;;;;;20039:43;;20119:6;20101:14;:24;;20093:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20238:6;20221:14;:23;20200:9;:18;20210:7;20200:18;;;;;;;;;;;;;;;:44;;;;20355:6;20339:12;;:22;;;;;;;;;;;20416:1;20390:37;;20399:7;20390:37;;;20420:6;20390:37;;;;;;:::i;:::-;;;;;;;;20440:48;20460:7;20477:1;20481:6;20440:19;:48::i;:::-;19886:610;19821:675;;:::o;5272:132::-;5347:12;:10;:12::i;:::-;5336:23;;:7;:5;:7::i;:::-;:23;;;5328:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5272:132::o;6374:191::-;6448:16;6467:6;;;;;;;;;;;6448:25;;6493:8;6484:6;;:17;;;;;;;;;;;;;;;;;;6548:8;6517:40;;6538:8;6517:40;;;;;;;;;;;;6437:128;6374:191;:::o;22658:125::-;;;;:::o;23387: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:224::-;10895:34;10891:1;10883:6;10879:14;10872:58;10964:7;10959:2;10951:6;10947:15;10940:32;10755:224;:::o;10985:366::-;11127:3;11148:67;11212:2;11207:3;11148:67;:::i;:::-;11141:74;;11224:93;11313:3;11224:93;:::i;:::-;11342:2;11337:3;11333:12;11326:19;;10985:366;;;:::o;11357:419::-;11523:4;11561:2;11550:9;11546:18;11538:26;;11610:9;11604:4;11600:20;11596:1;11585:9;11581:17;11574:47;11638:131;11764:4;11638:131;:::i;:::-;11630:139;;11357:419;;;:::o;11782:224::-;11922:34;11918:1;11910:6;11906:14;11899:58;11991:7;11986:2;11978:6;11974:15;11967:32;11782:224;:::o;12012:366::-;12154:3;12175:67;12239:2;12234:3;12175:67;:::i;:::-;12168:74;;12251:93;12340:3;12251:93;:::i;:::-;12369:2;12364:3;12360:12;12353:19;;12012:366;;;:::o;12384:419::-;12550:4;12588:2;12577:9;12573:18;12565:26;;12637:9;12631:4;12627:20;12623:1;12612:9;12608:17;12601:47;12665:131;12791:4;12665:131;:::i;:::-;12657:139;;12384:419;;;:::o;12809:179::-;12949:31;12945:1;12937:6;12933:14;12926:55;12809:179;:::o;12994:366::-;13136:3;13157:67;13221:2;13216:3;13157:67;:::i;:::-;13150:74;;13233:93;13322:3;13233:93;:::i;:::-;13351:2;13346:3;13342:12;13335:19;;12994:366;;;:::o;13366:419::-;13532:4;13570:2;13559:9;13555:18;13547:26;;13619:9;13613:4;13609:20;13605:1;13594:9;13590:17;13583:47;13647:131;13773:4;13647:131;:::i;:::-;13639:139;;13366:419;;;:::o;13791:220::-;13931:34;13927:1;13919:6;13915:14;13908:58;14000:3;13995:2;13987:6;13983:15;13976:28;13791:220;:::o;14017:366::-;14159:3;14180:67;14244:2;14239:3;14180:67;:::i;:::-;14173:74;;14256:93;14345:3;14256:93;:::i;:::-;14374:2;14369:3;14365:12;14358:19;;14017:366;;;:::o;14389:419::-;14555:4;14593:2;14582:9;14578:18;14570:26;;14642:9;14636:4;14632:20;14628:1;14617:9;14613:17;14606:47;14670:131;14796:4;14670:131;:::i;:::-;14662:139;;14389:419;;;:::o;14814:225::-;14954:34;14950:1;14942:6;14938:14;14931:58;15023:8;15018:2;15010:6;15006:15;14999:33;14814:225;:::o;15045:366::-;15187:3;15208:67;15272:2;15267:3;15208:67;:::i;:::-;15201:74;;15284:93;15373:3;15284:93;:::i;:::-;15402:2;15397:3;15393:12;15386:19;;15045:366;;;:::o;15417:419::-;15583:4;15621:2;15610:9;15606:18;15598:26;;15670:9;15664:4;15660:20;15656:1;15645:9;15641:17;15634:47;15698:131;15824:4;15698:131;:::i;:::-;15690:139;;15417:419;;;:::o;15842:223::-;15982:34;15978:1;15970:6;15966:14;15959:58;16051:6;16046:2;16038:6;16034:15;16027:31;15842:223;:::o;16071:366::-;16213:3;16234:67;16298:2;16293:3;16234:67;:::i;:::-;16227:74;;16310:93;16399:3;16310:93;:::i;:::-;16428:2;16423:3;16419:12;16412:19;;16071:366;;;:::o;16443:419::-;16609:4;16647:2;16636:9;16632:18;16624:26;;16696:9;16690:4;16686:20;16682:1;16671:9;16667:17;16660:47;16724:131;16850:4;16724:131;:::i;:::-;16716:139;;16443:419;;;:::o;16868:221::-;17008:34;17004:1;16996:6;16992:14;16985:58;17077:4;17072:2;17064:6;17060:15;17053:29;16868:221;:::o;17095:366::-;17237:3;17258:67;17322:2;17317:3;17258:67;:::i;:::-;17251:74;;17334:93;17423:3;17334:93;:::i;:::-;17452:2;17447:3;17443:12;17436:19;;17095:366;;;:::o;17467:419::-;17633:4;17671:2;17660:9;17656:18;17648:26;;17720:9;17714:4;17710:20;17706:1;17695:9;17691:17;17684:47;17748:131;17874:4;17748:131;:::i;:::-;17740:139;;17467:419;;;:::o;17892:179::-;18032:31;18028:1;18020:6;18016:14;18009:55;17892:179;:::o;18077:366::-;18219:3;18240:67;18304:2;18299:3;18240:67;:::i;:::-;18233:74;;18316:93;18405:3;18316:93;:::i;:::-;18434:2;18429:3;18425:12;18418:19;;18077:366;;;:::o;18449:419::-;18615:4;18653:2;18642:9;18638:18;18630:26;;18702:9;18696:4;18692:20;18688:1;18677:9;18673:17;18666:47;18730:131;18856:4;18730:131;:::i;:::-;18722:139;;18449:419;;;:::o;18874:224::-;19014:34;19010:1;19002:6;18998:14;18991:58;19083:7;19078:2;19070:6;19066:15;19059:32;18874:224;:::o;19104:366::-;19246:3;19267:67;19331:2;19326:3;19267:67;:::i;:::-;19260:74;;19343:93;19432:3;19343:93;:::i;:::-;19461:2;19456:3;19452:12;19445:19;;19104:366;;;:::o;19476:419::-;19642:4;19680:2;19669:9;19665:18;19657:26;;19729:9;19723:4;19719:20;19715:1;19704:9;19700:17;19693:47;19757:131;19883:4;19757:131;:::i;:::-;19749:139;;19476:419;;;:::o;19901:222::-;20041:34;20037:1;20029:6;20025:14;20018:58;20110:5;20105:2;20097:6;20093:15;20086:30;19901:222;:::o;20129:366::-;20271:3;20292:67;20356:2;20351:3;20292:67;:::i;:::-;20285:74;;20368:93;20457:3;20368:93;:::i;:::-;20486:2;20481:3;20477:12;20470:19;;20129:366;;;:::o;20501:419::-;20667:4;20705:2;20694:9;20690:18;20682:26;;20754:9;20748:4;20744:20;20740:1;20729:9;20725:17;20718:47;20782:131;20908:4;20782:131;:::i;:::-;20774:139;;20501:419;;;:::o;20926:225::-;21066:34;21062:1;21054:6;21050:14;21043:58;21135:8;21130:2;21122:6;21118:15;21111:33;20926:225;:::o;21157:366::-;21299:3;21320:67;21384:2;21379:3;21320:67;:::i;:::-;21313:74;;21396:93;21485:3;21396:93;:::i;:::-;21514:2;21509:3;21505:12;21498:19;;21157:366;;;:::o;21529:419::-;21695:4;21733:2;21722:9;21718:18;21710:26;;21782:9;21776:4;21772:20;21768:1;21757:9;21753:17;21746:47;21810:131;21936:4;21810:131;:::i;:::-;21802:139;;21529:419;;;:::o;21954:181::-;22094:33;22090:1;22082:6;22078:14;22071:57;21954:181;:::o;22141:366::-;22283:3;22304:67;22368:2;22363:3;22304:67;:::i;:::-;22297:74;;22380:93;22469:3;22380:93;:::i;:::-;22498:2;22493:3;22489:12;22482:19;;22141:366;;;:::o;22513:419::-;22679:4;22717:2;22706:9;22702:18;22694:26;;22766:9;22760:4;22756:20;22752:1;22741:9;22737:17;22730:47;22794:131;22920:4;22794:131;:::i;:::-;22786:139;;22513:419;;;:::o;22938:410::-;22978:7;23001:20;23019:1;23001:20;:::i;:::-;22996:25;;23035:20;23053:1;23035:20;:::i;:::-;23030:25;;23090:1;23087;23083:9;23112:30;23130:11;23112:30;:::i;:::-;23101:41;;23291:1;23282:7;23278:15;23275:1;23272:22;23252:1;23245:9;23225:83;23202:139;;23321:18;;:::i;:::-;23202:139;22986:362;22938:410;;;;:::o;23354:180::-;23402:77;23399:1;23392:88;23499:4;23496:1;23489:15;23523:4;23520:1;23513:15;23540:185;23580:1;23597:20;23615:1;23597:20;:::i;:::-;23592:25;;23631:20;23649:1;23631:20;:::i;:::-;23626:25;;23670:1;23660:35;;23675:18;;:::i;:::-;23660:35;23717:1;23714;23710:9;23705:14;;23540:185;;;;:::o;23731:181::-;23871:33;23867:1;23859:6;23855:14;23848:57;23731:181;:::o;23918:366::-;24060:3;24081:67;24145:2;24140:3;24081:67;:::i;:::-;24074:74;;24157:93;24246:3;24157:93;:::i;:::-;24275:2;24270:3;24266:12;24259:19;;23918:366;;;:::o;24290:419::-;24456:4;24494:2;24483:9;24479:18;24471:26;;24543:9;24537:4;24533:20;24529:1;24518:9;24514:17;24507:47;24571:131;24697:4;24571:131;:::i;:::-;24563:139;;24290:419;;;:::o;24715:220::-;24855:34;24851:1;24843:6;24839:14;24832:58;24924:3;24919:2;24911:6;24907:15;24900:28;24715:220;:::o;24941:366::-;25083:3;25104:67;25168:2;25163:3;25104:67;:::i;:::-;25097:74;;25180:93;25269:3;25180:93;:::i;:::-;25298:2;25293:3;25289:12;25282:19;;24941:366;;;:::o;25313:419::-;25479:4;25517:2;25506:9;25502:18;25494:26;;25566:9;25560:4;25556:20;25552:1;25541:9;25537:17;25530:47;25594:131;25720:4;25594:131;:::i;:::-;25586:139;;25313:419;;;:::o;25738:221::-;25878:34;25874:1;25866:6;25862:14;25855:58;25947:4;25942:2;25934:6;25930:15;25923:29;25738:221;:::o;25965:366::-;26107:3;26128:67;26192:2;26187:3;26128:67;:::i;:::-;26121:74;;26204:93;26293:3;26204:93;:::i;:::-;26322:2;26317:3;26313:12;26306:19;;25965:366;;;:::o;26337:419::-;26503:4;26541:2;26530:9;26526:18;26518:26;;26590:9;26584:4;26580:20;26576:1;26565:9;26561:17;26554:47;26618:131;26744:4;26618:131;:::i;:::-;26610:139;;26337:419;;;:::o;26762:182::-;26902:34;26898:1;26890:6;26886:14;26879:58;26762:182;:::o;26950:366::-;27092:3;27113:67;27177:2;27172:3;27113:67;:::i;:::-;27106:74;;27189:93;27278:3;27189:93;:::i;:::-;27307:2;27302:3;27298:12;27291:19;;26950:366;;;:::o;27322:419::-;27488:4;27526:2;27515:9;27511:18;27503:26;;27575:9;27569:4;27565:20;27561:1;27550:9;27546:17;27539:47;27603:131;27729:4;27603:131;:::i;:::-;27595:139;;27322:419;;;:::o

Swarm Source

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