ETH Price: $2,632.82 (+6.67%)

Token

Wrapped BSTY (WBSTY)
 

Overview

Max Total Supply

5,000,000 WBSTY

Holders

64

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1.853563437319215717 WBSTY

Value
$0.00
0x6dd88962e9ce2865e54b06c044e7efbb06f166ee
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:
WrappedBSTY

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-24
*/

// Sources flattened with hardhat v2.12.7 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]


// 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/[email protected]

// SPDX-License-Identifier: MIT
// 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/interfaces/[email protected]


// OpenZeppelin Contracts (last updated v4.7.0) (interfaces/IERC3156FlashBorrower.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC3156 FlashBorrower, as defined in
 * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
 *
 * _Available since v4.1._
 */
interface IERC3156FlashBorrower {
    /**
     * @dev Receive a flash loan.
     * @param initiator The initiator of the loan.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @param fee The additional amount of tokens to repay.
     * @param data Arbitrary data structure, intended to contain user-defined parameters.
     * @return The keccak256 hash of "IERC3156FlashBorrower.onFlashLoan"
     */
    function onFlashLoan(
        address initiator,
        address token,
        uint256 amount,
        uint256 fee,
        bytes calldata data
    ) external returns (bytes32);
}


// File @openzeppelin/contracts/interfaces/[email protected]


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC3156FlashLender.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC3156 FlashLender, as defined in
 * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
 *
 * _Available since v4.1._
 */
interface IERC3156FlashLender {
    /**
     * @dev The amount of currency available to be lended.
     * @param token The loan currency.
     * @return The amount of `token` that can be borrowed.
     */
    function maxFlashLoan(address token) external view returns (uint256);

    /**
     * @dev The fee to be charged for a given loan.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @return The amount of `token` to be charged for the loan, on top of the returned principal.
     */
    function flashFee(address token, uint256 amount) external view returns (uint256);

    /**
     * @dev Initiate a flash loan.
     * @param receiver The receiver of the tokens in the loan, and the receiver of the callback.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @param data Arbitrary data structure, intended to contain user-defined parameters.
     */
    function flashLoan(
        IERC3156FlashBorrower receiver,
        address token,
        uint256 amount,
        bytes calldata data
    ) external returns (bool);
}


// File @openzeppelin/contracts/security/[email protected]


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

pragma solidity ^0.8.0;

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

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

    bool private _paused;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// 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/[email protected]


// 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/[email protected]


// 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/[email protected]


// 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 @openzeppelin/contracts/token/ERC20/extensions/[email protected]


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

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the ERC3156 Flash loans extension, as defined in
 * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
 *
 * Adds the {flashLoan} method, which provides flash loan support at the token
 * level. By default there is no fee, but this can be changed by overriding {flashFee}.
 *
 * _Available since v4.1._
 */
abstract contract ERC20FlashMint is ERC20, IERC3156FlashLender {
    bytes32 private constant _RETURN_VALUE = keccak256("ERC3156FlashBorrower.onFlashLoan");

    /**
     * @dev Returns the maximum amount of tokens available for loan.
     * @param token The address of the token that is requested.
     * @return The amount of token that can be loaned.
     */
    function maxFlashLoan(address token) public view virtual override returns (uint256) {
        return token == address(this) ? type(uint256).max - ERC20.totalSupply() : 0;
    }

    /**
     * @dev Returns the fee applied when doing flash loans. This function calls
     * the {_flashFee} function which returns the fee applied when doing flash
     * loans.
     * @param token The token to be flash loaned.
     * @param amount The amount of tokens to be loaned.
     * @return The fees applied to the corresponding flash loan.
     */
    function flashFee(address token, uint256 amount) public view virtual override returns (uint256) {
        require(token == address(this), "ERC20FlashMint: wrong token");
        return _flashFee(token, amount);
    }

    /**
     * @dev Returns the fee applied when doing flash loans. By default this
     * implementation has 0 fees. This function can be overloaded to make
     * the flash loan mechanism deflationary.
     * @param token The token to be flash loaned.
     * @param amount The amount of tokens to be loaned.
     * @return The fees applied to the corresponding flash loan.
     */
    function _flashFee(address token, uint256 amount) internal view virtual returns (uint256) {
        // silence warning about unused variable without the addition of bytecode.
        token;
        amount;
        return 0;
    }

    /**
     * @dev Returns the receiver address of the flash fee. By default this
     * implementation returns the address(0) which means the fee amount will be burnt.
     * This function can be overloaded to change the fee receiver.
     * @return The address for which the flash fee will be sent to.
     */
    function _flashFeeReceiver() internal view virtual returns (address) {
        return address(0);
    }

    /**
     * @dev Performs a flash loan. New tokens are minted and sent to the
     * `receiver`, who is required to implement the {IERC3156FlashBorrower}
     * interface. By the end of the flash loan, the receiver is expected to own
     * amount + fee tokens and have them approved back to the token contract itself so
     * they can be burned.
     * @param receiver The receiver of the flash loan. Should implement the
     * {IERC3156FlashBorrower-onFlashLoan} interface.
     * @param token The token to be flash loaned. Only `address(this)` is
     * supported.
     * @param amount The amount of tokens to be loaned.
     * @param data An arbitrary datafield that is passed to the receiver.
     * @return `true` if the flash loan was successful.
     */
    // This function can reenter, but it doesn't pose a risk because it always preserves the property that the amount
    // minted at the beginning is always recovered and burned at the end, or else the entire function will revert.
    // slither-disable-next-line reentrancy-no-eth
    function flashLoan(
        IERC3156FlashBorrower receiver,
        address token,
        uint256 amount,
        bytes calldata data
    ) public virtual override returns (bool) {
        require(amount <= maxFlashLoan(token), "ERC20FlashMint: amount exceeds maxFlashLoan");
        uint256 fee = flashFee(token, amount);
        _mint(address(receiver), amount);
        require(
            receiver.onFlashLoan(msg.sender, token, amount, fee, data) == _RETURN_VALUE,
            "ERC20FlashMint: invalid return value"
        );
        address flashFeeReceiver = _flashFeeReceiver();
        _spendAllowance(address(receiver), address(this), amount + fee);
        if (fee == 0 || flashFeeReceiver == address(0)) {
            _burn(address(receiver), amount + fee);
        } else {
            _burn(address(receiver), amount);
            _transfer(address(receiver), flashFeeReceiver, fee);
        }
        return true;
    }
}


// File contracts/WBTSY.sol


pragma solidity ^0.8.9;





/// @custom:security-contact Security@
contract WrappedBSTY is ERC20, ERC20Burnable, Pausable, Ownable, ERC20FlashMint {
    constructor() ERC20("Wrapped BSTY", "WBSTY") {
        _mint(msg.sender, 500000 * 10 ** decimals());
    }

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

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

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

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


// File contracts/Lock.sol


pragma solidity ^0.8.9;

// Uncomment this line to use console.log
// import "hardhat/console.sol";

contract Lock {
    uint public unlockTime;
    address payable public owner;

    event Withdrawal(uint amount, uint when);

    constructor(uint _unlockTime) payable {
        require(
            block.timestamp < _unlockTime,
            "Unlock time should be in the future"
        );

        unlockTime = _unlockTime;
        owner = payable(msg.sender);
    }

    function withdraw() public {
        // Uncomment this line, and the import of "hardhat/console.sol", to print a log in your terminal
        // console.log("Unlock time is %o and block timestamp is %o", unlockTime, block.timestamp);

        require(block.timestamp >= unlockTime, "You can't withdraw yet");
        require(msg.sender == owner, "You aren't the owner");

        emit Withdrawal(address(this).balance, block.timestamp);

        owner.transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"flashFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC3156FlashBorrower","name":"receiver","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"flashLoan","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"maxFlashLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600c81526020017f57726170706564204253545900000000000000000000000000000000000000008152506040518060400160405280600581526020017f574253545900000000000000000000000000000000000000000000000000000081525081600390816200008f919062000685565b508060049081620000a1919062000685565b5050506000600560006101000a81548160ff021916908315150217905550620000df620000d36200012460201b60201c565b6200012c60201b60201c565b6200011e33620000f4620001f260201b60201c565b600a620001029190620008fc565b6207a1206200011291906200094d565b620001fb60201b60201c565b62000af6565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026490620009f9565b60405180910390fd5b62000281600083836200036860201b60201c565b806002600082825462000295919062000a1b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000348919062000a67565b60405180910390a362000364600083836200039560201b60201c565b5050565b620003786200039a60201b60201c565b62000390838383620003ef60201b62000bc91760201c565b505050565b505050565b620003aa620003f460201b60201c565b15620003ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e49062000ad4565b60405180910390fd5b565b505050565b6000600560009054906101000a900460ff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200048d57607f821691505b602082108103620004a357620004a262000445565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200050d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004ce565b620005198683620004ce565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000566620005606200055a8462000531565b6200053b565b62000531565b9050919050565b6000819050919050565b620005828362000545565b6200059a62000591826200056d565b848454620004db565b825550505050565b600090565b620005b1620005a2565b620005be81848462000577565b505050565b5b81811015620005e657620005da600082620005a7565b600181019050620005c4565b5050565b601f8211156200063557620005ff81620004a9565b6200060a84620004be565b810160208510156200061a578190505b620006326200062985620004be565b830182620005c3565b50505b505050565b600082821c905092915050565b60006200065a600019846008026200063a565b1980831691505092915050565b600062000675838362000647565b9150826002028217905092915050565b62000690826200040b565b67ffffffffffffffff811115620006ac57620006ab62000416565b5b620006b8825462000474565b620006c5828285620005ea565b600060209050601f831160018114620006fd5760008415620006e8578287015190505b620006f4858262000667565b86555062000764565b601f1984166200070d86620004a9565b60005b82811015620007375784890151825560018201915060208501945060208101905062000710565b8683101562000757578489015162000753601f89168262000647565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620007fa57808604811115620007d257620007d16200076c565b5b6001851615620007e25780820291505b8081029050620007f2856200079b565b9450620007b2565b94509492505050565b600082620008155760019050620008e8565b81620008255760009050620008e8565b81600181146200083e576002811462000849576200087f565b6001915050620008e8565b60ff8411156200085e576200085d6200076c565b5b8360020a9150848211156200087857620008776200076c565b5b50620008e8565b5060208310610133831016604e8410600b8410161715620008b95782820a905083811115620008b357620008b26200076c565b5b620008e8565b620008c88484846001620007a8565b92509050818404811115620008e257620008e16200076c565b5b81810290505b9392505050565b600060ff82169050919050565b6000620009098262000531565b91506200091683620008ef565b9250620009457fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000803565b905092915050565b60006200095a8262000531565b9150620009678362000531565b9250828202620009778162000531565b915082820484148315176200099157620009906200076c565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620009e1601f8362000998565b9150620009ee82620009a9565b602082019050919050565b6000602082019050818103600083015262000a1481620009d2565b9050919050565b600062000a288262000531565b915062000a358362000531565b925082820190508082111562000a505762000a4f6200076c565b5b92915050565b62000a618162000531565b82525050565b600060208201905062000a7e600083018462000a56565b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000abc60108362000998565b915062000ac98262000a84565b602082019050919050565b6000602082019050818103600083015262000aef8162000aad565b9050919050565b6125fb8062000b066000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063613255ab116100c357806395d89b411161007c57806395d89b411461037a578063a457c2d714610398578063a9059cbb146103c8578063d9d98ce4146103f8578063dd62ed3e14610428578063f2fde38b146104585761014d565b8063613255ab146102cc57806370a08231146102fc578063715018a61461032c57806379cc6790146103365780638456cb59146103525780638da5cb5b1461035c5761014d565b80633950935111610115578063395093511461020c5780633f4ba83a1461023c57806340c10f191461024657806342966c68146102625780635c975abb1461027e5780635cffe9de1461029c5761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806323b872dd146101be578063313ce567146101ee575b600080fd5b61015a610474565b604051610167919061171b565b60405180910390f35b61018a600480360381019061018591906117db565b610506565b6040516101979190611836565b60405180910390f35b6101a8610529565b6040516101b59190611860565b60405180910390f35b6101d860048036038101906101d3919061187b565b610533565b6040516101e59190611836565b60405180910390f35b6101f6610562565b60405161020391906118ea565b60405180910390f35b610226600480360381019061022191906117db565b61056b565b6040516102339190611836565b60405180910390f35b6102446105a2565b005b610260600480360381019061025b91906117db565b6105b4565b005b61027c60048036038101906102779190611905565b6105ca565b005b6102866105de565b6040516102939190611836565b60405180910390f35b6102b660048036038101906102b191906119d5565b6105f5565b6040516102c39190611836565b60405180910390f35b6102e660048036038101906102e19190611a5d565b6107e2565b6040516102f39190611860565b60405180910390f35b61031660048036038101906103119190611a5d565b610859565b6040516103239190611860565b60405180910390f35b6103346108a1565b005b610350600480360381019061034b91906117db565b6108b5565b005b61035a6108d5565b005b6103646108e7565b6040516103719190611a99565b60405180910390f35b610382610911565b60405161038f919061171b565b60405180910390f35b6103b260048036038101906103ad91906117db565b6109a3565b6040516103bf9190611836565b60405180910390f35b6103e260048036038101906103dd91906117db565b610a1a565b6040516103ef9190611836565b60405180910390f35b610412600480360381019061040d91906117db565b610a3d565b60405161041f9190611860565b60405180910390f35b610442600480360381019061043d9190611ab4565b610abf565b60405161044f9190611860565b60405180910390f35b610472600480360381019061046d9190611a5d565b610b46565b005b60606003805461048390611b23565b80601f01602080910402602001604051908101604052809291908181526020018280546104af90611b23565b80156104fc5780601f106104d1576101008083540402835291602001916104fc565b820191906000526020600020905b8154815290600101906020018083116104df57829003601f168201915b5050505050905090565b600080610511610bce565b905061051e818585610bd6565b600191505092915050565b6000600254905090565b60008061053e610bce565b905061054b858285610d9f565b610556858585610e2b565b60019150509392505050565b60006012905090565b600080610576610bce565b90506105978185856105888589610abf565b6105929190611b83565b610bd6565b600191505092915050565b6105aa6110a1565b6105b261111f565b565b6105bc6110a1565b6105c68282611182565b5050565b6105db6105d5610bce565b826112d8565b50565b6000600560009054906101000a900460ff16905090565b6000610600856107e2565b841115610642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063990611c29565b60405180910390fd5b600061064e8686610a3d565b905061065a8786611182565b7f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd98773ffffffffffffffffffffffffffffffffffffffff166323e30c8b338989868a8a6040518763ffffffff1660e01b81526004016106be96959493929190611c96565b6020604051808303816000875af11580156106dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107019190611d28565b14610741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073890611dc7565b60405180910390fd5b600061074b6114a5565b90506107638830848961075e9190611b83565b610d9f565b600082148061079e5750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b156107bd576107b88883886107b39190611b83565b6112d8565b6107d3565b6107c788876112d8565b6107d2888284610e2b565b5b60019250505095945050505050565b60003073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461081e576000610852565b610826610529565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6108519190611de7565b5b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108a96110a1565b6108b360006114aa565b565b6108c7826108c1610bce565b83610d9f565b6108d182826112d8565b5050565b6108dd6110a1565b6108e5611570565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461092090611b23565b80601f016020809104026020016040519081016040528092919081815260200182805461094c90611b23565b80156109995780601f1061096e57610100808354040283529160200191610999565b820191906000526020600020905b81548152906001019060200180831161097c57829003601f168201915b5050505050905090565b6000806109ae610bce565b905060006109bc8286610abf565b905083811015610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890611e8d565b60405180910390fd5b610a0e8286868403610bd6565b60019250505092915050565b600080610a25610bce565b9050610a32818585610e2b565b600191505092915050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490611ef9565b60405180910390fd5b610ab783836115d3565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b4e6110a1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490611f8b565b60405180910390fd5b610bc6816114aa565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c9061201d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab906120af565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d929190611860565b60405180910390a3505050565b6000610dab8484610abf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e255781811015610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e9061211b565b60405180910390fd5b610e248484848403610bd6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e91906121ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f009061223f565b60405180910390fd5b610f148383836115db565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f91906122d1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110889190611860565b60405180910390a361109b8484846115f3565b50505050565b6110a9610bce565b73ffffffffffffffffffffffffffffffffffffffff166110c76108e7565b73ffffffffffffffffffffffffffffffffffffffff161461111d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111149061233d565b60405180910390fd5b565b6111276115f8565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61116b610bce565b6040516111789190611a99565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e8906123a9565b60405180910390fd5b6111fd600083836115db565b806002600082825461120f9190611b83565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112c09190611860565b60405180910390a36112d4600083836115f3565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e9061243b565b60405180910390fd5b611353826000836115db565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d0906124cd565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161148c9190611860565b60405180910390a36114a0836000846115f3565b505050565b600090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611578611641565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115bc610bce565b6040516115c99190611a99565b60405180910390a1565b600092915050565b6115e3611641565b6115ee838383610bc9565b505050565b505050565b6116006105de565b61163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163690612539565b60405180910390fd5b565b6116496105de565b15611689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611680906125a5565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b838110156116c55780820151818401526020810190506116aa565b60008484015250505050565b6000601f19601f8301169050919050565b60006116ed8261168b565b6116f78185611696565b93506117078185602086016116a7565b611710816116d1565b840191505092915050565b6000602082019050818103600083015261173581846116e2565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061177282611747565b9050919050565b61178281611767565b811461178d57600080fd5b50565b60008135905061179f81611779565b92915050565b6000819050919050565b6117b8816117a5565b81146117c357600080fd5b50565b6000813590506117d5816117af565b92915050565b600080604083850312156117f2576117f161173d565b5b600061180085828601611790565b9250506020611811858286016117c6565b9150509250929050565b60008115159050919050565b6118308161181b565b82525050565b600060208201905061184b6000830184611827565b92915050565b61185a816117a5565b82525050565b60006020820190506118756000830184611851565b92915050565b6000806000606084860312156118945761189361173d565b5b60006118a286828701611790565b93505060206118b386828701611790565b92505060406118c4868287016117c6565b9150509250925092565b600060ff82169050919050565b6118e4816118ce565b82525050565b60006020820190506118ff60008301846118db565b92915050565b60006020828403121561191b5761191a61173d565b5b6000611929848285016117c6565b91505092915050565b600061193d82611767565b9050919050565b61194d81611932565b811461195857600080fd5b50565b60008135905061196a81611944565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261199557611994611970565b5b8235905067ffffffffffffffff8111156119b2576119b1611975565b5b6020830191508360018202830111156119ce576119cd61197a565b5b9250929050565b6000806000806000608086880312156119f1576119f061173d565b5b60006119ff8882890161195b565b9550506020611a1088828901611790565b9450506040611a21888289016117c6565b935050606086013567ffffffffffffffff811115611a4257611a41611742565b5b611a4e8882890161197f565b92509250509295509295909350565b600060208284031215611a7357611a7261173d565b5b6000611a8184828501611790565b91505092915050565b611a9381611767565b82525050565b6000602082019050611aae6000830184611a8a565b92915050565b60008060408385031215611acb57611aca61173d565b5b6000611ad985828601611790565b9250506020611aea85828601611790565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b3b57607f821691505b602082108103611b4e57611b4d611af4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b8e826117a5565b9150611b99836117a5565b9250828201905080821115611bb157611bb0611b54565b5b92915050565b7f4552433230466c6173684d696e743a20616d6f756e742065786365656473206d60008201527f6178466c6173684c6f616e000000000000000000000000000000000000000000602082015250565b6000611c13602b83611696565b9150611c1e82611bb7565b604082019050919050565b60006020820190508181036000830152611c4281611c06565b9050919050565b600082825260208201905092915050565b82818337600083830152505050565b6000611c758385611c49565b9350611c82838584611c5a565b611c8b836116d1565b840190509392505050565b600060a082019050611cab6000830189611a8a565b611cb86020830188611a8a565b611cc56040830187611851565b611cd26060830186611851565b8181036080830152611ce5818486611c69565b9050979650505050505050565b6000819050919050565b611d0581611cf2565b8114611d1057600080fd5b50565b600081519050611d2281611cfc565b92915050565b600060208284031215611d3e57611d3d61173d565b5b6000611d4c84828501611d13565b91505092915050565b7f4552433230466c6173684d696e743a20696e76616c69642072657475726e207660008201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b6000611db1602483611696565b9150611dbc82611d55565b604082019050919050565b60006020820190508181036000830152611de081611da4565b9050919050565b6000611df2826117a5565b9150611dfd836117a5565b9250828203905081811115611e1557611e14611b54565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e77602583611696565b9150611e8282611e1b565b604082019050919050565b60006020820190508181036000830152611ea681611e6a565b9050919050565b7f4552433230466c6173684d696e743a2077726f6e6720746f6b656e0000000000600082015250565b6000611ee3601b83611696565b9150611eee82611ead565b602082019050919050565b60006020820190508181036000830152611f1281611ed6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611f75602683611696565b9150611f8082611f19565b604082019050919050565b60006020820190508181036000830152611fa481611f68565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612007602483611696565b915061201282611fab565b604082019050919050565b6000602082019050818103600083015261203681611ffa565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612099602283611696565b91506120a48261203d565b604082019050919050565b600060208201905081810360008301526120c88161208c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612105601d83611696565b9150612110826120cf565b602082019050919050565b60006020820190508181036000830152612134816120f8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612197602583611696565b91506121a28261213b565b604082019050919050565b600060208201905081810360008301526121c68161218a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612229602383611696565b9150612234826121cd565b604082019050919050565b600060208201905081810360008301526122588161221c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122bb602683611696565b91506122c68261225f565b604082019050919050565b600060208201905081810360008301526122ea816122ae565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612327602083611696565b9150612332826122f1565b602082019050919050565b600060208201905081810360008301526123568161231a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612393601f83611696565b915061239e8261235d565b602082019050919050565b600060208201905081810360008301526123c281612386565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612425602183611696565b9150612430826123c9565b604082019050919050565b6000602082019050818103600083015261245481612418565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006124b7602283611696565b91506124c28261245b565b604082019050919050565b600060208201905081810360008301526124e6816124aa565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612523601483611696565b915061252e826124ed565b602082019050919050565b6000602082019050818103600083015261255281612516565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061258f601083611696565b915061259a82612559565b602082019050919050565b600060208201905081810360008301526125be81612582565b905091905056fea26469706673582212205f47408eaaf662c41e6f2df3539fd05b07089fb7235066d18bd35b48d70a9dce64736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063613255ab116100c357806395d89b411161007c57806395d89b411461037a578063a457c2d714610398578063a9059cbb146103c8578063d9d98ce4146103f8578063dd62ed3e14610428578063f2fde38b146104585761014d565b8063613255ab146102cc57806370a08231146102fc578063715018a61461032c57806379cc6790146103365780638456cb59146103525780638da5cb5b1461035c5761014d565b80633950935111610115578063395093511461020c5780633f4ba83a1461023c57806340c10f191461024657806342966c68146102625780635c975abb1461027e5780635cffe9de1461029c5761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806323b872dd146101be578063313ce567146101ee575b600080fd5b61015a610474565b604051610167919061171b565b60405180910390f35b61018a600480360381019061018591906117db565b610506565b6040516101979190611836565b60405180910390f35b6101a8610529565b6040516101b59190611860565b60405180910390f35b6101d860048036038101906101d3919061187b565b610533565b6040516101e59190611836565b60405180910390f35b6101f6610562565b60405161020391906118ea565b60405180910390f35b610226600480360381019061022191906117db565b61056b565b6040516102339190611836565b60405180910390f35b6102446105a2565b005b610260600480360381019061025b91906117db565b6105b4565b005b61027c60048036038101906102779190611905565b6105ca565b005b6102866105de565b6040516102939190611836565b60405180910390f35b6102b660048036038101906102b191906119d5565b6105f5565b6040516102c39190611836565b60405180910390f35b6102e660048036038101906102e19190611a5d565b6107e2565b6040516102f39190611860565b60405180910390f35b61031660048036038101906103119190611a5d565b610859565b6040516103239190611860565b60405180910390f35b6103346108a1565b005b610350600480360381019061034b91906117db565b6108b5565b005b61035a6108d5565b005b6103646108e7565b6040516103719190611a99565b60405180910390f35b610382610911565b60405161038f919061171b565b60405180910390f35b6103b260048036038101906103ad91906117db565b6109a3565b6040516103bf9190611836565b60405180910390f35b6103e260048036038101906103dd91906117db565b610a1a565b6040516103ef9190611836565b60405180910390f35b610412600480360381019061040d91906117db565b610a3d565b60405161041f9190611860565b60405180910390f35b610442600480360381019061043d9190611ab4565b610abf565b60405161044f9190611860565b60405180910390f35b610472600480360381019061046d9190611a5d565b610b46565b005b60606003805461048390611b23565b80601f01602080910402602001604051908101604052809291908181526020018280546104af90611b23565b80156104fc5780601f106104d1576101008083540402835291602001916104fc565b820191906000526020600020905b8154815290600101906020018083116104df57829003601f168201915b5050505050905090565b600080610511610bce565b905061051e818585610bd6565b600191505092915050565b6000600254905090565b60008061053e610bce565b905061054b858285610d9f565b610556858585610e2b565b60019150509392505050565b60006012905090565b600080610576610bce565b90506105978185856105888589610abf565b6105929190611b83565b610bd6565b600191505092915050565b6105aa6110a1565b6105b261111f565b565b6105bc6110a1565b6105c68282611182565b5050565b6105db6105d5610bce565b826112d8565b50565b6000600560009054906101000a900460ff16905090565b6000610600856107e2565b841115610642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063990611c29565b60405180910390fd5b600061064e8686610a3d565b905061065a8786611182565b7f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd98773ffffffffffffffffffffffffffffffffffffffff166323e30c8b338989868a8a6040518763ffffffff1660e01b81526004016106be96959493929190611c96565b6020604051808303816000875af11580156106dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107019190611d28565b14610741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073890611dc7565b60405180910390fd5b600061074b6114a5565b90506107638830848961075e9190611b83565b610d9f565b600082148061079e5750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b156107bd576107b88883886107b39190611b83565b6112d8565b6107d3565b6107c788876112d8565b6107d2888284610e2b565b5b60019250505095945050505050565b60003073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461081e576000610852565b610826610529565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6108519190611de7565b5b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108a96110a1565b6108b360006114aa565b565b6108c7826108c1610bce565b83610d9f565b6108d182826112d8565b5050565b6108dd6110a1565b6108e5611570565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461092090611b23565b80601f016020809104026020016040519081016040528092919081815260200182805461094c90611b23565b80156109995780601f1061096e57610100808354040283529160200191610999565b820191906000526020600020905b81548152906001019060200180831161097c57829003601f168201915b5050505050905090565b6000806109ae610bce565b905060006109bc8286610abf565b905083811015610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890611e8d565b60405180910390fd5b610a0e8286868403610bd6565b60019250505092915050565b600080610a25610bce565b9050610a32818585610e2b565b600191505092915050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490611ef9565b60405180910390fd5b610ab783836115d3565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b4e6110a1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490611f8b565b60405180910390fd5b610bc6816114aa565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c9061201d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab906120af565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d929190611860565b60405180910390a3505050565b6000610dab8484610abf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e255781811015610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e9061211b565b60405180910390fd5b610e248484848403610bd6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e91906121ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f009061223f565b60405180910390fd5b610f148383836115db565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f91906122d1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110889190611860565b60405180910390a361109b8484846115f3565b50505050565b6110a9610bce565b73ffffffffffffffffffffffffffffffffffffffff166110c76108e7565b73ffffffffffffffffffffffffffffffffffffffff161461111d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111149061233d565b60405180910390fd5b565b6111276115f8565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61116b610bce565b6040516111789190611a99565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e8906123a9565b60405180910390fd5b6111fd600083836115db565b806002600082825461120f9190611b83565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112c09190611860565b60405180910390a36112d4600083836115f3565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e9061243b565b60405180910390fd5b611353826000836115db565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d0906124cd565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161148c9190611860565b60405180910390a36114a0836000846115f3565b505050565b600090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611578611641565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115bc610bce565b6040516115c99190611a99565b60405180910390a1565b600092915050565b6115e3611641565b6115ee838383610bc9565b505050565b505050565b6116006105de565b61163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163690612539565b60405180910390fd5b565b6116496105de565b15611689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611680906125a5565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b838110156116c55780820151818401526020810190506116aa565b60008484015250505050565b6000601f19601f8301169050919050565b60006116ed8261168b565b6116f78185611696565b93506117078185602086016116a7565b611710816116d1565b840191505092915050565b6000602082019050818103600083015261173581846116e2565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061177282611747565b9050919050565b61178281611767565b811461178d57600080fd5b50565b60008135905061179f81611779565b92915050565b6000819050919050565b6117b8816117a5565b81146117c357600080fd5b50565b6000813590506117d5816117af565b92915050565b600080604083850312156117f2576117f161173d565b5b600061180085828601611790565b9250506020611811858286016117c6565b9150509250929050565b60008115159050919050565b6118308161181b565b82525050565b600060208201905061184b6000830184611827565b92915050565b61185a816117a5565b82525050565b60006020820190506118756000830184611851565b92915050565b6000806000606084860312156118945761189361173d565b5b60006118a286828701611790565b93505060206118b386828701611790565b92505060406118c4868287016117c6565b9150509250925092565b600060ff82169050919050565b6118e4816118ce565b82525050565b60006020820190506118ff60008301846118db565b92915050565b60006020828403121561191b5761191a61173d565b5b6000611929848285016117c6565b91505092915050565b600061193d82611767565b9050919050565b61194d81611932565b811461195857600080fd5b50565b60008135905061196a81611944565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261199557611994611970565b5b8235905067ffffffffffffffff8111156119b2576119b1611975565b5b6020830191508360018202830111156119ce576119cd61197a565b5b9250929050565b6000806000806000608086880312156119f1576119f061173d565b5b60006119ff8882890161195b565b9550506020611a1088828901611790565b9450506040611a21888289016117c6565b935050606086013567ffffffffffffffff811115611a4257611a41611742565b5b611a4e8882890161197f565b92509250509295509295909350565b600060208284031215611a7357611a7261173d565b5b6000611a8184828501611790565b91505092915050565b611a9381611767565b82525050565b6000602082019050611aae6000830184611a8a565b92915050565b60008060408385031215611acb57611aca61173d565b5b6000611ad985828601611790565b9250506020611aea85828601611790565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b3b57607f821691505b602082108103611b4e57611b4d611af4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b8e826117a5565b9150611b99836117a5565b9250828201905080821115611bb157611bb0611b54565b5b92915050565b7f4552433230466c6173684d696e743a20616d6f756e742065786365656473206d60008201527f6178466c6173684c6f616e000000000000000000000000000000000000000000602082015250565b6000611c13602b83611696565b9150611c1e82611bb7565b604082019050919050565b60006020820190508181036000830152611c4281611c06565b9050919050565b600082825260208201905092915050565b82818337600083830152505050565b6000611c758385611c49565b9350611c82838584611c5a565b611c8b836116d1565b840190509392505050565b600060a082019050611cab6000830189611a8a565b611cb86020830188611a8a565b611cc56040830187611851565b611cd26060830186611851565b8181036080830152611ce5818486611c69565b9050979650505050505050565b6000819050919050565b611d0581611cf2565b8114611d1057600080fd5b50565b600081519050611d2281611cfc565b92915050565b600060208284031215611d3e57611d3d61173d565b5b6000611d4c84828501611d13565b91505092915050565b7f4552433230466c6173684d696e743a20696e76616c69642072657475726e207660008201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b6000611db1602483611696565b9150611dbc82611d55565b604082019050919050565b60006020820190508181036000830152611de081611da4565b9050919050565b6000611df2826117a5565b9150611dfd836117a5565b9250828203905081811115611e1557611e14611b54565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e77602583611696565b9150611e8282611e1b565b604082019050919050565b60006020820190508181036000830152611ea681611e6a565b9050919050565b7f4552433230466c6173684d696e743a2077726f6e6720746f6b656e0000000000600082015250565b6000611ee3601b83611696565b9150611eee82611ead565b602082019050919050565b60006020820190508181036000830152611f1281611ed6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611f75602683611696565b9150611f8082611f19565b604082019050919050565b60006020820190508181036000830152611fa481611f68565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612007602483611696565b915061201282611fab565b604082019050919050565b6000602082019050818103600083015261203681611ffa565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612099602283611696565b91506120a48261203d565b604082019050919050565b600060208201905081810360008301526120c88161208c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612105601d83611696565b9150612110826120cf565b602082019050919050565b60006020820190508181036000830152612134816120f8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612197602583611696565b91506121a28261213b565b604082019050919050565b600060208201905081810360008301526121c68161218a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612229602383611696565b9150612234826121cd565b604082019050919050565b600060208201905081810360008301526122588161221c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122bb602683611696565b91506122c68261225f565b604082019050919050565b600060208201905081810360008301526122ea816122ae565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612327602083611696565b9150612332826122f1565b602082019050919050565b600060208201905081810360008301526123568161231a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612393601f83611696565b915061239e8261235d565b602082019050919050565b600060208201905081810360008301526123c281612386565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612425602183611696565b9150612430826123c9565b604082019050919050565b6000602082019050818103600083015261245481612418565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006124b7602283611696565b91506124c28261245b565b604082019050919050565b600060208201905081810360008301526124e6816124aa565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612523601483611696565b915061252e826124ed565b602082019050919050565b6000602082019050818103600083015261255281612516565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061258f601083611696565b915061259a82612559565b602082019050919050565b600060208201905081810360008301526125be81612582565b905091905056fea26469706673582212205f47408eaaf662c41e6f2df3539fd05b07089fb7235066d18bd35b48d70a9dce64736f6c63430008110033

Deployed Bytecode Sourcemap

31921:650:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14639:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16990:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15759:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17771:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15601:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18475:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32193:65;;;:::i;:::-;;32266:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26416:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7879:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30845:959;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27931:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15930:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2884:103;;;:::i;:::-;;26826:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32124:61;;;:::i;:::-;;2236:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14858:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19216:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16263:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28485:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16519:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3142:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14639:100;14693:13;14726:5;14719:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14639:100;:::o;16990:201::-;17073:4;17090:13;17106:12;:10;:12::i;:::-;17090:28;;17129:32;17138:5;17145:7;17154:6;17129:8;:32::i;:::-;17179:4;17172:11;;;16990:201;;;;:::o;15759:108::-;15820:7;15847:12;;15840:19;;15759:108;:::o;17771:295::-;17902:4;17919:15;17937:12;:10;:12::i;:::-;17919:30;;17960:38;17976:4;17982:7;17991:6;17960:15;:38::i;:::-;18009:27;18019:4;18025:2;18029:6;18009:9;:27::i;:::-;18054:4;18047:11;;;17771:295;;;;;:::o;15601:93::-;15659:5;15684:2;15677:9;;15601:93;:::o;18475:238::-;18563:4;18580:13;18596:12;:10;:12::i;:::-;18580:28;;18619:64;18628:5;18635:7;18672:10;18644:25;18654:5;18661:7;18644:9;:25::i;:::-;:38;;;;:::i;:::-;18619:8;:64::i;:::-;18701:4;18694:11;;;18475:238;;;;:::o;32193:65::-;2122:13;:11;:13::i;:::-;32240:10:::1;:8;:10::i;:::-;32193:65::o:0;32266:95::-;2122:13;:11;:13::i;:::-;32336:17:::1;32342:2;32346:6;32336:5;:17::i;:::-;32266:95:::0;;:::o;26416:91::-;26472:27;26478:12;:10;:12::i;:::-;26492:6;26472:5;:27::i;:::-;26416:91;:::o;7879:86::-;7926:4;7950:7;;;;;;;;;;;7943:14;;7879:86;:::o;30845:959::-;31024:4;31059:19;31072:5;31059:12;:19::i;:::-;31049:6;:29;;31041:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31137:11;31151:23;31160:5;31167:6;31151:8;:23::i;:::-;31137:37;;31185:32;31199:8;31210:6;31185:5;:32::i;:::-;27668:45;31250:8;:20;;;31271:10;31283:5;31290:6;31298:3;31303:4;;31250:58;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:75;31228:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;31400:24;31427:19;:17;:19::i;:::-;31400:46;;31457:63;31481:8;31500:4;31516:3;31507:6;:12;;;;:::i;:::-;31457:15;:63::i;:::-;31542:1;31535:3;:8;:42;;;;31575:1;31547:30;;:16;:30;;;31535:42;31531:244;;;31594:38;31608:8;31628:3;31619:6;:12;;;;:::i;:::-;31594:5;:38::i;:::-;31531:244;;;31665:32;31679:8;31690:6;31665:5;:32::i;:::-;31712:51;31730:8;31741:16;31759:3;31712:9;:51::i;:::-;31531:244;31792:4;31785:11;;;;30845:959;;;;;;;:::o;27931:178::-;28006:7;28050:4;28033:22;;:5;:22;;;:68;;28100:1;28033:68;;;28078:19;:17;:19::i;:::-;28058:17;:39;;;;:::i;:::-;28033:68;28026:75;;27931:178;;;:::o;15930:127::-;16004:7;16031:9;:18;16041:7;16031:18;;;;;;;;;;;;;;;;16024:25;;15930:127;;;:::o;2884:103::-;2122:13;:11;:13::i;:::-;2949:30:::1;2976:1;2949:18;:30::i;:::-;2884:103::o:0;26826:164::-;26903:46;26919:7;26928:12;:10;:12::i;:::-;26942:6;26903:15;:46::i;:::-;26960:22;26966:7;26975:6;26960:5;:22::i;:::-;26826:164;;:::o;32124:61::-;2122:13;:11;:13::i;:::-;32169:8:::1;:6;:8::i;:::-;32124:61::o:0;2236:87::-;2282:7;2309:6;;;;;;;;;;;2302:13;;2236:87;:::o;14858:104::-;14914:13;14947:7;14940:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14858:104;:::o;19216:436::-;19309:4;19326:13;19342:12;:10;:12::i;:::-;19326:28;;19365:24;19392:25;19402:5;19409:7;19392:9;:25::i;:::-;19365:52;;19456:15;19436:16;:35;;19428:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;19549:60;19558:5;19565:7;19593:15;19574:16;:34;19549:8;:60::i;:::-;19640:4;19633:11;;;;19216:436;;;;:::o;16263:193::-;16342:4;16359:13;16375:12;:10;:12::i;:::-;16359:28;;16398;16408:5;16415:2;16419:6;16398:9;:28::i;:::-;16444:4;16437:11;;;16263:193;;;;:::o;28485:219::-;28572:7;28617:4;28600:22;;:5;:22;;;28592:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;28672:24;28682:5;28689:6;28672:9;:24::i;:::-;28665:31;;28485:219;;;;:::o;16519:151::-;16608:7;16635:11;:18;16647:5;16635:18;;;;;;;;;;;;;;;:27;16654:7;16635:27;;;;;;;;;;;;;;;;16628:34;;16519:151;;;;:::o;3142:201::-;2122:13;:11;:13::i;:::-;3251:1:::1;3231:22;;:8;:22;;::::0;3223:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3307:28;3326:8;3307:18;:28::i;:::-;3142:201:::0;:::o;24967:125::-;;;;:::o;750:98::-;803:7;830:10;823:17;;750:98;:::o;23243:380::-;23396:1;23379:19;;:5;:19;;;23371:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23477:1;23458:21;;:7;:21;;;23450:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23561:6;23531:11;:18;23543:5;23531:18;;;;;;;;;;;;;;;:27;23550:7;23531:27;;;;;;;;;;;;;;;:36;;;;23599:7;23583:32;;23592:5;23583:32;;;23608:6;23583:32;;;;;;:::i;:::-;;;;;;;;23243:380;;;:::o;23914:453::-;24049:24;24076:25;24086:5;24093:7;24076:9;:25::i;:::-;24049:52;;24136:17;24116:16;:37;24112:248;;24198:6;24178:16;:26;;24170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24282:51;24291:5;24298:7;24326:6;24307:16;:25;24282:8;:51::i;:::-;24112:248;24038:329;23914:453;;;:::o;20122:840::-;20269:1;20253:18;;:4;:18;;;20245:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20346:1;20332:16;;:2;:16;;;20324:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;20401:38;20422:4;20428:2;20432:6;20401:20;:38::i;:::-;20452:19;20474:9;:15;20484:4;20474:15;;;;;;;;;;;;;;;;20452:37;;20523:6;20508:11;:21;;20500:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;20640:6;20626:11;:20;20608:9;:15;20618:4;20608:15;;;;;;;;;;;;;;;:38;;;;20843:6;20826:9;:13;20836:2;20826:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;20893:2;20878:26;;20887:4;20878:26;;;20897:6;20878:26;;;;;;:::i;:::-;;;;;;;;20917:37;20937:4;20943:2;20947:6;20917:19;:37::i;:::-;20234:728;20122:840;;;:::o;2401:132::-;2476:12;:10;:12::i;:::-;2465:23;;:7;:5;:7::i;:::-;:23;;;2457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2401:132::o;8734:120::-;7743:16;:14;:16::i;:::-;8803:5:::1;8793:7;;:15;;;;;;;;;;;;;;;;;;8824:22;8833:12;:10;:12::i;:::-;8824:22;;;;;;:::i;:::-;;;;;;;;8734:120::o:0;21249:548::-;21352:1;21333:21;;:7;:21;;;21325:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;21403:49;21432:1;21436:7;21445:6;21403:20;:49::i;:::-;21481:6;21465:12;;:22;;;;;;;:::i;:::-;;;;;;;;21658:6;21636:9;:18;21646:7;21636:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;21712:7;21691:37;;21708:1;21691:37;;;21721:6;21691:37;;;;;;:::i;:::-;;;;;;;;21741:48;21769:1;21773:7;21782:6;21741:19;:48::i;:::-;21249:548;;:::o;22130:675::-;22233:1;22214:21;;:7;:21;;;22206:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22286:49;22307:7;22324:1;22328:6;22286:20;:49::i;:::-;22348:22;22373:9;:18;22383:7;22373:18;;;;;;;;;;;;;;;;22348:43;;22428:6;22410:14;:24;;22402:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;22547:6;22530:14;:23;22509:9;:18;22519:7;22509:18;;;;;;;;;;;;;;;:44;;;;22664:6;22648:12;;:22;;;;;;;;;;;22725:1;22699:37;;22708:7;22699:37;;;22729:6;22699:37;;;;;;:::i;:::-;;;;;;;;22749:48;22769:7;22786:1;22790:6;22749:19;:48::i;:::-;22195:610;22130:675;;:::o;29664:105::-;29724:7;29664:105;:::o;3503:191::-;3577:16;3596:6;;;;;;;;;;;3577:25;;3622:8;3613:6;;:17;;;;;;;;;;;;;;;;;;3677:8;3646:40;;3667:8;3646:40;;;;;;;;;;;;3566:128;3503:191;:::o;8475:118::-;7484:19;:17;:19::i;:::-;8545:4:::1;8535:7;;:14;;;;;;;;;;;;;;;;;;8565:20;8572:12;:10;:12::i;:::-;8565:20;;;;;;:::i;:::-;;;;;;;;8475:118::o:0;29103:234::-;29184:7;29103:234;;;;:::o;32369:199::-;7484:19;:17;:19::i;:::-;32516:44:::1;32543:4;32549:2;32553:6;32516:26;:44::i;:::-;32369:199:::0;;;:::o;25696:124::-;;;;:::o;8223:108::-;8290:8;:6;:8::i;:::-;8282:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;8223:108::o;8038:::-;8109:8;:6;:8::i;:::-;8108:9;8100:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;8038:108::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:125::-;5254:7;5283:24;5301:5;5283:24;:::i;:::-;5272:35;;5188:125;;;:::o;5319:180::-;5421:53;5468:5;5421:53;:::i;:::-;5414:5;5411:64;5401:92;;5489:1;5486;5479:12;5401:92;5319:180;:::o;5505:197::-;5580:5;5618:6;5605:20;5596:29;;5634:62;5690:5;5634:62;:::i;:::-;5505:197;;;;:::o;5708:117::-;5817:1;5814;5807:12;5831:117;5940:1;5937;5930:12;5954:117;6063:1;6060;6053:12;6090:552;6147:8;6157:6;6207:3;6200:4;6192:6;6188:17;6184:27;6174:122;;6215:79;;:::i;:::-;6174:122;6328:6;6315:20;6305:30;;6358:18;6350:6;6347:30;6344:117;;;6380:79;;:::i;:::-;6344:117;6494:4;6486:6;6482:17;6470:29;;6548:3;6540:4;6532:6;6528:17;6518:8;6514:32;6511:41;6508:128;;;6555:79;;:::i;:::-;6508:128;6090:552;;;;;:::o;6648:1021::-;6774:6;6782;6790;6798;6806;6855:3;6843:9;6834:7;6830:23;6826:33;6823:120;;;6862:79;;:::i;:::-;6823:120;6982:1;7007:82;7081:7;7072:6;7061:9;7057:22;7007:82;:::i;:::-;6997:92;;6953:146;7138:2;7164:53;7209:7;7200:6;7189:9;7185:22;7164:53;:::i;:::-;7154:63;;7109:118;7266:2;7292:53;7337:7;7328:6;7317:9;7313:22;7292:53;:::i;:::-;7282:63;;7237:118;7422:2;7411:9;7407:18;7394:32;7453:18;7445:6;7442:30;7439:117;;;7475:79;;:::i;:::-;7439:117;7588:64;7644:7;7635:6;7624:9;7620:22;7588:64;:::i;:::-;7570:82;;;;7365:297;6648:1021;;;;;;;;:::o;7675:329::-;7734:6;7783:2;7771:9;7762:7;7758:23;7754:32;7751:119;;;7789:79;;:::i;:::-;7751:119;7909:1;7934:53;7979:7;7970:6;7959:9;7955:22;7934:53;:::i;:::-;7924:63;;7880:117;7675:329;;;;:::o;8010:118::-;8097:24;8115:5;8097:24;:::i;:::-;8092:3;8085:37;8010:118;;:::o;8134:222::-;8227:4;8265:2;8254:9;8250:18;8242:26;;8278:71;8346:1;8335:9;8331:17;8322:6;8278:71;:::i;:::-;8134:222;;;;:::o;8362:474::-;8430:6;8438;8487:2;8475:9;8466:7;8462:23;8458:32;8455:119;;;8493:79;;:::i;:::-;8455:119;8613:1;8638:53;8683:7;8674:6;8663:9;8659:22;8638:53;:::i;:::-;8628:63;;8584:117;8740:2;8766:53;8811:7;8802:6;8791:9;8787:22;8766:53;:::i;:::-;8756:63;;8711:118;8362:474;;;;;:::o;8842:180::-;8890:77;8887:1;8880:88;8987:4;8984:1;8977:15;9011:4;9008:1;9001:15;9028:320;9072:6;9109:1;9103:4;9099:12;9089:22;;9156:1;9150:4;9146:12;9177:18;9167:81;;9233:4;9225:6;9221:17;9211:27;;9167:81;9295:2;9287:6;9284:14;9264:18;9261:38;9258:84;;9314:18;;:::i;:::-;9258:84;9079:269;9028:320;;;:::o;9354:180::-;9402:77;9399:1;9392:88;9499:4;9496:1;9489:15;9523:4;9520:1;9513:15;9540:191;9580:3;9599:20;9617:1;9599:20;:::i;:::-;9594:25;;9633:20;9651:1;9633:20;:::i;:::-;9628:25;;9676:1;9673;9669:9;9662:16;;9697:3;9694:1;9691:10;9688:36;;;9704:18;;:::i;:::-;9688:36;9540:191;;;;:::o;9737:230::-;9877:34;9873:1;9865:6;9861:14;9854:58;9946:13;9941:2;9933:6;9929:15;9922:38;9737:230;:::o;9973:366::-;10115:3;10136:67;10200:2;10195:3;10136:67;:::i;:::-;10129:74;;10212:93;10301:3;10212:93;:::i;:::-;10330:2;10325:3;10321:12;10314:19;;9973:366;;;:::o;10345:419::-;10511:4;10549:2;10538:9;10534:18;10526:26;;10598:9;10592:4;10588:20;10584:1;10573:9;10569:17;10562:47;10626:131;10752:4;10626:131;:::i;:::-;10618:139;;10345:419;;;:::o;10770:168::-;10853:11;10887:6;10882:3;10875:19;10927:4;10922:3;10918:14;10903:29;;10770:168;;;;:::o;10944:146::-;11041:6;11036:3;11031;11018:30;11082:1;11073:6;11068:3;11064:16;11057:27;10944:146;;;:::o;11118:314::-;11214:3;11235:70;11298:6;11293:3;11235:70;:::i;:::-;11228:77;;11315:56;11364:6;11359:3;11352:5;11315:56;:::i;:::-;11396:29;11418:6;11396:29;:::i;:::-;11391:3;11387:39;11380:46;;11118:314;;;;;:::o;11438:771::-;11671:4;11709:3;11698:9;11694:19;11686:27;;11723:71;11791:1;11780:9;11776:17;11767:6;11723:71;:::i;:::-;11804:72;11872:2;11861:9;11857:18;11848:6;11804:72;:::i;:::-;11886;11954:2;11943:9;11939:18;11930:6;11886:72;:::i;:::-;11968;12036:2;12025:9;12021:18;12012:6;11968:72;:::i;:::-;12088:9;12082:4;12078:20;12072:3;12061:9;12057:19;12050:49;12116:86;12197:4;12188:6;12180;12116:86;:::i;:::-;12108:94;;11438:771;;;;;;;;;:::o;12215:77::-;12252:7;12281:5;12270:16;;12215:77;;;:::o;12298:122::-;12371:24;12389:5;12371:24;:::i;:::-;12364:5;12361:35;12351:63;;12410:1;12407;12400:12;12351:63;12298:122;:::o;12426:143::-;12483:5;12514:6;12508:13;12499:22;;12530:33;12557:5;12530:33;:::i;:::-;12426:143;;;;:::o;12575:351::-;12645:6;12694:2;12682:9;12673:7;12669:23;12665:32;12662:119;;;12700:79;;:::i;:::-;12662:119;12820:1;12845:64;12901:7;12892:6;12881:9;12877:22;12845:64;:::i;:::-;12835:74;;12791:128;12575:351;;;;:::o;12932:223::-;13072:34;13068:1;13060:6;13056:14;13049:58;13141:6;13136:2;13128:6;13124:15;13117:31;12932:223;:::o;13161:366::-;13303:3;13324:67;13388:2;13383:3;13324:67;:::i;:::-;13317:74;;13400:93;13489:3;13400:93;:::i;:::-;13518:2;13513:3;13509:12;13502:19;;13161:366;;;:::o;13533:419::-;13699:4;13737:2;13726:9;13722:18;13714:26;;13786:9;13780:4;13776:20;13772:1;13761:9;13757:17;13750:47;13814:131;13940:4;13814:131;:::i;:::-;13806:139;;13533:419;;;:::o;13958:194::-;13998:4;14018:20;14036:1;14018:20;:::i;:::-;14013:25;;14052:20;14070:1;14052:20;:::i;:::-;14047:25;;14096:1;14093;14089:9;14081:17;;14120:1;14114:4;14111:11;14108:37;;;14125:18;;:::i;:::-;14108:37;13958:194;;;;:::o;14158:224::-;14298:34;14294:1;14286:6;14282:14;14275:58;14367:7;14362:2;14354:6;14350:15;14343:32;14158:224;:::o;14388:366::-;14530:3;14551:67;14615:2;14610:3;14551:67;:::i;:::-;14544:74;;14627:93;14716:3;14627:93;:::i;:::-;14745:2;14740:3;14736:12;14729:19;;14388:366;;;:::o;14760:419::-;14926:4;14964:2;14953:9;14949:18;14941:26;;15013:9;15007:4;15003:20;14999:1;14988:9;14984:17;14977:47;15041:131;15167:4;15041:131;:::i;:::-;15033:139;;14760:419;;;:::o;15185:177::-;15325:29;15321:1;15313:6;15309:14;15302:53;15185:177;:::o;15368:366::-;15510:3;15531:67;15595:2;15590:3;15531:67;:::i;:::-;15524:74;;15607:93;15696:3;15607:93;:::i;:::-;15725:2;15720:3;15716:12;15709:19;;15368:366;;;:::o;15740:419::-;15906:4;15944:2;15933:9;15929:18;15921:26;;15993:9;15987:4;15983:20;15979:1;15968:9;15964:17;15957:47;16021:131;16147:4;16021:131;:::i;:::-;16013:139;;15740:419;;;:::o;16165:225::-;16305:34;16301:1;16293:6;16289:14;16282:58;16374:8;16369:2;16361:6;16357:15;16350:33;16165:225;:::o;16396:366::-;16538:3;16559:67;16623:2;16618:3;16559:67;:::i;:::-;16552:74;;16635:93;16724:3;16635:93;:::i;:::-;16753:2;16748:3;16744:12;16737:19;;16396:366;;;:::o;16768:419::-;16934:4;16972:2;16961:9;16957:18;16949:26;;17021:9;17015:4;17011:20;17007:1;16996:9;16992:17;16985:47;17049:131;17175:4;17049:131;:::i;:::-;17041:139;;16768:419;;;:::o;17193:223::-;17333:34;17329:1;17321:6;17317:14;17310:58;17402:6;17397:2;17389:6;17385:15;17378:31;17193:223;:::o;17422:366::-;17564:3;17585:67;17649:2;17644:3;17585:67;:::i;:::-;17578:74;;17661:93;17750:3;17661:93;:::i;:::-;17779:2;17774:3;17770:12;17763:19;;17422:366;;;:::o;17794:419::-;17960:4;17998:2;17987:9;17983:18;17975:26;;18047:9;18041:4;18037:20;18033:1;18022:9;18018:17;18011:47;18075:131;18201:4;18075:131;:::i;:::-;18067:139;;17794:419;;;:::o;18219:221::-;18359:34;18355:1;18347:6;18343:14;18336:58;18428:4;18423:2;18415:6;18411:15;18404:29;18219:221;:::o;18446:366::-;18588:3;18609:67;18673:2;18668:3;18609:67;:::i;:::-;18602:74;;18685:93;18774:3;18685:93;:::i;:::-;18803:2;18798:3;18794:12;18787:19;;18446:366;;;:::o;18818:419::-;18984:4;19022:2;19011:9;19007:18;18999:26;;19071:9;19065:4;19061:20;19057:1;19046:9;19042:17;19035:47;19099:131;19225:4;19099:131;:::i;:::-;19091:139;;18818:419;;;:::o;19243:179::-;19383:31;19379:1;19371:6;19367:14;19360:55;19243:179;:::o;19428:366::-;19570:3;19591:67;19655:2;19650:3;19591:67;:::i;:::-;19584:74;;19667:93;19756:3;19667:93;:::i;:::-;19785:2;19780:3;19776:12;19769:19;;19428:366;;;:::o;19800:419::-;19966:4;20004:2;19993:9;19989:18;19981:26;;20053:9;20047:4;20043:20;20039:1;20028:9;20024:17;20017:47;20081:131;20207:4;20081:131;:::i;:::-;20073:139;;19800:419;;;:::o;20225:224::-;20365:34;20361:1;20353:6;20349:14;20342:58;20434:7;20429:2;20421:6;20417:15;20410:32;20225:224;:::o;20455:366::-;20597:3;20618:67;20682:2;20677:3;20618:67;:::i;:::-;20611:74;;20694:93;20783:3;20694:93;:::i;:::-;20812:2;20807:3;20803:12;20796:19;;20455:366;;;:::o;20827:419::-;20993:4;21031:2;21020:9;21016:18;21008:26;;21080:9;21074:4;21070:20;21066:1;21055:9;21051:17;21044:47;21108:131;21234:4;21108:131;:::i;:::-;21100:139;;20827:419;;;:::o;21252:222::-;21392:34;21388:1;21380:6;21376:14;21369:58;21461:5;21456:2;21448:6;21444:15;21437:30;21252:222;:::o;21480:366::-;21622:3;21643:67;21707:2;21702:3;21643:67;:::i;:::-;21636:74;;21719:93;21808:3;21719:93;:::i;:::-;21837:2;21832:3;21828:12;21821:19;;21480:366;;;:::o;21852:419::-;22018:4;22056:2;22045:9;22041:18;22033:26;;22105:9;22099:4;22095:20;22091:1;22080:9;22076:17;22069:47;22133:131;22259:4;22133:131;:::i;:::-;22125:139;;21852:419;;;:::o;22277:225::-;22417:34;22413:1;22405:6;22401:14;22394:58;22486:8;22481:2;22473:6;22469:15;22462:33;22277:225;:::o;22508:366::-;22650:3;22671:67;22735:2;22730:3;22671:67;:::i;:::-;22664:74;;22747:93;22836:3;22747:93;:::i;:::-;22865:2;22860:3;22856:12;22849:19;;22508:366;;;:::o;22880:419::-;23046:4;23084:2;23073:9;23069:18;23061:26;;23133:9;23127:4;23123:20;23119:1;23108:9;23104:17;23097:47;23161:131;23287:4;23161:131;:::i;:::-;23153:139;;22880:419;;;:::o;23305:182::-;23445:34;23441:1;23433:6;23429:14;23422:58;23305:182;:::o;23493:366::-;23635:3;23656:67;23720:2;23715:3;23656:67;:::i;:::-;23649:74;;23732:93;23821:3;23732:93;:::i;:::-;23850:2;23845:3;23841:12;23834:19;;23493:366;;;:::o;23865:419::-;24031:4;24069:2;24058:9;24054:18;24046:26;;24118:9;24112:4;24108:20;24104:1;24093:9;24089:17;24082:47;24146:131;24272:4;24146:131;:::i;:::-;24138:139;;23865:419;;;:::o;24290:181::-;24430:33;24426:1;24418:6;24414:14;24407:57;24290:181;:::o;24477:366::-;24619:3;24640:67;24704:2;24699:3;24640:67;:::i;:::-;24633:74;;24716:93;24805:3;24716:93;:::i;:::-;24834:2;24829:3;24825:12;24818:19;;24477:366;;;:::o;24849:419::-;25015:4;25053:2;25042:9;25038:18;25030:26;;25102:9;25096:4;25092:20;25088:1;25077:9;25073:17;25066:47;25130:131;25256:4;25130:131;:::i;:::-;25122:139;;24849:419;;;:::o;25274:220::-;25414:34;25410:1;25402:6;25398:14;25391:58;25483:3;25478:2;25470:6;25466:15;25459:28;25274:220;:::o;25500:366::-;25642:3;25663:67;25727:2;25722:3;25663:67;:::i;:::-;25656:74;;25739:93;25828:3;25739:93;:::i;:::-;25857:2;25852:3;25848:12;25841:19;;25500:366;;;:::o;25872:419::-;26038:4;26076:2;26065:9;26061:18;26053:26;;26125:9;26119:4;26115:20;26111:1;26100:9;26096:17;26089:47;26153:131;26279:4;26153:131;:::i;:::-;26145:139;;25872:419;;;:::o;26297:221::-;26437:34;26433:1;26425:6;26421:14;26414:58;26506:4;26501:2;26493:6;26489:15;26482:29;26297:221;:::o;26524:366::-;26666:3;26687:67;26751:2;26746:3;26687:67;:::i;:::-;26680:74;;26763:93;26852:3;26763:93;:::i;:::-;26881:2;26876:3;26872:12;26865:19;;26524:366;;;:::o;26896:419::-;27062:4;27100:2;27089:9;27085:18;27077:26;;27149:9;27143:4;27139:20;27135:1;27124:9;27120:17;27113:47;27177:131;27303:4;27177:131;:::i;:::-;27169:139;;26896:419;;;:::o;27321:170::-;27461:22;27457:1;27449:6;27445:14;27438:46;27321:170;:::o;27497:366::-;27639:3;27660:67;27724:2;27719:3;27660:67;:::i;:::-;27653:74;;27736:93;27825:3;27736:93;:::i;:::-;27854:2;27849:3;27845:12;27838:19;;27497:366;;;:::o;27869:419::-;28035:4;28073:2;28062:9;28058:18;28050:26;;28122:9;28116:4;28112:20;28108:1;28097:9;28093:17;28086:47;28150:131;28276:4;28150:131;:::i;:::-;28142:139;;27869:419;;;:::o;28294:166::-;28434:18;28430:1;28422:6;28418:14;28411:42;28294:166;:::o;28466:366::-;28608:3;28629:67;28693:2;28688:3;28629:67;:::i;:::-;28622:74;;28705:93;28794:3;28705:93;:::i;:::-;28823:2;28818:3;28814:12;28807:19;;28466:366;;;:::o;28838:419::-;29004:4;29042:2;29031:9;29027:18;29019:26;;29091:9;29085:4;29081:20;29077:1;29066:9;29062:17;29055:47;29119:131;29245:4;29119:131;:::i;:::-;29111:139;;28838:419;;;:::o

Swarm Source

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