ETH Price: $2,291.76 (-5.32%)

Token

SKELETOR (SKELETOR)
 

Overview

Max Total Supply

10,000,000,000,000 SKELETOR

Holders

87

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
15,336,035,357 SKELETOR

Value
$0.00
0x70f06b831f9482f1e5e276422b9e14a6ef134ab9
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:
SKELETOR

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-22
*/

// SPDX-License-Identifier: MIT

/**
   ▄████████    ▄█   ▄█▄    ▄████████  ▄█          ▄████████     ███      ▄██████▄     ▄████████ 
  ███    ███   ███ ▄███▀   ███    ███ ███         ███    ███ ▀█████████▄ ███    ███   ███    ███ 
  ███    █▀    ███▐██▀     ███    █▀  ███         ███    █▀     ▀███▀▀██ ███    ███   ███    ███ 
  ███         ▄█████▀     ▄███▄▄▄     ███        ▄███▄▄▄         ███   ▀ ███    ███  ▄███▄▄▄▄██▀ 
▀███████████ ▀▀█████▄    ▀▀███▀▀▀     ███       ▀▀███▀▀▀         ███     ███    ███ ▀▀███▀▀▀▀▀   
         ███   ███▐██▄     ███    █▄  ███         ███    █▄      ███     ███    ███ ▀███████████ 
   ▄█    ███   ███ ▀███▄   ███    ███ ███▌    ▄   ███    ███     ███     ███    ███   ███    ███ 
 ▄████████▀    ███   ▀█▀   ██████████ █████▄▄██   ██████████    ▄████▀    ▀██████▀    ███    ███ 
               ▀                      ▀                                               ███    ███ 


@eth_skeletor
@sivadacrypto
@redcandlebaad
@nfinitytrillion
@rugmecoin
**/

// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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 {}
}

pragma solidity ^0.8.21;

interface IUniswapV2Factory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

contract SKELETOR is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Factory public constant uniswapV2Factory = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); 
    address public uniswapV2Pair;
    address public constant WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; 
    address public constant UNISWAP_ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; 

    uint256 public MAX_SUPPLY = 10000000000000 * 10**18;
    uint256 public MAX_BAG = MAX_SUPPLY * 2 / 100;
    bool public LFG = false;

    mapping(address => bool) public DerekJeeter;
    mapping(address => bool) public inTrap;
    mapping(address => bool) public Exempt;
    
    event NoSoupForYou(address indexed account);
    event SoupForYou(address indexed account);
    event Exempted(address indexed account);
    event NoLongerExempted(address indexed account);
    event Trapped(address indexed account);
    event Released(address indexed account);

    constructor() ERC20("SKELETOR", "SKELETOR") Ownable() {
        _mint(msg.sender, MAX_SUPPLY);
        Exempt[msg.sender] = true; 
        Exempt[address(this)] = true; 
    }

    function LFGLFG() public onlyOwner {
        LFG = true;
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override {
        require(LFG, "Trading not enabled.");
        require(!DerekJeeter[sender] && !DerekJeeter[recipient], "Either sender or recipient is Derek.");
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(!(inTrap[sender]), "You are in the Trap, prepare to die.");

        if (!Exempt[recipient]) {
            if (!(Exempt[sender] || Exempt[recipient])) {
                require(balanceOf(recipient).add(amount) <= MAX_BAG, "Exceeds Max Wallet Size");
            } else if (Exempt[recipient]) {
                require(balanceOf(recipient).add(amount) <= MAX_BAG, "Exceeds Max Wallet Size");
            }
        }

        super._transfer(sender, recipient, amount);
    }
    
    function NoSoupForYouAddress(address account) public onlyOwner {
        DerekJeeter[account] = true;
        emit NoSoupForYou(account);
    }
    
    function SoupForYouAddress(address account) public onlyOwner {
        DerekJeeter[account] = false;
        emit SoupForYou(account);
    }

    function AddExempt(address account) public onlyOwner {
        Exempt[account] = true;
        emit Exempted(account);
    }

    function removeExempted(address account) public onlyOwner {
        Exempt[account] = false;
        emit NoLongerExempted(account);
    }

    function setMaxBagSize(uint256 newMaxBagSize) public onlyOwner {
        MAX_BAG = newMaxBagSize;
    }

    function Trap(address account) public onlyOwner {
        inTrap[account] = true;
        emit Trapped(account);
    }

    function removeTrap(address account) public onlyOwner {
        inTrap[account] = false;
        emit Released(account); 
    }

    function unpause() public onlyOwner {
        LFG = true;
    }

    function pause() public onlyOwner {
        LFG = false;
    }
}

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":"account","type":"address"}],"name":"Exempted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"NoLongerExempted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"NoSoupForYou","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"Released","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"SoupForYou","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":true,"internalType":"address","name":"account","type":"address"}],"name":"Trapped","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"DerekJeeter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Exempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LFG","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LFGLFG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_BAG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"NoSoupForYouAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"SoupForYouAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"Trap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"UNISWAP_ROUTER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"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":"","type":"address"}],"name":"inTrap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"account","type":"address"}],"name":"removeExempted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeTrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBagSize","type":"uint256"}],"name":"setMaxBagSize","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":"uniswapV2Factory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526c7e37be2022c0914b26800000006007556064600260075462000028919062000442565b620000349190620004b9565b6008555f60095f6101000a81548160ff0219169083151502179055503480156200005c575f80fd5b506040518060400160405280600881526020017f534b454c45544f520000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f534b454c45544f520000000000000000000000000000000000000000000000008152508160039081620000da91906200074b565b508060049081620000ec91906200074b565b5050506200010f62000103620001d360201b60201c565b620001da60201b60201c565b62000123336007546200029d60201b60201c565b6001600c5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555062000913565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200030e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000305906200088d565b60405180910390fd5b620003215f83836200040260201b60201c565b8060025f828254620003349190620008ad565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003e39190620008f8565b60405180910390a3620003fe5f83836200040760201b60201c565b5050565b505050565b505050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200044e826200040c565b91506200045b836200040c565b92508282026200046b816200040c565b9150828204841483151762000485576200048462000415565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620004c5826200040c565b9150620004d2836200040c565b925082620004e557620004e46200048c565b5b828204905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200056c57607f821691505b60208210810362000582576200058162000527565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005e67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005a9565b620005f28683620005a9565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620006336200062d62000627846200040c565b6200060a565b6200040c565b9050919050565b5f819050919050565b6200064e8362000613565b620006666200065d826200063a565b848454620005b5565b825550505050565b5f90565b6200067c6200066e565b6200068981848462000643565b505050565b5b81811015620006b057620006a45f8262000672565b6001810190506200068f565b5050565b601f821115620006ff57620006c98162000588565b620006d4846200059a565b81016020851015620006e4578190505b620006fc620006f3856200059a565b8301826200068e565b50505b505050565b5f82821c905092915050565b5f620007215f198460080262000704565b1980831691505092915050565b5f6200073b838362000710565b9150826002028217905092915050565b6200075682620004f0565b67ffffffffffffffff811115620007725762000771620004fa565b5b6200077e825462000554565b6200078b828285620006b4565b5f60209050601f831160018114620007c1575f8415620007ac578287015190505b620007b885826200072e565b86555062000827565b601f198416620007d18662000588565b5f5b82811015620007fa57848901518255600182019150602085019450602081019050620007d3565b868310156200081a578489015162000816601f89168262000710565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000875601f836200082f565b915062000882826200083f565b602082019050919050565b5f6020820190508181035f830152620008a68162000867565b9050919050565b5f620008b9826200040c565b9150620008c6836200040c565b9250828201905080821115620008e157620008e062000415565b5b92915050565b620008f2816200040c565b82525050565b5f6020820190506200090d5f830184620008e7565b92915050565b61253580620009215f395ff3fe608060405234801561000f575f80fd5b5060043610610204575f3560e01c80638da5cb5b11610118578063cd6814d5116100ab578063ec277cf01161007a578063ec277cf0146105ca578063f2fde38b146105e6578063f833ab8614610602578063fa0cfbb014610620578063faa41dba1461063c57610204565b8063cd6814d514610556578063cf63c51014610572578063d82649201461057c578063dd62ed3e1461059a57610204565b80639d20d666116100e75780639d20d666146104a8578063a457c2d7146104d8578063a9059cbb14610508578063ad5c46481461053857610204565b80638da5cb5b1461042057806395d89b411461043e5780639a98dc9c1461045c5780639d10c3881461047857610204565b8063395093511161019b57806359d0f7131161016a57806359d0f7131461038e5780635d912d5a146103ac57806370a08231146103dc578063715018a61461040c5780638456cb591461041657610204565b8063395093511461031a5780633f4ba83a1461034a57806349bd5a5e14610354578063524739661461037257610204565b806318160ddd116101d757806318160ddd1461029057806323b872dd146102ae578063313ce567146102de57806332cb6b0c146102fc57610204565b806306fdde03146102085780630925070f14610226578063095ea7b3146102445780630afedf6c14610274575b5f80fd5b610210610658565b60405161021d9190611aa6565b60405180910390f35b61022e6106e8565b60405161023b9190611ae0565b60405180910390f35b61025e60048036038101906102599190611b8a565b6106fa565b60405161026b9190611ae0565b60405180910390f35b61028e60048036038101906102899190611bc8565b61071c565b005b61029861072e565b6040516102a59190611c02565b60405180910390f35b6102c860048036038101906102c39190611c1b565b610737565b6040516102d59190611ae0565b60405180910390f35b6102e6610765565b6040516102f39190611c86565b60405180910390f35b61030461076d565b6040516103119190611c02565b60405180910390f35b610334600480360381019061032f9190611b8a565b610773565b6040516103419190611ae0565b60405180910390f35b6103526107a9565b005b61035c6107cd565b6040516103699190611cae565b60405180910390f35b61038c60048036038101906103879190611cc7565b6107f2565b005b610396610894565b6040516103a39190611d4d565b60405180910390f35b6103c660048036038101906103c19190611cc7565b6108ac565b6040516103d39190611ae0565b60405180910390f35b6103f660048036038101906103f19190611cc7565b6108c9565b6040516104039190611c02565b60405180910390f35b61041461090e565b005b61041e610921565b005b610428610944565b6040516104359190611cae565b60405180910390f35b61044661096c565b6040516104539190611aa6565b60405180910390f35b61047660048036038101906104719190611cc7565b6109fc565b005b610492600480360381019061048d9190611cc7565b610a9f565b60405161049f9190611ae0565b60405180910390f35b6104c260048036038101906104bd9190611cc7565b610abc565b6040516104cf9190611ae0565b60405180910390f35b6104f260048036038101906104ed9190611b8a565b610ad9565b6040516104ff9190611ae0565b60405180910390f35b610522600480360381019061051d9190611b8a565b610b4e565b60405161052f9190611ae0565b60405180910390f35b610540610b70565b60405161054d9190611cae565b60405180910390f35b610570600480360381019061056b9190611cc7565b610b88565b005b61057a610c2b565b005b610584610c4f565b6040516105919190611cae565b60405180910390f35b6105b460048036038101906105af9190611d66565b610c67565b6040516105c19190611c02565b60405180910390f35b6105e460048036038101906105df9190611cc7565b610ce9565b005b61060060048036038101906105fb9190611cc7565b610d8c565b005b61060a610e0e565b6040516106179190611c02565b60405180910390f35b61063a60048036038101906106359190611cc7565b610e14565b005b61065660048036038101906106519190611cc7565b610eb6565b005b60606003805461066790611dd1565b80601f016020809104026020016040519081016040528092919081815260200182805461069390611dd1565b80156106de5780601f106106b5576101008083540402835291602001916106de565b820191905f5260205f20905b8154815290600101906020018083116106c157829003601f168201915b5050505050905090565b60095f9054906101000a900460ff1681565b5f80610704610f58565b9050610711818585610f5f565b600191505092915050565b610724611122565b8060088190555050565b5f600254905090565b5f80610741610f58565b905061074e8582856111a0565b61075985858561122b565b60019150509392505050565b5f6012905090565b60075481565b5f8061077d610f58565b905061079e81858561078f8589610c67565b6107999190611e2e565b610f5f565b600191505092915050565b6107b1611122565b600160095f6101000a81548160ff021916908315150217905550565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6107fa611122565b5f600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fd5f9b51e903d966419add6cb48461e8ae34261a1156919060141a966f0f7a6c260405160405180910390a250565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610916611122565b61091f5f6116ce565b565b610929611122565b5f60095f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461097b90611dd1565b80601f01602080910402602001604051908101604052809291908181526020018280546109a790611dd1565b80156109f25780601f106109c9576101008083540402835291602001916109f2565b820191905f5260205f20905b8154815290600101906020018083116109d557829003601f168201915b5050505050905090565b610a04611122565b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167faa8c0dd2f46732d1b5ab9ab8521ca4ffbf5f2451f6bda5510b6d3bf74bc66fc760405160405180910390a250565b600b602052805f5260405f205f915054906101000a900460ff1681565b600c602052805f5260405f205f915054906101000a900460ff1681565b5f80610ae3610f58565b90505f610af08286610c67565b905083811015610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90611ed1565b60405180910390fd5b610b428286868403610f5f565b60019250505092915050565b5f80610b58610f58565b9050610b6581858561122b565b600191505092915050565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b610b90611122565b6001600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f11f6320a57932051beb1326d5708371634e038df291d88dbaa20b84a8bdef6c860405160405180910390a250565b610c33611122565b600160095f6101000a81548160ff021916908315150217905550565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610cf1611122565b6001600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f300d6bab30472c7b1c8010e9cfa53ebbfc58e7dd2cb0b55dac9c5bd7e97657ee60405160405180910390a250565b610d94611122565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df990611f5f565b60405180910390fd5b610e0b816116ce565b50565b60085481565b610e1c611122565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f3ef89d0412f4c92cfc6b10bff5a4cc632f6cfb8e00491c86ede69cfcd0681cc060405160405180910390a250565b610ebe611122565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f8273fa3eb0bea439f1dccc317946ca11fb3e2d61a66620969b86039bc4fe79da60405160405180910390a250565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490611fed565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361103b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110329061207b565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111159190611c02565b60405180910390a3505050565b61112a610f58565b73ffffffffffffffffffffffffffffffffffffffff16611148610944565b73ffffffffffffffffffffffffffffffffffffffff161461119e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611195906120e3565b60405180910390fd5b565b5f6111ab8484610c67565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112255781811015611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e9061214b565b60405180910390fd5b6112248484848403610f5f565b5b50505050565b60095f9054906101000a900460ff16611279576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611270906121b3565b60405180910390fd5b600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156113175750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90612241565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb906122cf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611432576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114299061235d565b60405180910390fd5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b3906123eb565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166116be57600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806115a55750600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61160d576008546115c7826115b9856108c9565b61179190919063ffffffff16565b1115611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90612453565b60405180910390fd5b6116bd565b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156116bc5760085461167a8261166c856108c9565b61179190919063ffffffff16565b11156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b290612453565b60405180910390fd5b5b5b5b6116c98383836117a6565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f818361179e9190611e2e565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b906122cf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118799061235d565b60405180910390fd5b61188d838383611a12565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611910576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611907906124e1565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119f99190611c02565b60405180910390a3611a0c848484611a17565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611a53578082015181840152602081019050611a38565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611a7882611a1c565b611a828185611a26565b9350611a92818560208601611a36565b611a9b81611a5e565b840191505092915050565b5f6020820190508181035f830152611abe8184611a6e565b905092915050565b5f8115159050919050565b611ada81611ac6565b82525050565b5f602082019050611af35f830184611ad1565b92915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611b2682611afd565b9050919050565b611b3681611b1c565b8114611b40575f80fd5b50565b5f81359050611b5181611b2d565b92915050565b5f819050919050565b611b6981611b57565b8114611b73575f80fd5b50565b5f81359050611b8481611b60565b92915050565b5f8060408385031215611ba057611b9f611af9565b5b5f611bad85828601611b43565b9250506020611bbe85828601611b76565b9150509250929050565b5f60208284031215611bdd57611bdc611af9565b5b5f611bea84828501611b76565b91505092915050565b611bfc81611b57565b82525050565b5f602082019050611c155f830184611bf3565b92915050565b5f805f60608486031215611c3257611c31611af9565b5b5f611c3f86828701611b43565b9350506020611c5086828701611b43565b9250506040611c6186828701611b76565b9150509250925092565b5f60ff82169050919050565b611c8081611c6b565b82525050565b5f602082019050611c995f830184611c77565b92915050565b611ca881611b1c565b82525050565b5f602082019050611cc15f830184611c9f565b92915050565b5f60208284031215611cdc57611cdb611af9565b5b5f611ce984828501611b43565b91505092915050565b5f819050919050565b5f611d15611d10611d0b84611afd565b611cf2565b611afd565b9050919050565b5f611d2682611cfb565b9050919050565b5f611d3782611d1c565b9050919050565b611d4781611d2d565b82525050565b5f602082019050611d605f830184611d3e565b92915050565b5f8060408385031215611d7c57611d7b611af9565b5b5f611d8985828601611b43565b9250506020611d9a85828601611b43565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611de857607f821691505b602082108103611dfb57611dfa611da4565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611e3882611b57565b9150611e4383611b57565b9250828201905080821115611e5b57611e5a611e01565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611ebb602583611a26565b9150611ec682611e61565b604082019050919050565b5f6020820190508181035f830152611ee881611eaf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611f49602683611a26565b9150611f5482611eef565b604082019050919050565b5f6020820190508181035f830152611f7681611f3d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611fd7602483611a26565b9150611fe282611f7d565b604082019050919050565b5f6020820190508181035f83015261200481611fcb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612065602283611a26565b91506120708261200b565b604082019050919050565b5f6020820190508181035f83015261209281612059565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6120cd602083611a26565b91506120d882612099565b602082019050919050565b5f6020820190508181035f8301526120fa816120c1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612135601d83611a26565b915061214082612101565b602082019050919050565b5f6020820190508181035f83015261216281612129565b9050919050565b7f54726164696e67206e6f7420656e61626c65642e0000000000000000000000005f82015250565b5f61219d601483611a26565b91506121a882612169565b602082019050919050565b5f6020820190508181035f8301526121ca81612191565b9050919050565b7f4569746865722073656e646572206f7220726563697069656e742069732044655f8201527f72656b2e00000000000000000000000000000000000000000000000000000000602082015250565b5f61222b602483611a26565b9150612236826121d1565b604082019050919050565b5f6020820190508181035f8301526122588161221f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6122b9602583611a26565b91506122c48261225f565b604082019050919050565b5f6020820190508181035f8301526122e6816122ad565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612347602383611a26565b9150612352826122ed565b604082019050919050565b5f6020820190508181035f8301526123748161233b565b9050919050565b7f596f752061726520696e2074686520547261702c207072657061726520746f205f8201527f6469652e00000000000000000000000000000000000000000000000000000000602082015250565b5f6123d5602483611a26565b91506123e08261237b565b604082019050919050565b5f6020820190508181035f830152612402816123c9565b9050919050565b7f45786365656473204d61782057616c6c65742053697a650000000000000000005f82015250565b5f61243d601783611a26565b915061244882612409565b602082019050919050565b5f6020820190508181035f83015261246a81612431565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6124cb602683611a26565b91506124d682612471565b604082019050919050565b5f6020820190508181035f8301526124f8816124bf565b905091905056fea26469706673582212203758b4317e6a476147806622a9263277517f7d8320ec8f69329abdd6bcdf19b964736f6c63430008150033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610204575f3560e01c80638da5cb5b11610118578063cd6814d5116100ab578063ec277cf01161007a578063ec277cf0146105ca578063f2fde38b146105e6578063f833ab8614610602578063fa0cfbb014610620578063faa41dba1461063c57610204565b8063cd6814d514610556578063cf63c51014610572578063d82649201461057c578063dd62ed3e1461059a57610204565b80639d20d666116100e75780639d20d666146104a8578063a457c2d7146104d8578063a9059cbb14610508578063ad5c46481461053857610204565b80638da5cb5b1461042057806395d89b411461043e5780639a98dc9c1461045c5780639d10c3881461047857610204565b8063395093511161019b57806359d0f7131161016a57806359d0f7131461038e5780635d912d5a146103ac57806370a08231146103dc578063715018a61461040c5780638456cb591461041657610204565b8063395093511461031a5780633f4ba83a1461034a57806349bd5a5e14610354578063524739661461037257610204565b806318160ddd116101d757806318160ddd1461029057806323b872dd146102ae578063313ce567146102de57806332cb6b0c146102fc57610204565b806306fdde03146102085780630925070f14610226578063095ea7b3146102445780630afedf6c14610274575b5f80fd5b610210610658565b60405161021d9190611aa6565b60405180910390f35b61022e6106e8565b60405161023b9190611ae0565b60405180910390f35b61025e60048036038101906102599190611b8a565b6106fa565b60405161026b9190611ae0565b60405180910390f35b61028e60048036038101906102899190611bc8565b61071c565b005b61029861072e565b6040516102a59190611c02565b60405180910390f35b6102c860048036038101906102c39190611c1b565b610737565b6040516102d59190611ae0565b60405180910390f35b6102e6610765565b6040516102f39190611c86565b60405180910390f35b61030461076d565b6040516103119190611c02565b60405180910390f35b610334600480360381019061032f9190611b8a565b610773565b6040516103419190611ae0565b60405180910390f35b6103526107a9565b005b61035c6107cd565b6040516103699190611cae565b60405180910390f35b61038c60048036038101906103879190611cc7565b6107f2565b005b610396610894565b6040516103a39190611d4d565b60405180910390f35b6103c660048036038101906103c19190611cc7565b6108ac565b6040516103d39190611ae0565b60405180910390f35b6103f660048036038101906103f19190611cc7565b6108c9565b6040516104039190611c02565b60405180910390f35b61041461090e565b005b61041e610921565b005b610428610944565b6040516104359190611cae565b60405180910390f35b61044661096c565b6040516104539190611aa6565b60405180910390f35b61047660048036038101906104719190611cc7565b6109fc565b005b610492600480360381019061048d9190611cc7565b610a9f565b60405161049f9190611ae0565b60405180910390f35b6104c260048036038101906104bd9190611cc7565b610abc565b6040516104cf9190611ae0565b60405180910390f35b6104f260048036038101906104ed9190611b8a565b610ad9565b6040516104ff9190611ae0565b60405180910390f35b610522600480360381019061051d9190611b8a565b610b4e565b60405161052f9190611ae0565b60405180910390f35b610540610b70565b60405161054d9190611cae565b60405180910390f35b610570600480360381019061056b9190611cc7565b610b88565b005b61057a610c2b565b005b610584610c4f565b6040516105919190611cae565b60405180910390f35b6105b460048036038101906105af9190611d66565b610c67565b6040516105c19190611c02565b60405180910390f35b6105e460048036038101906105df9190611cc7565b610ce9565b005b61060060048036038101906105fb9190611cc7565b610d8c565b005b61060a610e0e565b6040516106179190611c02565b60405180910390f35b61063a60048036038101906106359190611cc7565b610e14565b005b61065660048036038101906106519190611cc7565b610eb6565b005b60606003805461066790611dd1565b80601f016020809104026020016040519081016040528092919081815260200182805461069390611dd1565b80156106de5780601f106106b5576101008083540402835291602001916106de565b820191905f5260205f20905b8154815290600101906020018083116106c157829003601f168201915b5050505050905090565b60095f9054906101000a900460ff1681565b5f80610704610f58565b9050610711818585610f5f565b600191505092915050565b610724611122565b8060088190555050565b5f600254905090565b5f80610741610f58565b905061074e8582856111a0565b61075985858561122b565b60019150509392505050565b5f6012905090565b60075481565b5f8061077d610f58565b905061079e81858561078f8589610c67565b6107999190611e2e565b610f5f565b600191505092915050565b6107b1611122565b600160095f6101000a81548160ff021916908315150217905550565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6107fa611122565b5f600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fd5f9b51e903d966419add6cb48461e8ae34261a1156919060141a966f0f7a6c260405160405180910390a250565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610916611122565b61091f5f6116ce565b565b610929611122565b5f60095f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461097b90611dd1565b80601f01602080910402602001604051908101604052809291908181526020018280546109a790611dd1565b80156109f25780601f106109c9576101008083540402835291602001916109f2565b820191905f5260205f20905b8154815290600101906020018083116109d557829003601f168201915b5050505050905090565b610a04611122565b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167faa8c0dd2f46732d1b5ab9ab8521ca4ffbf5f2451f6bda5510b6d3bf74bc66fc760405160405180910390a250565b600b602052805f5260405f205f915054906101000a900460ff1681565b600c602052805f5260405f205f915054906101000a900460ff1681565b5f80610ae3610f58565b90505f610af08286610c67565b905083811015610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90611ed1565b60405180910390fd5b610b428286868403610f5f565b60019250505092915050565b5f80610b58610f58565b9050610b6581858561122b565b600191505092915050565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b610b90611122565b6001600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f11f6320a57932051beb1326d5708371634e038df291d88dbaa20b84a8bdef6c860405160405180910390a250565b610c33611122565b600160095f6101000a81548160ff021916908315150217905550565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610cf1611122565b6001600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f300d6bab30472c7b1c8010e9cfa53ebbfc58e7dd2cb0b55dac9c5bd7e97657ee60405160405180910390a250565b610d94611122565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df990611f5f565b60405180910390fd5b610e0b816116ce565b50565b60085481565b610e1c611122565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f3ef89d0412f4c92cfc6b10bff5a4cc632f6cfb8e00491c86ede69cfcd0681cc060405160405180910390a250565b610ebe611122565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f8273fa3eb0bea439f1dccc317946ca11fb3e2d61a66620969b86039bc4fe79da60405160405180910390a250565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490611fed565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361103b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110329061207b565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111159190611c02565b60405180910390a3505050565b61112a610f58565b73ffffffffffffffffffffffffffffffffffffffff16611148610944565b73ffffffffffffffffffffffffffffffffffffffff161461119e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611195906120e3565b60405180910390fd5b565b5f6111ab8484610c67565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112255781811015611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e9061214b565b60405180910390fd5b6112248484848403610f5f565b5b50505050565b60095f9054906101000a900460ff16611279576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611270906121b3565b60405180910390fd5b600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156113175750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90612241565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb906122cf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611432576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114299061235d565b60405180910390fd5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b3906123eb565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166116be57600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806115a55750600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61160d576008546115c7826115b9856108c9565b61179190919063ffffffff16565b1115611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90612453565b60405180910390fd5b6116bd565b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156116bc5760085461167a8261166c856108c9565b61179190919063ffffffff16565b11156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b290612453565b60405180910390fd5b5b5b5b6116c98383836117a6565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f818361179e9190611e2e565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b906122cf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118799061235d565b60405180910390fd5b61188d838383611a12565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611910576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611907906124e1565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119f99190611c02565b60405180910390a3611a0c848484611a17565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611a53578082015181840152602081019050611a38565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611a7882611a1c565b611a828185611a26565b9350611a92818560208601611a36565b611a9b81611a5e565b840191505092915050565b5f6020820190508181035f830152611abe8184611a6e565b905092915050565b5f8115159050919050565b611ada81611ac6565b82525050565b5f602082019050611af35f830184611ad1565b92915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611b2682611afd565b9050919050565b611b3681611b1c565b8114611b40575f80fd5b50565b5f81359050611b5181611b2d565b92915050565b5f819050919050565b611b6981611b57565b8114611b73575f80fd5b50565b5f81359050611b8481611b60565b92915050565b5f8060408385031215611ba057611b9f611af9565b5b5f611bad85828601611b43565b9250506020611bbe85828601611b76565b9150509250929050565b5f60208284031215611bdd57611bdc611af9565b5b5f611bea84828501611b76565b91505092915050565b611bfc81611b57565b82525050565b5f602082019050611c155f830184611bf3565b92915050565b5f805f60608486031215611c3257611c31611af9565b5b5f611c3f86828701611b43565b9350506020611c5086828701611b43565b9250506040611c6186828701611b76565b9150509250925092565b5f60ff82169050919050565b611c8081611c6b565b82525050565b5f602082019050611c995f830184611c77565b92915050565b611ca881611b1c565b82525050565b5f602082019050611cc15f830184611c9f565b92915050565b5f60208284031215611cdc57611cdb611af9565b5b5f611ce984828501611b43565b91505092915050565b5f819050919050565b5f611d15611d10611d0b84611afd565b611cf2565b611afd565b9050919050565b5f611d2682611cfb565b9050919050565b5f611d3782611d1c565b9050919050565b611d4781611d2d565b82525050565b5f602082019050611d605f830184611d3e565b92915050565b5f8060408385031215611d7c57611d7b611af9565b5b5f611d8985828601611b43565b9250506020611d9a85828601611b43565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611de857607f821691505b602082108103611dfb57611dfa611da4565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611e3882611b57565b9150611e4383611b57565b9250828201905080821115611e5b57611e5a611e01565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611ebb602583611a26565b9150611ec682611e61565b604082019050919050565b5f6020820190508181035f830152611ee881611eaf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611f49602683611a26565b9150611f5482611eef565b604082019050919050565b5f6020820190508181035f830152611f7681611f3d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611fd7602483611a26565b9150611fe282611f7d565b604082019050919050565b5f6020820190508181035f83015261200481611fcb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612065602283611a26565b91506120708261200b565b604082019050919050565b5f6020820190508181035f83015261209281612059565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6120cd602083611a26565b91506120d882612099565b602082019050919050565b5f6020820190508181035f8301526120fa816120c1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612135601d83611a26565b915061214082612101565b602082019050919050565b5f6020820190508181035f83015261216281612129565b9050919050565b7f54726164696e67206e6f7420656e61626c65642e0000000000000000000000005f82015250565b5f61219d601483611a26565b91506121a882612169565b602082019050919050565b5f6020820190508181035f8301526121ca81612191565b9050919050565b7f4569746865722073656e646572206f7220726563697069656e742069732044655f8201527f72656b2e00000000000000000000000000000000000000000000000000000000602082015250565b5f61222b602483611a26565b9150612236826121d1565b604082019050919050565b5f6020820190508181035f8301526122588161221f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6122b9602583611a26565b91506122c48261225f565b604082019050919050565b5f6020820190508181035f8301526122e6816122ad565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612347602383611a26565b9150612352826122ed565b604082019050919050565b5f6020820190508181035f8301526123748161233b565b9050919050565b7f596f752061726520696e2074686520547261702c207072657061726520746f205f8201527f6469652e00000000000000000000000000000000000000000000000000000000602082015250565b5f6123d5602483611a26565b91506123e08261237b565b604082019050919050565b5f6020820190508181035f830152612402816123c9565b9050919050565b7f45786365656473204d61782057616c6c65742053697a650000000000000000005f82015250565b5f61243d601783611a26565b915061244882612409565b602082019050919050565b5f6020820190508181035f83015261246a81612431565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6124cb602683611a26565b91506124d682612471565b604082019050919050565b5f6020820190508181035f8301526124f8816124bf565b905091905056fea26469706673582212203758b4317e6a476147806622a9263277517f7d8320ec8f69329abdd6bcdf19b964736f6c63430008150033

Deployed Bytecode Sourcemap

29196:3280:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18047:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29715:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20407:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31956:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19176:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21188:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19018:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29605:51;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21858:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32336:65;;;:::i;:::-;;29396:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31521:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29274:114;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29747:43;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19347:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11502:103;;;:::i;:::-;;32409:64;;;:::i;:::-;;10861:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18266:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31672:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29797:38;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29842;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22599:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19680:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29431:73;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32069:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30371:64;;;:::i;:::-;;29512:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19936:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31363:146;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11760:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29663:45;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31807:141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32198:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18047:100;18101:13;18134:5;18127:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18047:100;:::o;29715:23::-;;;;;;;;;;;;;:::o;20407:201::-;20490:4;20507:13;20523:12;:10;:12::i;:::-;20507:28;;20546:32;20555:5;20562:7;20571:6;20546:8;:32::i;:::-;20596:4;20589:11;;;20407:201;;;;:::o;31956:105::-;10747:13;:11;:13::i;:::-;32040::::1;32030:7;:23;;;;31956:105:::0;:::o;19176:108::-;19237:7;19264:12;;19257:19;;19176:108;:::o;21188:261::-;21285:4;21302:15;21320:12;:10;:12::i;:::-;21302:30;;21343:38;21359:4;21365:7;21374:6;21343:15;:38::i;:::-;21392:27;21402:4;21408:2;21412:6;21392:9;:27::i;:::-;21437:4;21430:11;;;21188:261;;;;;:::o;19018:93::-;19076:5;19101:2;19094:9;;19018:93;:::o;29605:51::-;;;;:::o;21858:238::-;21946:4;21963:13;21979:12;:10;:12::i;:::-;21963:28;;22002:64;22011:5;22018:7;22055:10;22027:25;22037:5;22044:7;22027:9;:25::i;:::-;:38;;;;:::i;:::-;22002:8;:64::i;:::-;22084:4;22077:11;;;21858:238;;;;:::o;32336:65::-;10747:13;:11;:13::i;:::-;32389:4:::1;32383:3;;:10;;;;;;;;;;;;;;;;;;32336:65::o:0;29396:28::-;;;;;;;;;;;;;:::o;31521:143::-;10747:13;:11;:13::i;:::-;31616:5:::1;31593:11;:20;31605:7;31593:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;31648:7;31637:19;;;;;;;;;;;;31521:143:::0;:::o;29274:114::-;29345:42;29274:114;:::o;29747:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;19347:127::-;19421:7;19448:9;:18;19458:7;19448:18;;;;;;;;;;;;;;;;19441:25;;19347:127;;;:::o;11502:103::-;10747:13;:11;:13::i;:::-;11567:30:::1;11594:1;11567:18;:30::i;:::-;11502:103::o:0;32409:64::-;10747:13;:11;:13::i;:::-;32460:5:::1;32454:3;;:11;;;;;;;;;;;;;;;;;;32409:64::o:0;10861:87::-;10907:7;10934:6;;;;;;;;;;;10927:13;;10861:87;:::o;18266:104::-;18322:13;18355:7;18348:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18266:104;:::o;31672:127::-;10747:13;:11;:13::i;:::-;31754:4:::1;31736:6;:15;31743:7;31736:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;31783:7;31774:17;;;;;;;;;;;;31672:127:::0;:::o;29797:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;29842:::-;;;;;;;;;;;;;;;;;;;;;;:::o;22599:436::-;22692:4;22709:13;22725:12;:10;:12::i;:::-;22709:28;;22748:24;22775:25;22785:5;22792:7;22775:9;:25::i;:::-;22748:52;;22839:15;22819:16;:35;;22811:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;22932:60;22941:5;22948:7;22976:15;22957:16;:34;22932:8;:60::i;:::-;23023:4;23016:11;;;;22599:436;;;;:::o;19680:193::-;19759:4;19776:13;19792:12;:10;:12::i;:::-;19776:28;;19815;19825:5;19832:2;19836:6;19815:9;:28::i;:::-;19861:4;19854:11;;;19680:193;;;;:::o;29431:73::-;29462:42;29431:73;:::o;32069:121::-;10747:13;:11;:13::i;:::-;32146:4:::1;32128:6;:15;32135:7;32128:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;32174:7;32166:16;;;;;;;;;;;;32069:121:::0;:::o;30371:64::-;10747:13;:11;:13::i;:::-;30423:4:::1;30417:3;;:10;;;;;;;;;;;;;;;;;;30371:64::o:0;29512:83::-;29553:42;29512:83;:::o;19936:151::-;20025:7;20052:11;:18;20064:5;20052:18;;;;;;;;;;;;;;;:27;20071:7;20052:27;;;;;;;;;;;;;;;;20045:34;;19936:151;;;;:::o;31363:146::-;10747:13;:11;:13::i;:::-;31460:4:::1;31437:11;:20;31449:7;31437:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;31493:7;31480:21;;;;;;;;;;;;31363:146:::0;:::o;11760:201::-;10747:13;:11;:13::i;:::-;11869:1:::1;11849:22;;:8;:22;;::::0;11841:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;11925:28;11944:8;11925:18;:28::i;:::-;11760:201:::0;:::o;29663:45::-;;;;:::o;31807:141::-;10747:13;:11;:13::i;:::-;31894:5:::1;31876:6;:15;31883:7;31876:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;31932:7;31915:25;;;;;;;;;;;;31807:141:::0;:::o;32198:130::-;10747:13;:11;:13::i;:::-;32281:5:::1;32263:6;:15;32270:7;32263:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;32311:7;32302:17;;;;;;;;;;;;32198:130:::0;:::o;9412:98::-;9465:7;9492:10;9485:17;;9412:98;:::o;26592:346::-;26711:1;26694:19;;:5;:19;;;26686:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26792:1;26773:21;;:7;:21;;;26765:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26876:6;26846:11;:18;26858:5;26846:18;;;;;;;;;;;;;;;:27;26865:7;26846:27;;;;;;;;;;;;;;;:36;;;;26914:7;26898:32;;26907:5;26898:32;;;26923:6;26898:32;;;;;;:::i;:::-;;;;;;;;26592:346;;;:::o;11026:132::-;11101:12;:10;:12::i;:::-;11090:23;;:7;:5;:7::i;:::-;:23;;;11082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11026:132::o;27229:419::-;27330:24;27357:25;27367:5;27374:7;27357:9;:25::i;:::-;27330:52;;27417:17;27397:16;:37;27393:248;;27479:6;27459:16;:26;;27451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27563:51;27572:5;27579:7;27607:6;27588:16;:25;27563:8;:51::i;:::-;27393:248;27319:329;27229:419;;;:::o;30443:908::-;30550:3;;;;;;;;;;;30542:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;30598:11;:19;30610:6;30598:19;;;;;;;;;;;;;;;;;;;;;;;;;30597:20;:47;;;;;30622:11;:22;30634:9;30622:22;;;;;;;;;;;;;;;;;;;;;;;;;30621:23;30597:47;30589:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;30722:1;30704:20;;:6;:20;;;30696:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;30806:1;30785:23;;:9;:23;;;30777:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30869:6;:14;30876:6;30869:14;;;;;;;;;;;;;;;;;;;;;;;;;30867:17;30859:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;30943:6;:17;30950:9;30943:17;;;;;;;;;;;;;;;;;;;;;;;;;30938:351;;30983:6;:14;30990:6;30983:14;;;;;;;;;;;;;;;;;;;;;;;;;:35;;;;31001:6;:17;31008:9;31001:17;;;;;;;;;;;;;;;;;;;;;;;;;30983:35;30977:301;;31084:7;;31048:32;31073:6;31048:20;31058:9;31048;:20::i;:::-;:24;;:32;;;;:::i;:::-;:43;;31040:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;30977:301;;;31145:6;:17;31152:9;31145:17;;;;;;;;;;;;;;;;;;;;;;;;;31141:137;;;31227:7;;31191:32;31216:6;31191:20;31201:9;31191;:20::i;:::-;:24;;:32;;;;:::i;:::-;:43;;31183:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;31141:137;30977:301;30938:351;31301:42;31317:6;31325:9;31336:6;31301:15;:42::i;:::-;30443:908;;;:::o;12121:191::-;12195:16;12214:6;;;;;;;;;;;12195:25;;12240:8;12231:6;;:17;;;;;;;;;;;;;;;;;;12295:8;12264:40;;12285:8;12264:40;;;;;;;;;;;;12184:128;12121:191;:::o;4670:98::-;4728:7;4759:1;4755;:5;;;;:::i;:::-;4748:12;;4670:98;;;;:::o;23505:806::-;23618:1;23602:18;;:4;:18;;;23594:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23695:1;23681:16;;:2;:16;;;23673:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;23750:38;23771:4;23777:2;23781:6;23750:20;:38::i;:::-;23801:19;23823:9;:15;23833:4;23823:15;;;;;;;;;;;;;;;;23801:37;;23872:6;23857:11;:21;;23849:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;23989:6;23975:11;:20;23957:9;:15;23967:4;23957:15;;;;;;;;;;;;;;;:38;;;;24192:6;24175:9;:13;24185:2;24175:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;24242:2;24227:26;;24236:4;24227:26;;;24246:6;24227:26;;;;;;:::i;:::-;;;;;;;;24266:37;24286:4;24292:2;24296:6;24266:19;:37::i;:::-;23583:728;23505:806;;;:::o;28248:91::-;;;;:::o;28943:90::-;;;;:::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;1349:90::-;1383:7;1426:5;1419:13;1412:21;1401:32;;1349:90;;;:::o;1445:109::-;1526:21;1541:5;1526:21;:::i;:::-;1521:3;1514:34;1445:109;;:::o;1560:210::-;1647:4;1685:2;1674:9;1670:18;1662:26;;1698:65;1760:1;1749:9;1745:17;1736:6;1698:65;:::i;:::-;1560:210;;;;:::o;1857:117::-;1966:1;1963;1956:12;2103:126;2140:7;2180:42;2173:5;2169:54;2158:65;;2103:126;;;:::o;2235:96::-;2272:7;2301:24;2319:5;2301:24;:::i;:::-;2290:35;;2235:96;;;:::o;2337:122::-;2410:24;2428:5;2410:24;:::i;:::-;2403:5;2400:35;2390:63;;2449:1;2446;2439:12;2390:63;2337:122;:::o;2465:139::-;2511:5;2549:6;2536:20;2527:29;;2565:33;2592:5;2565:33;:::i;:::-;2465:139;;;;:::o;2610:77::-;2647:7;2676:5;2665:16;;2610:77;;;:::o;2693:122::-;2766:24;2784:5;2766:24;:::i;:::-;2759:5;2756:35;2746:63;;2805:1;2802;2795:12;2746:63;2693:122;:::o;2821:139::-;2867:5;2905:6;2892:20;2883:29;;2921:33;2948:5;2921:33;:::i;:::-;2821:139;;;;:::o;2966:474::-;3034:6;3042;3091:2;3079:9;3070:7;3066:23;3062:32;3059:119;;;3097:79;;:::i;:::-;3059:119;3217:1;3242:53;3287:7;3278:6;3267:9;3263:22;3242:53;:::i;:::-;3232:63;;3188:117;3344:2;3370:53;3415:7;3406:6;3395:9;3391:22;3370:53;:::i;:::-;3360:63;;3315:118;2966:474;;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:329::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:60::-;5903:3;5924:5;5917:12;;5875:60;;;:::o;5941:142::-;5991:9;6024:53;6042:34;6051:24;6069:5;6051:24;:::i;:::-;6042:34;:::i;:::-;6024:53;:::i;:::-;6011:66;;5941:142;;;:::o;6089:126::-;6139:9;6172:37;6203:5;6172:37;:::i;:::-;6159:50;;6089:126;;;:::o;6221:152::-;6297:9;6330:37;6361:5;6330:37;:::i;:::-;6317:50;;6221:152;;;:::o;6379:183::-;6492:63;6549:5;6492:63;:::i;:::-;6487:3;6480:76;6379:183;;:::o;6568:274::-;6687:4;6725:2;6714:9;6710:18;6702:26;;6738:97;6832:1;6821:9;6817:17;6808:6;6738:97;:::i;:::-;6568:274;;;;:::o;6848:474::-;6916:6;6924;6973:2;6961:9;6952:7;6948:23;6944:32;6941:119;;;6979:79;;:::i;:::-;6941:119;7099:1;7124:53;7169:7;7160:6;7149:9;7145:22;7124:53;:::i;:::-;7114:63;;7070:117;7226:2;7252:53;7297:7;7288:6;7277:9;7273:22;7252:53;:::i;:::-;7242:63;;7197:118;6848:474;;;;;:::o;7328:180::-;7376:77;7373:1;7366:88;7473:4;7470:1;7463:15;7497:4;7494:1;7487:15;7514:320;7558:6;7595:1;7589:4;7585:12;7575:22;;7642:1;7636:4;7632:12;7663:18;7653:81;;7719:4;7711:6;7707:17;7697:27;;7653:81;7781:2;7773:6;7770:14;7750:18;7747:38;7744:84;;7800:18;;:::i;:::-;7744:84;7565:269;7514:320;;;:::o;7840:180::-;7888:77;7885:1;7878:88;7985:4;7982:1;7975:15;8009:4;8006:1;7999:15;8026:191;8066:3;8085:20;8103:1;8085:20;:::i;:::-;8080:25;;8119:20;8137:1;8119:20;:::i;:::-;8114:25;;8162:1;8159;8155:9;8148:16;;8183:3;8180:1;8177:10;8174:36;;;8190:18;;:::i;:::-;8174:36;8026:191;;;;:::o;8223:224::-;8363:34;8359:1;8351:6;8347:14;8340:58;8432:7;8427:2;8419:6;8415:15;8408:32;8223:224;:::o;8453:366::-;8595:3;8616:67;8680:2;8675:3;8616:67;:::i;:::-;8609:74;;8692:93;8781:3;8692:93;:::i;:::-;8810:2;8805:3;8801:12;8794:19;;8453:366;;;:::o;8825:419::-;8991:4;9029:2;9018:9;9014:18;9006:26;;9078:9;9072:4;9068:20;9064:1;9053:9;9049:17;9042:47;9106:131;9232:4;9106:131;:::i;:::-;9098:139;;8825:419;;;:::o;9250:225::-;9390:34;9386:1;9378:6;9374:14;9367:58;9459:8;9454:2;9446:6;9442:15;9435:33;9250:225;:::o;9481:366::-;9623:3;9644:67;9708:2;9703:3;9644:67;:::i;:::-;9637:74;;9720:93;9809:3;9720:93;:::i;:::-;9838:2;9833:3;9829:12;9822:19;;9481:366;;;:::o;9853:419::-;10019:4;10057:2;10046:9;10042:18;10034:26;;10106:9;10100:4;10096:20;10092:1;10081:9;10077:17;10070:47;10134:131;10260:4;10134:131;:::i;:::-;10126:139;;9853:419;;;:::o;10278:223::-;10418:34;10414:1;10406:6;10402:14;10395:58;10487:6;10482:2;10474:6;10470:15;10463:31;10278:223;:::o;10507:366::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:419::-;11045:4;11083:2;11072:9;11068:18;11060:26;;11132:9;11126:4;11122:20;11118:1;11107:9;11103:17;11096:47;11160:131;11286:4;11160:131;:::i;:::-;11152:139;;10879:419;;;:::o;11304:221::-;11444:34;11440:1;11432:6;11428:14;11421:58;11513:4;11508:2;11500:6;11496:15;11489:29;11304:221;:::o;11531:366::-;11673:3;11694:67;11758:2;11753:3;11694:67;:::i;:::-;11687:74;;11770:93;11859:3;11770:93;:::i;:::-;11888:2;11883:3;11879:12;11872:19;;11531:366;;;:::o;11903:419::-;12069:4;12107:2;12096:9;12092:18;12084:26;;12156:9;12150:4;12146:20;12142:1;12131:9;12127:17;12120:47;12184:131;12310:4;12184:131;:::i;:::-;12176:139;;11903:419;;;:::o;12328:182::-;12468:34;12464:1;12456:6;12452:14;12445:58;12328:182;:::o;12516:366::-;12658:3;12679:67;12743:2;12738:3;12679:67;:::i;:::-;12672:74;;12755:93;12844:3;12755:93;:::i;:::-;12873:2;12868:3;12864:12;12857:19;;12516:366;;;:::o;12888:419::-;13054:4;13092:2;13081:9;13077:18;13069:26;;13141:9;13135:4;13131:20;13127:1;13116:9;13112:17;13105:47;13169:131;13295:4;13169:131;:::i;:::-;13161:139;;12888:419;;;:::o;13313:179::-;13453:31;13449:1;13441:6;13437:14;13430:55;13313:179;:::o;13498:366::-;13640:3;13661:67;13725:2;13720:3;13661:67;:::i;:::-;13654:74;;13737:93;13826:3;13737:93;:::i;:::-;13855:2;13850:3;13846:12;13839:19;;13498:366;;;:::o;13870:419::-;14036:4;14074:2;14063:9;14059:18;14051:26;;14123:9;14117:4;14113:20;14109:1;14098:9;14094:17;14087:47;14151:131;14277:4;14151:131;:::i;:::-;14143:139;;13870:419;;;:::o;14295:170::-;14435:22;14431:1;14423:6;14419:14;14412:46;14295:170;:::o;14471:366::-;14613:3;14634:67;14698:2;14693:3;14634:67;:::i;:::-;14627:74;;14710:93;14799:3;14710:93;:::i;:::-;14828:2;14823:3;14819:12;14812:19;;14471:366;;;:::o;14843:419::-;15009:4;15047:2;15036:9;15032:18;15024:26;;15096:9;15090:4;15086:20;15082:1;15071:9;15067:17;15060:47;15124:131;15250:4;15124:131;:::i;:::-;15116:139;;14843:419;;;:::o;15268:223::-;15408:34;15404:1;15396:6;15392:14;15385:58;15477:6;15472:2;15464:6;15460:15;15453:31;15268:223;:::o;15497:366::-;15639:3;15660:67;15724:2;15719:3;15660:67;:::i;:::-;15653:74;;15736:93;15825:3;15736:93;:::i;:::-;15854:2;15849:3;15845:12;15838:19;;15497:366;;;:::o;15869:419::-;16035:4;16073:2;16062:9;16058:18;16050:26;;16122:9;16116:4;16112:20;16108:1;16097:9;16093:17;16086:47;16150:131;16276:4;16150:131;:::i;:::-;16142:139;;15869:419;;;:::o;16294:224::-;16434:34;16430:1;16422:6;16418:14;16411:58;16503:7;16498:2;16490:6;16486:15;16479:32;16294:224;:::o;16524:366::-;16666:3;16687:67;16751:2;16746:3;16687:67;:::i;:::-;16680:74;;16763:93;16852:3;16763:93;:::i;:::-;16881:2;16876:3;16872:12;16865:19;;16524:366;;;:::o;16896:419::-;17062:4;17100:2;17089:9;17085:18;17077:26;;17149:9;17143:4;17139:20;17135:1;17124:9;17120:17;17113:47;17177:131;17303:4;17177:131;:::i;:::-;17169:139;;16896:419;;;:::o;17321:222::-;17461:34;17457:1;17449:6;17445:14;17438:58;17530:5;17525:2;17517:6;17513:15;17506:30;17321:222;:::o;17549:366::-;17691:3;17712:67;17776:2;17771:3;17712:67;:::i;:::-;17705:74;;17788:93;17877:3;17788:93;:::i;:::-;17906:2;17901:3;17897:12;17890:19;;17549:366;;;:::o;17921:419::-;18087:4;18125:2;18114:9;18110:18;18102:26;;18174:9;18168:4;18164:20;18160:1;18149:9;18145:17;18138:47;18202:131;18328:4;18202:131;:::i;:::-;18194:139;;17921:419;;;:::o;18346:223::-;18486:34;18482:1;18474:6;18470:14;18463:58;18555:6;18550:2;18542:6;18538:15;18531:31;18346:223;:::o;18575:366::-;18717:3;18738:67;18802:2;18797:3;18738:67;:::i;:::-;18731:74;;18814:93;18903:3;18814:93;:::i;:::-;18932:2;18927:3;18923:12;18916:19;;18575:366;;;:::o;18947:419::-;19113:4;19151:2;19140:9;19136:18;19128:26;;19200:9;19194:4;19190:20;19186:1;19175:9;19171:17;19164:47;19228:131;19354:4;19228:131;:::i;:::-;19220:139;;18947:419;;;:::o;19372:173::-;19512:25;19508:1;19500:6;19496:14;19489:49;19372:173;:::o;19551:366::-;19693:3;19714:67;19778:2;19773:3;19714:67;:::i;:::-;19707:74;;19790:93;19879:3;19790:93;:::i;:::-;19908:2;19903:3;19899:12;19892:19;;19551:366;;;:::o;19923:419::-;20089:4;20127:2;20116:9;20112:18;20104:26;;20176:9;20170:4;20166:20;20162:1;20151:9;20147:17;20140:47;20204:131;20330:4;20204:131;:::i;:::-;20196:139;;19923:419;;;:::o;20348:225::-;20488:34;20484:1;20476:6;20472:14;20465:58;20557:8;20552:2;20544:6;20540:15;20533:33;20348:225;:::o;20579:366::-;20721:3;20742:67;20806:2;20801:3;20742:67;:::i;:::-;20735:74;;20818:93;20907:3;20818:93;:::i;:::-;20936:2;20931:3;20927:12;20920:19;;20579:366;;;:::o;20951:419::-;21117:4;21155:2;21144:9;21140:18;21132:26;;21204:9;21198:4;21194:20;21190:1;21179:9;21175:17;21168:47;21232:131;21358:4;21232:131;:::i;:::-;21224:139;;20951:419;;;:::o

Swarm Source

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