S Price: $0.838813 (+4.60%)

Token

Uni Tomb (UTOMB)

Overview

Max Total Supply

500 UTOMB

Holders

13

Market

Price

$0.00 @ 0.000000 S

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
16.424045029689119865 UTOMB

Value
$0.00
0xE6673c9A0A576f0582Fe01372Fa880e6E977AdD4
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
UniTomb

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2025-02-20
*/

/*
UniTomb an Algorithmic Token on Sonic backed by real yields!
/*

// SPDX-License-Identifier: MIT
// 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;
    }
}
// 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);
    }
}
// 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);
}
// 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;
        }
    }
}
pragma solidity 0.8.19;

interface IOracle {
    function update() external;

    function consult(
        address _token,
        uint256 _amountIn
    ) external view returns (uint144 amountOut);

    function twap(
        address _token,
        uint256 _amountIn
    ) external view returns (uint144 _amountOut);
}
pragma solidity 0.8.19;

library SafeMath8 {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint8 a, uint8 b) internal pure returns (uint8) {
        uint8 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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(uint8 a, uint8 b) internal pure returns (uint8) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint8 a,
        uint8 b,
        string memory errorMessage
    ) internal pure returns (uint8) {
        require(b <= a, errorMessage);
        uint8 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint8 a, uint8 b) internal pure returns (uint8) {
        // 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 0;
        }

        uint8 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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(uint8 a, uint8 b) internal pure returns (uint8) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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(
        uint8 a,
        uint8 b,
        string memory errorMessage
    ) internal pure returns (uint8) {
        require(b > 0, errorMessage);
        uint8 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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(uint8 a, uint8 b) internal pure returns (uint8) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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(
        uint8 a,
        uint8 b,
        string memory errorMessage
    ) internal pure returns (uint8) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
pragma solidity 0.8.19;

contract Operator is Context, Ownable {
    address private _operator;

    event OperatorTransferred(
        address indexed previousOperator,
        address indexed newOperator
    );

    constructor() {
        _transferOperator(_msgSender());
    }

    function operator() public view returns (address) {
        return _operator;
    }

    modifier onlyOperator() {
        require(
            _operator == _msgSender(),
            "operator: caller is not the operator"
        );
        _;
    }

    function isOperator() public view returns (bool) {
        return _msgSender() == _operator;
    }

    function transferOperator(address newOperator) public onlyOwner {
        _transferOperator(newOperator);
    }

    function _transferOperator(address newOperator) internal {
        require(
            newOperator != address(0),
            "operator: zero address given for new operator"
        );
        emit OperatorTransferred(address(0), newOperator);
        _operator = newOperator;
    }
}
// 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);
}
// 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 {}
}
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

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

contract UniTomb is ERC20Burnable, Operator {
    using SafeMath8 for uint8;
    using SafeMath for uint256;

    address public taxManager;
    address public oracle;

    // Initial pool
    uint256 public constant INITIAL_LIQUIDITY_DISTRIBUTION = 500 ether;

    // Should the taxes be calculated using the tax tiers
    bool public autoCalculateTax;
    mapping(address => bool) public isLP;

    // Current tax rate
    uint256 public taxRate;

    // Tax Tiers
    uint256[] public taxTiersTwaps = [
        0,
        5e17,
        6e17,
        7e17,
        8e17,
        9e17,
        9.5e17,
        1e18,
        1.05e18,
        1.10e18,
        1.20e18,
        1.30e18,
        1.40e18,
        1.50e18
    ];
    uint256[] public taxTiersRates = [
        2000,
        1900,
        1600,
        1200,
        1000,
        1000,
        500,
        250,
        200,
        175,
        150,
        125,
        125,
        100
    ];

    // Sender addresses excluded from Tax
    mapping(address => bool) public excludedAddresses;

    modifier onlyTaxManager() {
        require(taxManager == _msgSender(), "Caller is not the tax office");
        _;
    }

    function setTaxManager(address _taxManager) public onlyTaxManager {
        taxManager = _taxManager;
    }

    bool public rewardPoolDistributed = false;

    constructor() ERC20("Uni Tomb", "UTOMB") {
        taxManager = _msgSender();
        _mint(_msgSender(), INITIAL_LIQUIDITY_DISTRIBUTION);
    }

    /* ============= Taxation ============= */

    function getTaxTiersTwapsCount() public view returns (uint256 count) {
        return taxTiersTwaps.length;
    }

    function getTaxTiersRatesCount() public view returns (uint256 count) {
        return taxTiersRates.length;
    }

    function isAddressExcluded(address _address) public view returns (bool) {
        return excludedAddresses[_address];
    }

    function setTaxTiersTwap(
        uint8 _index,
        uint256 _value
    ) public onlyTaxManager returns (bool) {
        require(_index >= 0, "Index has to be higher than 0");
        require(
            _index < getTaxTiersTwapsCount(),
            "Index has to lower than count of tax tiers"
        );
        if (_index > 0) {
            require(_value > taxTiersTwaps[_index - 1]);
        }
        if (_index < getTaxTiersTwapsCount().sub(1)) {
            require(_value < taxTiersTwaps[_index + 1]);
        }
        taxTiersTwaps[_index] = _value;
        return true;
    }

    function setTaxTiersRate(
        uint8 _index,
        uint256 _value
    ) public onlyTaxManager returns (bool) {
        require(_index >= 0, "Index has to be higher than 0");
        require(
            _index < getTaxTiersRatesCount(),
            "Index has to lower than count of tax tiers"
        );
        taxTiersRates[_index] = _value;
        return true;
    }

    function _getUtombPrice() internal view returns (uint256 _utombPrice) {
        try IOracle(oracle).twap(address(this), 1e18) returns (uint144 _price) {
            return uint256(_price);
        } catch {
            revert("Utomb: failed to fetch UTOMB price from Oracle");
        }
    }

    function _updateTaxRate(uint256 _utombPrice) internal returns (uint256) {
        for (
            uint8 tierId = uint8(getTaxTiersTwapsCount()).sub(1);
            tierId >= 0;
            --tierId
        ) {
            if (_utombPrice >= taxTiersTwaps[tierId]) {
                require(
                    taxTiersRates[tierId] < 10000,
                    "tax equal or bigger to 100%"
                );
                taxRate = taxTiersRates[tierId];
                return taxTiersRates[tierId];
            }
        }
        return 0;
    }

    function setLP(address _LP, bool _isLP) public onlyTaxManager {
        isLP[_LP] = _isLP;
    }

    function enableAutoCalculateTax() public onlyTaxManager {
        autoCalculateTax = true;
    }

    function disableAutoCalculateTax() public onlyTaxManager {
        autoCalculateTax = false;
    }

    function setOracle(address _oracle) public onlyTaxManager {
        require(_oracle != address(0), "oracle address cannot be 0 address");
        oracle = _oracle;
    }

    function setTaxRate(uint256 _taxRate) public onlyTaxManager {
        require(!autoCalculateTax, "auto calculate tax cannot be enabled");
        require(_taxRate <= 2000, "tax equal or bigger to 20%");
        taxRate = _taxRate;
    }

    function excludeAddress(
        address _address
    ) public onlyTaxManager returns (bool) {
        require(!excludedAddresses[_address], "address can't be excluded");
        excludedAddresses[_address] = true;
        return true;
    }

    function includeAddress(
        address _address
    ) public onlyTaxManager returns (bool) {
        require(excludedAddresses[_address], "address can't be included");
        excludedAddresses[_address] = false;
        return true;
    }

    function mint(
        address recipient,
        uint256 amount
    ) public onlyOperator returns (bool) {
        _mint(recipient, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transferUTOMB(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            allowance(sender, _msgSender()).sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );

        return true;
    }

    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        address sender = _msgSender();
        _transferUTOMB(sender, recipient, amount);
        return true;
    }

    function _transferWithTax(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        uint256 taxAmount = amount.mul(taxRate).div(10000);
        uint256 amountAfterTax = amount.sub(taxAmount);
        _burn(sender, taxAmount);
        _transfer(sender, recipient, amountAfterTax);
    }

    function _transferUTOMB(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        uint256 currentTaxRate = 0;
        if (autoCalculateTax) {
            uint256 currentUtombPrice = _getUtombPrice();
            currentTaxRate = _updateTaxRate(currentUtombPrice);
        }
        if (!autoCalculateTax) {
            currentTaxRate = taxRate;
        }
        if (
            (isLP[recipient]) &&
            currentTaxRate != 0 &&
            !excludedAddresses[sender] &&
            !excludedAddresses[recipient]
        ) {
            _transferWithTax(sender, recipient, amount);
        } else {
            _transfer(sender, recipient, amount);
        }
    }

    function governanceRecoverUnsupported(
        IERC20 _token,
        uint256 _amount,
        address _to
    ) external onlyOwner {
        _token.transfer(_to, _amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INITIAL_LIQUIDITY_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"autoCalculateTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersRatesCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersTwapsCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"includeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAddressExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isLP","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPoolDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_LP","type":"address"},{"internalType":"bool","name":"_isLP","type":"bool"}],"name":"setLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oracle","type":"address"}],"name":"setOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxManager","type":"address"}],"name":"setTaxManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersRate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersTwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersRates","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersTwaps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610240604052600060809081526706f05b59d3b2000060a052670853a0d2313c000060c0526709b6e64a8ec6000060e052670b1a2bc2ec50000061010052670c7d713b49da000061012052670d2f13f7789f000061014052670de0b6b3a764000061016052670e92596fd629000061018052670f43fc2c04ee00006101a0526710a741a4627800006101c05267120a871cc00200006101e05267136dcc951d8c0000610200526714d1120d7b16000061022052620000c290600b90600e62000403565b50604080516101c0810182526107d0815261076c6020820152610640918101919091526104b060608201526103e86080820181905260a08201526101f460c082015260fa60e082015260c861010082015260af6101208201526096610140820152607d610160820181905261018082015260646101a08201526200014b90600c90600e6200045e565b50600e805460ff191690553480156200016357600080fd5b50604051806040016040528060088152602001672ab734902a37b6b160c11b815250604051806040016040528060058152602001642aaa27a6a160d91b8152508160039081620001b491906200055d565b506004620001c382826200055d565b505050620001e0620001da6200021b60201b60201c565b6200021f565b620001eb3362000271565b600780546001600160a01b031916339081179091556200021590681b1ae4d6e2ef5000006200033b565b62000651565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038116620002e35760405162461bcd60e51b815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201526c103732bb9037b832b930ba37b960991b60648201526084015b60405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216620003935760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620002da565b8060026000828254620003a7919062000629565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b8280548282559060005260206000209081019282156200044c579160200282015b828111156200044c57825182906001600160401b031690559160200191906001019062000424565b506200045a929150620004a2565b5090565b8280548282559060005260206000209081019282156200044c579160200282015b828111156200044c578251829061ffff169055916020019190600101906200047f565b5b808211156200045a5760008155600101620004a3565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004e457607f821691505b6020821081036200050557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003fe57600081815260208120601f850160051c81016020861015620005345750805b601f850160051c820191505b81811015620005555782815560010162000540565b505050505050565b81516001600160401b03811115620005795762000579620004b9565b62000591816200058a8454620004cf565b846200050b565b602080601f831160018114620005c95760008415620005b05750858301515b600019600386901b1c1916600185901b17855562000555565b600085815260208120601f198616915b82811015620005fa57888601518255948401946001909101908401620005d9565b5085821015620006195787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200064b57634e487b7160e01b600052601160045260246000fd5b92915050565b61224480620006616000396000f3fe608060405234801561001057600080fd5b50600436106102f45760003560e01c8063771a3a1d11610191578063a6431bba116100e3578063dbd5951111610097578063ee2a953511610071578063ee2a953514610667578063f2fde38b1461066f578063ff87fc7c1461068257600080fd5b8063dbd59511146105f2578063dd62ed3e14610602578063ebca1bd91461063b57600080fd5b8063b87c5a4a116100c8578063b87c5a4a146105a9578063c6d69a30146105bc578063cf011b26146105cf57600080fd5b8063a6431bba1461058e578063a9059cbb1461059657600080fd5b80638d3cc8181161014557806395d89b411161011f57806395d89b41146105665780639662676c1461056e578063a457c2d71461057b57600080fd5b80638d3cc8181461052e5780638da5cb5b1461054257806393995d4b1461055357600080fd5b80637adbf973116101765780637adbf973146104e55780637dc0d1d0146104f85780637df0f7671461050b57600080fd5b8063771a3a1d146104c957806379cc6790146104d257600080fd5b806342966c681161024a578063570ca735116101fe57806366206ce9116101d857806366206ce91461048557806370a0823114610498578063715018a6146104c157600080fd5b8063570ca735146104595780635c29908d1461046a57806365bbacd91461047d57600080fd5b80634456eda21161022f5780634456eda2146104085780634d2377301461041b57806354575af41461044657600080fd5b806342966c68146103e257806342c6b4f1146103f557600080fd5b806328d67938116102ac5780633758e6ce116102865780633758e6ce146103a957806339509351146103bc57806340c10f19146103cf57600080fd5b806328d679381461037457806329605e7714610387578063313ce5671461039a57600080fd5b8063095ea7b3116102dd578063095ea7b31461032c57806318160ddd1461034f57806323b872dd1461036157600080fd5b806306fdde03146102f9578063095e391314610317575b600080fd5b61030161068a565b60405161030e9190611ea0565b60405180910390f35b61032a610325366004611f03565b61071c565b005b61033f61033a366004611f20565b6107aa565b604051901515815260200161030e565b6002545b60405190815260200161030e565b61033f61036f366004611f4c565b6107c4565b61032a610382366004611f9b565b610813565b61032a610395366004611f03565b610898565b6040516012815260200161030e565b61033f6103b7366004611f03565b6108ac565b61033f6103ca366004611f20565b61099b565b61033f6103dd366004611f20565b6109d5565b61032a6103f0366004611fd4565b610a6a565b610353610403366004611fd4565b610a74565b6006546001600160a01b0316331461033f565b60075461042e906001600160a01b031681565b6040516001600160a01b03909116815260200161030e565b61032a610454366004611fed565b610a95565b6006546001600160a01b031661042e565b610353610478366004611fd4565b610b2f565b61032a610b3f565b61033f61049336600461202f565b610ba8565b6103536104a6366004611f03565b6001600160a01b031660009081526020819052604090205490565b61032a610d2b565b610353600a5481565b61032a6104e0366004611f20565b610d3f565b61032a6104f3366004611f03565b610d58565b60085461042e906001600160a01b031681565b61033f610519366004611f03565b60096020526000908152604090205460ff1681565b60085461033f90600160a01b900460ff1681565b6005546001600160a01b031661042e565b61033f610561366004611f03565b610e42565b610301610f2c565b600e5461033f9060ff1681565b61033f610589366004611f20565b610f3b565b600b54610353565b61033f6105a4366004611f20565b610ff0565b61033f6105b736600461202f565b610ffe565b61032a6105ca366004611fd4565b6110d9565b61033f6105dd366004611f03565b600d6020526000908152604090205460ff1681565b610353681b1ae4d6e2ef50000081565b610353610610366004612053565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61033f610649366004611f03565b6001600160a01b03166000908152600d602052604090205460ff1690565b600c54610353565b61032a61067d366004611f03565b611209565b61032a611296565b60606003805461069990612081565b80601f01602080910402602001604051908101604052809291908181526020018280546106c590612081565b80156107125780601f106106e757610100808354040283529160200191610712565b820191906000526020600020905b8154815290600101906020018083116106f557829003601f168201915b5050505050905090565b6007546001600160a01b0316331461077b5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f66666963650000000060448201526064015b60405180910390fd5b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6000336107b8818585611305565b60019150505b92915050565b60006107d1848484611443565b6108098433610804856040518060600160405280602881526020016121e7602891396107fd8a33610610565b9190611518565b611305565b5060019392505050565b6007546001600160a01b0316331461086d5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6108a0611544565b6108a98161159e565b50565b6007546000906001600160a01b031633146109095760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b6001600160a01b0382166000908152600d602052604090205460ff16156109725760405162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c75646564000000000000006044820152606401610772565b506001600160a01b03166000908152600d60205260409020805460ff1916600190811790915590565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906107b890829086906108049087906120d1565b6006546000906001600160a01b03163314610a575760405162461bcd60e51b8152602060048201526024808201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260448201527f61746f72000000000000000000000000000000000000000000000000000000006064820152608401610772565b610a61838361167f565b50600192915050565b6108a9338261173e565b600b8181548110610a8457600080fd5b600091825260209091200154905081565b610a9d611544565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301526024820184905284169063a9059cbb906044016020604051808303816000875af1158015610b05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2991906120e4565b50505050565b600c8181548110610a8457600080fd5b6007546001600160a01b03163314610b995760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b6008805460ff60a01b19169055565b6007546000906001600160a01b03163314610c055760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b600b548360ff1610610c6c5760405162461bcd60e51b815260206004820152602a60248201527f496e6465782068617320746f206c6f776572207468616e20636f756e74206f666044820152692074617820746965727360b01b6064820152608401610772565b60ff831615610cab57600b610c82600185612101565b60ff1681548110610c9557610c9561211a565b90600052602060002001548211610cab57600080fd5b610cbf6001610cb9600b5490565b9061189f565b8360ff161015610cff57600b610cd6846001612130565b60ff1681548110610ce957610ce961211a565b90600052602060002001548210610cff57600080fd5b81600b8460ff1681548110610d1657610d1661211a565b60009182526020909120015550600192915050565b610d33611544565b610d3d60006118b2565b565b610d4a823383611911565b610d54828261173e565b5050565b6007546001600160a01b03163314610db25760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b6001600160a01b038116610e135760405162461bcd60e51b815260206004820152602260248201527f6f7261636c6520616464726573732063616e6e6f742062652030206164647265604482015261737360f01b6064820152608401610772565b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6007546000906001600160a01b03163314610e9f5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b6001600160a01b0382166000908152600d602052604090205460ff16610f075760405162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c75646564000000000000006044820152606401610772565b506001600160a01b03166000908152600d60205260409020805460ff19169055600190565b60606004805461069990612081565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610fd85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610772565b610fe58286868403611305565b506001949350505050565b6000336107b8818585611443565b6007546000906001600160a01b0316331461105b5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b600c548360ff16106110c25760405162461bcd60e51b815260206004820152602a60248201527f496e6465782068617320746f206c6f776572207468616e20636f756e74206f666044820152692074617820746965727360b01b6064820152608401610772565b81600c8460ff1681548110610d1657610d1661211a565b6007546001600160a01b031633146111335760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b600854600160a01b900460ff16156111b25760405162461bcd60e51b8152602060048201526024808201527f6175746f2063616c63756c617465207461782063616e6e6f7420626520656e6160448201527f626c6564000000000000000000000000000000000000000000000000000000006064820152608401610772565b6107d08111156112045760405162461bcd60e51b815260206004820152601a60248201527f74617820657175616c206f722062696767657220746f203230250000000000006044820152606401610772565b600a55565b611211611544565b6001600160a01b03811661128d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610772565b6108a9816118b2565b6007546001600160a01b031633146112f05760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b6008805460ff60a01b1916600160a01b179055565b6001600160a01b0383166113805760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610772565b6001600160a01b0382166113e15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610772565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600854600090600160a01b900460ff161561147157600061146261199d565b905061146d81611ab4565b9150505b600854600160a01b900460ff166114875750600a545b6001600160a01b03831660009081526009602052604090205460ff1680156114ae57508015155b80156114d357506001600160a01b0384166000908152600d602052604090205460ff16155b80156114f857506001600160a01b0383166000908152600d602052604090205460ff16155b1561150d57611508848484611bc9565b610b29565b610b29848484611c18565b6000818484111561153c5760405162461bcd60e51b81526004016107729190611ea0565b505050900390565b6005546001600160a01b03163314610d3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610772565b6001600160a01b03811661161a5760405162461bcd60e51b815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201527f206e6577206f70657261746f72000000000000000000000000000000000000006064820152608401610772565b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a36006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b0382166116d55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610772565b80600260008282546116e791906120d1565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166117ba5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610772565b6001600160a01b038216600090815260208190526040902054818110156118495760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610772565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611436565b60006118ab8284612149565b9392505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610b2957818110156119905760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610772565b610b298484848403611305565b6008546040517f6808a128000000000000000000000000000000000000000000000000000000008152306004820152670de0b6b3a764000060248201526000916001600160a01b031690636808a12890604401602060405180830381865afa925050508015611a29575060408051601f3d908101601f19168201909252611a269181019061215c565b60015b611a9b5760405162461bcd60e51b815260206004820152602e60248201527f55746f6d623a206661696c656420746f2066657463682055544f4d422070726960448201527f63652066726f6d204f7261636c650000000000000000000000000000000000006064820152608401610772565b71ffffffffffffffffffffffffffffffffffff16919050565b600080611ace6001611ac5600b5490565b60ff1690611e05565b90505b600b8160ff1681548110611ae757611ae761211a565b90600052602060002001548310611bb957612710600c8260ff1681548110611b1157611b1161211a565b906000526020600020015410611b695760405162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f203130302500000000006044820152606401610772565b600c8160ff1681548110611b7f57611b7f61211a565b9060005260206000200154600a81905550600c8160ff1681548110611ba657611ba661211a565b9060005260206000200154915050919050565b611bc281612190565b9050611ad1565b6000611bec612710611be6600a5485611e4790919063ffffffff16565b90611e53565b90506000611bfa838361189f565b9050611c06858361173e565b611c11858583611c18565b5050505050565b6001600160a01b038316611c945760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610772565b6001600160a01b038216611d105760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610772565b6001600160a01b03831660009081526020819052604090205481811015611d9f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610772565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b29565b60006118ab83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e5f565b60006118ab82846121ad565b60006118ab82846121c4565b60008360ff168360ff1611158290611e8a5760405162461bcd60e51b81526004016107729190611ea0565b506000611e978486612101565b95945050505050565b600060208083528351808285015260005b81811015611ecd57858101830151858201604001528201611eb1565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108a957600080fd5b600060208284031215611f1557600080fd5b81356118ab81611eee565b60008060408385031215611f3357600080fd5b8235611f3e81611eee565b946020939093013593505050565b600080600060608486031215611f6157600080fd5b8335611f6c81611eee565b92506020840135611f7c81611eee565b929592945050506040919091013590565b80151581146108a957600080fd5b60008060408385031215611fae57600080fd5b8235611fb981611eee565b91506020830135611fc981611f8d565b809150509250929050565b600060208284031215611fe657600080fd5b5035919050565b60008060006060848603121561200257600080fd5b833561200d81611eee565b925060208401359150604084013561202481611eee565b809150509250925092565b6000806040838503121561204257600080fd5b823560ff81168114611f3e57600080fd5b6000806040838503121561206657600080fd5b823561207181611eee565b91506020830135611fc981611eee565b600181811c9082168061209557607f821691505b6020821081036120b557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156107be576107be6120bb565b6000602082840312156120f657600080fd5b81516118ab81611f8d565b60ff82811682821603908111156107be576107be6120bb565b634e487b7160e01b600052603260045260246000fd5b60ff81811683821601908111156107be576107be6120bb565b818103818111156107be576107be6120bb565b60006020828403121561216e57600080fd5b815171ffffffffffffffffffffffffffffffffffff811681146118ab57600080fd5b600060ff8216806121a3576121a36120bb565b6000190192915050565b80820281158282048414176107be576107be6120bb565b6000826121e157634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220dabdfc3843024f79160b2cbd45022540d42f4d9fd679b85cf5c746a361bffdd864736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102f45760003560e01c8063771a3a1d11610191578063a6431bba116100e3578063dbd5951111610097578063ee2a953511610071578063ee2a953514610667578063f2fde38b1461066f578063ff87fc7c1461068257600080fd5b8063dbd59511146105f2578063dd62ed3e14610602578063ebca1bd91461063b57600080fd5b8063b87c5a4a116100c8578063b87c5a4a146105a9578063c6d69a30146105bc578063cf011b26146105cf57600080fd5b8063a6431bba1461058e578063a9059cbb1461059657600080fd5b80638d3cc8181161014557806395d89b411161011f57806395d89b41146105665780639662676c1461056e578063a457c2d71461057b57600080fd5b80638d3cc8181461052e5780638da5cb5b1461054257806393995d4b1461055357600080fd5b80637adbf973116101765780637adbf973146104e55780637dc0d1d0146104f85780637df0f7671461050b57600080fd5b8063771a3a1d146104c957806379cc6790146104d257600080fd5b806342966c681161024a578063570ca735116101fe57806366206ce9116101d857806366206ce91461048557806370a0823114610498578063715018a6146104c157600080fd5b8063570ca735146104595780635c29908d1461046a57806365bbacd91461047d57600080fd5b80634456eda21161022f5780634456eda2146104085780634d2377301461041b57806354575af41461044657600080fd5b806342966c68146103e257806342c6b4f1146103f557600080fd5b806328d67938116102ac5780633758e6ce116102865780633758e6ce146103a957806339509351146103bc57806340c10f19146103cf57600080fd5b806328d679381461037457806329605e7714610387578063313ce5671461039a57600080fd5b8063095ea7b3116102dd578063095ea7b31461032c57806318160ddd1461034f57806323b872dd1461036157600080fd5b806306fdde03146102f9578063095e391314610317575b600080fd5b61030161068a565b60405161030e9190611ea0565b60405180910390f35b61032a610325366004611f03565b61071c565b005b61033f61033a366004611f20565b6107aa565b604051901515815260200161030e565b6002545b60405190815260200161030e565b61033f61036f366004611f4c565b6107c4565b61032a610382366004611f9b565b610813565b61032a610395366004611f03565b610898565b6040516012815260200161030e565b61033f6103b7366004611f03565b6108ac565b61033f6103ca366004611f20565b61099b565b61033f6103dd366004611f20565b6109d5565b61032a6103f0366004611fd4565b610a6a565b610353610403366004611fd4565b610a74565b6006546001600160a01b0316331461033f565b60075461042e906001600160a01b031681565b6040516001600160a01b03909116815260200161030e565b61032a610454366004611fed565b610a95565b6006546001600160a01b031661042e565b610353610478366004611fd4565b610b2f565b61032a610b3f565b61033f61049336600461202f565b610ba8565b6103536104a6366004611f03565b6001600160a01b031660009081526020819052604090205490565b61032a610d2b565b610353600a5481565b61032a6104e0366004611f20565b610d3f565b61032a6104f3366004611f03565b610d58565b60085461042e906001600160a01b031681565b61033f610519366004611f03565b60096020526000908152604090205460ff1681565b60085461033f90600160a01b900460ff1681565b6005546001600160a01b031661042e565b61033f610561366004611f03565b610e42565b610301610f2c565b600e5461033f9060ff1681565b61033f610589366004611f20565b610f3b565b600b54610353565b61033f6105a4366004611f20565b610ff0565b61033f6105b736600461202f565b610ffe565b61032a6105ca366004611fd4565b6110d9565b61033f6105dd366004611f03565b600d6020526000908152604090205460ff1681565b610353681b1ae4d6e2ef50000081565b610353610610366004612053565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61033f610649366004611f03565b6001600160a01b03166000908152600d602052604090205460ff1690565b600c54610353565b61032a61067d366004611f03565b611209565b61032a611296565b60606003805461069990612081565b80601f01602080910402602001604051908101604052809291908181526020018280546106c590612081565b80156107125780601f106106e757610100808354040283529160200191610712565b820191906000526020600020905b8154815290600101906020018083116106f557829003601f168201915b5050505050905090565b6007546001600160a01b0316331461077b5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f66666963650000000060448201526064015b60405180910390fd5b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6000336107b8818585611305565b60019150505b92915050565b60006107d1848484611443565b6108098433610804856040518060600160405280602881526020016121e7602891396107fd8a33610610565b9190611518565b611305565b5060019392505050565b6007546001600160a01b0316331461086d5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6108a0611544565b6108a98161159e565b50565b6007546000906001600160a01b031633146109095760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b6001600160a01b0382166000908152600d602052604090205460ff16156109725760405162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c75646564000000000000006044820152606401610772565b506001600160a01b03166000908152600d60205260409020805460ff1916600190811790915590565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906107b890829086906108049087906120d1565b6006546000906001600160a01b03163314610a575760405162461bcd60e51b8152602060048201526024808201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260448201527f61746f72000000000000000000000000000000000000000000000000000000006064820152608401610772565b610a61838361167f565b50600192915050565b6108a9338261173e565b600b8181548110610a8457600080fd5b600091825260209091200154905081565b610a9d611544565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301526024820184905284169063a9059cbb906044016020604051808303816000875af1158015610b05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2991906120e4565b50505050565b600c8181548110610a8457600080fd5b6007546001600160a01b03163314610b995760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b6008805460ff60a01b19169055565b6007546000906001600160a01b03163314610c055760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b600b548360ff1610610c6c5760405162461bcd60e51b815260206004820152602a60248201527f496e6465782068617320746f206c6f776572207468616e20636f756e74206f666044820152692074617820746965727360b01b6064820152608401610772565b60ff831615610cab57600b610c82600185612101565b60ff1681548110610c9557610c9561211a565b90600052602060002001548211610cab57600080fd5b610cbf6001610cb9600b5490565b9061189f565b8360ff161015610cff57600b610cd6846001612130565b60ff1681548110610ce957610ce961211a565b90600052602060002001548210610cff57600080fd5b81600b8460ff1681548110610d1657610d1661211a565b60009182526020909120015550600192915050565b610d33611544565b610d3d60006118b2565b565b610d4a823383611911565b610d54828261173e565b5050565b6007546001600160a01b03163314610db25760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b6001600160a01b038116610e135760405162461bcd60e51b815260206004820152602260248201527f6f7261636c6520616464726573732063616e6e6f742062652030206164647265604482015261737360f01b6064820152608401610772565b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6007546000906001600160a01b03163314610e9f5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b6001600160a01b0382166000908152600d602052604090205460ff16610f075760405162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c75646564000000000000006044820152606401610772565b506001600160a01b03166000908152600d60205260409020805460ff19169055600190565b60606004805461069990612081565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610fd85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610772565b610fe58286868403611305565b506001949350505050565b6000336107b8818585611443565b6007546000906001600160a01b0316331461105b5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b600c548360ff16106110c25760405162461bcd60e51b815260206004820152602a60248201527f496e6465782068617320746f206c6f776572207468616e20636f756e74206f666044820152692074617820746965727360b01b6064820152608401610772565b81600c8460ff1681548110610d1657610d1661211a565b6007546001600160a01b031633146111335760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b600854600160a01b900460ff16156111b25760405162461bcd60e51b8152602060048201526024808201527f6175746f2063616c63756c617465207461782063616e6e6f7420626520656e6160448201527f626c6564000000000000000000000000000000000000000000000000000000006064820152608401610772565b6107d08111156112045760405162461bcd60e51b815260206004820152601a60248201527f74617820657175616c206f722062696767657220746f203230250000000000006044820152606401610772565b600a55565b611211611544565b6001600160a01b03811661128d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610772565b6108a9816118b2565b6007546001600160a01b031633146112f05760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f6666696365000000006044820152606401610772565b6008805460ff60a01b1916600160a01b179055565b6001600160a01b0383166113805760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610772565b6001600160a01b0382166113e15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610772565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600854600090600160a01b900460ff161561147157600061146261199d565b905061146d81611ab4565b9150505b600854600160a01b900460ff166114875750600a545b6001600160a01b03831660009081526009602052604090205460ff1680156114ae57508015155b80156114d357506001600160a01b0384166000908152600d602052604090205460ff16155b80156114f857506001600160a01b0383166000908152600d602052604090205460ff16155b1561150d57611508848484611bc9565b610b29565b610b29848484611c18565b6000818484111561153c5760405162461bcd60e51b81526004016107729190611ea0565b505050900390565b6005546001600160a01b03163314610d3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610772565b6001600160a01b03811661161a5760405162461bcd60e51b815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201527f206e6577206f70657261746f72000000000000000000000000000000000000006064820152608401610772565b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a36006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b0382166116d55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610772565b80600260008282546116e791906120d1565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166117ba5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610772565b6001600160a01b038216600090815260208190526040902054818110156118495760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610772565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611436565b60006118ab8284612149565b9392505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610b2957818110156119905760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610772565b610b298484848403611305565b6008546040517f6808a128000000000000000000000000000000000000000000000000000000008152306004820152670de0b6b3a764000060248201526000916001600160a01b031690636808a12890604401602060405180830381865afa925050508015611a29575060408051601f3d908101601f19168201909252611a269181019061215c565b60015b611a9b5760405162461bcd60e51b815260206004820152602e60248201527f55746f6d623a206661696c656420746f2066657463682055544f4d422070726960448201527f63652066726f6d204f7261636c650000000000000000000000000000000000006064820152608401610772565b71ffffffffffffffffffffffffffffffffffff16919050565b600080611ace6001611ac5600b5490565b60ff1690611e05565b90505b600b8160ff1681548110611ae757611ae761211a565b90600052602060002001548310611bb957612710600c8260ff1681548110611b1157611b1161211a565b906000526020600020015410611b695760405162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f203130302500000000006044820152606401610772565b600c8160ff1681548110611b7f57611b7f61211a565b9060005260206000200154600a81905550600c8160ff1681548110611ba657611ba661211a565b9060005260206000200154915050919050565b611bc281612190565b9050611ad1565b6000611bec612710611be6600a5485611e4790919063ffffffff16565b90611e53565b90506000611bfa838361189f565b9050611c06858361173e565b611c11858583611c18565b5050505050565b6001600160a01b038316611c945760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610772565b6001600160a01b038216611d105760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610772565b6001600160a01b03831660009081526020819052604090205481811015611d9f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610772565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b29565b60006118ab83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e5f565b60006118ab82846121ad565b60006118ab82846121c4565b60008360ff168360ff1611158290611e8a5760405162461bcd60e51b81526004016107729190611ea0565b506000611e978486612101565b95945050505050565b600060208083528351808285015260005b81811015611ecd57858101830151858201604001528201611eb1565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108a957600080fd5b600060208284031215611f1557600080fd5b81356118ab81611eee565b60008060408385031215611f3357600080fd5b8235611f3e81611eee565b946020939093013593505050565b600080600060608486031215611f6157600080fd5b8335611f6c81611eee565b92506020840135611f7c81611eee565b929592945050506040919091013590565b80151581146108a957600080fd5b60008060408385031215611fae57600080fd5b8235611fb981611eee565b91506020830135611fc981611f8d565b809150509250929050565b600060208284031215611fe657600080fd5b5035919050565b60008060006060848603121561200257600080fd5b833561200d81611eee565b925060208401359150604084013561202481611eee565b809150509250925092565b6000806040838503121561204257600080fd5b823560ff81168114611f3e57600080fd5b6000806040838503121561206657600080fd5b823561207181611eee565b91506020830135611fc981611eee565b600181811c9082168061209557607f821691505b6020821081036120b557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156107be576107be6120bb565b6000602082840312156120f657600080fd5b81516118ab81611f8d565b60ff82811682821603908111156107be576107be6120bb565b634e487b7160e01b600052603260045260246000fd5b60ff81811683821601908111156107be576107be6120bb565b818103818111156107be576107be6120bb565b60006020828403121561216e57600080fd5b815171ffffffffffffffffffffffffffffffffffff811681146118ab57600080fd5b600060ff8216806121a3576121a36120bb565b6000190192915050565b80820281158282048414176107be576107be6120bb565b6000826121e157634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220dabdfc3843024f79160b2cbd45022540d42f4d9fd679b85cf5c746a361bffdd864736f6c63430008130033

Deployed Bytecode Sourcemap

34283:7315:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22186:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35530:109;;;;;;:::i;:::-;;:::i;:::-;;24546:201;;;;;;:::i;:::-;;:::i;:::-;;;1463:14:1;;1456:22;1438:41;;1426:2;1411:18;24546:201:0;1298:187:1;23315:108:0;23403:12;;23315:108;;;1636:25:1;;;1624:2;1609:18;23315:108:0;1490:177:1;39617:451:0;;;;;;:::i;:::-;;:::i;38177:98::-;;;;;;:::i;:::-;;:::i;19037:113::-;;;;;;:::i;:::-;;:::i;23157:93::-;;;23240:2;2785:36:1;;2773:2;2758:18;23157:93:0;2643:184:1;38925:247:0;;;;;;:::i;:::-;;:::i;25997:238::-;;;;;;:::i;:::-;;:::i;39435:174::-;;;;;;:::i;:::-;;:::i;33677:91::-;;;;;;:::i;:::-;;:::i;34772:267::-;;;;;;:::i;:::-;;:::i;18929:100::-;19012:9;;-1:-1:-1;;;;;19012:9:0;808:10;18996:25;18929:100;;34401:25;;;;;-1:-1:-1;;;;;34401:25:0;;;;;;-1:-1:-1;;;;;3181:55:1;;;3163:74;;3151:2;3136:18;34401:25:0;3017:226:1;41411:184:0;;;;;;:::i;:::-;;:::i;18662:85::-;18730:9;;-1:-1:-1;;;;;18730:9:0;18662:85;;35046:242;;;;;;:::i;:::-;;:::i;38389:100::-;;;:::i;36281:608::-;;;;;;:::i;:::-;;:::i;23486:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;23587:18:0;23560:7;23587:18;;;;;;;;;;;;23486:127;2759:103;;;:::i;34723:22::-;;;;;;34087:164;;;;;;:::i;:::-;;:::i;38497:172::-;;;;;;:::i;:::-;;:::i;34433:21::-;;;;;-1:-1:-1;;;;;34433:21:0;;;34653:36;;;;;;:::i;:::-;;;;;;;;;;;;;;;;34618:28;;;;;-1:-1:-1;;;34618:28:0;;;;;;2118:87;2191:6;;-1:-1:-1;;;;;2191:6:0;2118:87;;39180:247;;;;;;:::i;:::-;;:::i;22405:104::-;;;:::i;35647:41::-;;;;;;;;;26738:436;;;;;;:::i;:::-;;:::i;35902:115::-;35989:13;:20;35902:115;;40076:239;;;;;;:::i;:::-;;:::i;36897:387::-;;;;;;:::i;:::-;;:::i;38677:240::-;;;;;;:::i;:::-;;:::i;35340:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;34484:66;;34541:9;34484:66;;24075:151;;;;;;:::i;:::-;-1:-1:-1;;;;;24191:18:0;;;24164:7;24191:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;24075:151;36148:125;;;;;;:::i;:::-;-1:-1:-1;;;;;36238:27:0;36214:4;36238:27;;;:17;:27;;;;;;;;;36148:125;36025:115;36112:13;:20;36025:115;;3017:201;;;;;;:::i;:::-;;:::i;38283:98::-;;;:::i;22186:100::-;22240:13;22273:5;22266:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22186:100;:::o;35530:109::-;35443:10;;-1:-1:-1;;;;;35443:10:0;808;35443:26;35435:67;;;;-1:-1:-1;;;35435:67:0;;5102:2:1;35435:67:0;;;5084:21:1;5141:2;5121:18;;;5114:30;5180;5160:18;;;5153:58;5228:18;;35435:67:0;;;;;;;;;35607:10:::1;:24:::0;;-1:-1:-1;;35607:24:0::1;-1:-1:-1::0;;;;;35607:24:0;;;::::1;::::0;;;::::1;::::0;;35530:109::o;24546:201::-;24629:4;808:10;24685:32;808:10;24701:7;24710:6;24685:8;:32::i;:::-;24735:4;24728:11;;;24546:201;;;;;:::o;39617:451::-;39749:4;39766:41;39781:6;39789:9;39800:6;39766:14;:41::i;:::-;39818:218;39841:6;808:10;39889:136;39943:6;39889:136;;;;;;;;;;;;;;;;;:31;39899:6;808:10;24075:151;:::i;39889:31::-;:35;:136;:35;:136::i;:::-;39818:8;:218::i;:::-;-1:-1:-1;40056:4:0;39617:451;;;;;:::o;38177:98::-;35443:10;;-1:-1:-1;;;;;35443:10:0;808;35443:26;35435:67;;;;-1:-1:-1;;;35435:67:0;;5102:2:1;35435:67:0;;;5084:21:1;5141:2;5121:18;;;5114:30;5180;5160:18;;;5153:58;5228:18;;35435:67:0;4900:352:1;35435:67:0;-1:-1:-1;;;;;38250:9:0;;;::::1;;::::0;;;:4:::1;:9;::::0;;;;:17;;-1:-1:-1;;38250:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38177:98::o;19037:113::-;2004:13;:11;:13::i;:::-;19112:30:::1;19130:11;19112:17;:30::i;:::-;19037:113:::0;:::o;38925:247::-;35443:10;;39014:4;;-1:-1:-1;;;;;35443:10:0;808;35443:26;35435:67;;;;-1:-1:-1;;;35435:67:0;;5102:2:1;35435:67:0;;;5084:21:1;5141:2;5121:18;;;5114:30;5180;5160:18;;;5153:58;5228:18;;35435:67:0;4900:352:1;35435:67:0;-1:-1:-1;;;;;39040:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;39039:28;39031:66;;;::::0;-1:-1:-1;;;39031:66:0;;5459:2:1;39031:66:0::1;::::0;::::1;5441:21:1::0;5498:2;5478:18;;;5471:30;5537:27;5517:18;;;5510:55;5582:18;;39031:66:0::1;5257:349:1::0;39031:66:0::1;-1:-1:-1::0;;;;;;39108:27:0::1;;::::0;;;:17:::1;:27;::::0;;;;:34;;-1:-1:-1;;39108:34:0::1;39138:4;39108:34:::0;;::::1;::::0;;;39138:4;38925:247::o;25997:238::-;808:10;26085:4;24191:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;24191:27:0;;;;;;;;;;26085:4;;808:10;26141:64;;808:10;;24191:27;;26166:38;;26194:10;;26166:38;:::i;39435:174::-;18812:9;;39538:4;;-1:-1:-1;;;;;18812:9:0;808:10;18812:25;18790:111;;;;-1:-1:-1;;;18790:111:0;;6132:2:1;18790:111:0;;;6114:21:1;6171:2;6151:18;;;6144:30;6210:34;6190:18;;;6183:62;6281:6;6261:18;;;6254:34;6305:19;;18790:111:0;5930:400:1;18790:111:0;39555:24:::1;39561:9;39572:6;39555:5;:24::i;:::-;-1:-1:-1::0;39597:4:0::1;39435:174:::0;;;;:::o;33677:91::-;33733:27;808:10;33753:6;33733:5;:27::i;34772:267::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34772:267:0;:::o;41411:184::-;2004:13;:11;:13::i;:::-;41558:29:::1;::::0;;;;-1:-1:-1;;;;;6527:55:1;;;41558:29:0::1;::::0;::::1;6509:74:1::0;6599:18;;;6592:34;;;41558:15:0;::::1;::::0;::::1;::::0;6482:18:1;;41558:29:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41411:184:::0;;;:::o;35046:242::-;;;;;;;;;;;;38389:100;35443:10;;-1:-1:-1;;;;;35443:10:0;808;35443:26;35435:67;;;;-1:-1:-1;;;35435:67:0;;5102:2:1;35435:67:0;;;5084:21:1;5141:2;5121:18;;;5114:30;5180;5160:18;;;5153:58;5228:18;;35435:67:0;4900:352:1;35435:67:0;38457:16:::1;:24:::0;;-1:-1:-1;;;;38457:24:0::1;::::0;;38389:100::o;36281:608::-;35443:10;;36392:4;;-1:-1:-1;;;;;35443:10:0;808;35443:26;35435:67;;;;-1:-1:-1;;;35435:67:0;;5102:2:1;35435:67:0;;;5084:21:1;5141:2;5121:18;;;5114:30;5180;5160:18;;;5153:58;5228:18;;35435:67:0;4900:352:1;35435:67:0;35989:13;:20;36495:6:::1;:32;;;36473:124;;;::::0;-1:-1:-1;;;36473:124:0;;7447:2:1;36473:124:0::1;::::0;::::1;7429:21:1::0;7486:2;7466:18;;;7459:30;7525:34;7505:18;;;7498:62;-1:-1:-1;;;7576:18:1;;;7569:40;7626:19;;36473:124:0::1;7245:406:1::0;36473:124:0::1;36612:10;::::0;::::1;::::0;36608:86:::1;;36656:13;36670:10;36679:1;36670:6:::0;:10:::1;:::i;:::-;36656:25;;;;;;;;;;:::i;:::-;;;;;;;;;36647:6;:34;36639:43;;;::::0;::::1;;36717:30;36745:1;36717:23;35989:13:::0;:20;;35902:115;36717:23:::1;:27:::0;::::1;:30::i;:::-;36708:6;:39;;;36704:115;;;36781:13;36795:10;:6:::0;36804:1:::1;36795:10;:::i;:::-;36781:25;;;;;;;;;;:::i;:::-;;;;;;;;;36772:6;:34;36764:43;;;::::0;::::1;;36853:6;36829:13;36843:6;36829:21;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;:30:::0;-1:-1:-1;36877:4:0::1;36281:608:::0;;;;:::o;2759:103::-;2004:13;:11;:13::i;:::-;2824:30:::1;2851:1;2824:18;:30::i;:::-;2759:103::o:0;34087:164::-;34164:46;34180:7;808:10;34203:6;34164:15;:46::i;:::-;34221:22;34227:7;34236:6;34221:5;:22::i;:::-;34087:164;;:::o;38497:172::-;35443:10;;-1:-1:-1;;;;;35443:10:0;808;35443:26;35435:67;;;;-1:-1:-1;;;35435:67:0;;5102:2:1;35435:67:0;;;5084:21:1;5141:2;5121:18;;;5114:30;5180;5160:18;;;5153:58;5228:18;;35435:67:0;4900:352:1;35435:67:0;-1:-1:-1;;;;;38574:21:0;::::1;38566:68;;;::::0;-1:-1:-1;;;38566:68:0;;8356:2:1;38566:68:0::1;::::0;::::1;8338:21:1::0;8395:2;8375:18;;;8368:30;8434:34;8414:18;;;8407:62;-1:-1:-1;;;8485:18:1;;;8478:32;8527:19;;38566:68:0::1;8154:398:1::0;38566:68:0::1;38645:6;:16:::0;;-1:-1:-1;;38645:16:0::1;-1:-1:-1::0;;;;;38645:16:0;;;::::1;::::0;;;::::1;::::0;;38497:172::o;39180:247::-;35443:10;;39269:4;;-1:-1:-1;;;;;35443:10:0;808;35443:26;35435:67;;;;-1:-1:-1;;;35435:67:0;;5102:2:1;35435:67:0;;;5084:21:1;5141:2;5121:18;;;5114:30;5180;5160:18;;;5153:58;5228:18;;35435:67:0;4900:352:1;35435:67:0;-1:-1:-1;;;;;39294:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;39286:65;;;::::0;-1:-1:-1;;;39286:65:0;;8759:2:1;39286:65:0::1;::::0;::::1;8741:21:1::0;8798:2;8778:18;;;8771:30;8837:27;8817:18;;;8810:55;8882:18;;39286:65:0::1;8557:349:1::0;39286:65:0::1;-1:-1:-1::0;;;;;;39362:27:0::1;39392:5;39362:27:::0;;;:17:::1;:27;::::0;;;;:35;;-1:-1:-1;;39362:35:0::1;::::0;;-1:-1:-1;;39180:247:0:o;22405:104::-;22461:13;22494:7;22487:14;;;;;:::i;26738:436::-;808:10;26831:4;24191:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;24191:27:0;;;;;;;;;;26831:4;;808:10;26978:15;26958:16;:35;;26950:85;;;;-1:-1:-1;;;26950:85:0;;9113:2:1;26950:85:0;;;9095:21:1;9152:2;9132:18;;;9125:30;9191:34;9171:18;;;9164:62;9262:7;9242:18;;;9235:35;9287:19;;26950:85:0;8911:401:1;26950:85:0;27071:60;27080:5;27087:7;27115:15;27096:16;:34;27071:8;:60::i;:::-;-1:-1:-1;27162:4:0;;26738:436;-1:-1:-1;;;;26738:436:0:o;40076:239::-;40187:4;808:10;40244:41;808:10;40267:9;40278:6;40244:14;:41::i;36897:387::-;35443:10;;37008:4;;-1:-1:-1;;;;;35443:10:0;808;35443:26;35435:67;;;;-1:-1:-1;;;35435:67:0;;5102:2:1;35435:67:0;;;5084:21:1;5141:2;5121:18;;;5114:30;5180;5160:18;;;5153:58;5228:18;;35435:67:0;4900:352:1;35435:67:0;36112:13;:20;37111:6:::1;:32;;;37089:124;;;::::0;-1:-1:-1;;;37089:124:0;;7447:2:1;37089:124:0::1;::::0;::::1;7429:21:1::0;7486:2;7466:18;;;7459:30;7525:34;7505:18;;;7498:62;-1:-1:-1;;;7576:18:1;;;7569:40;7626:19;;37089:124:0::1;7245:406:1::0;37089:124:0::1;37248:6;37224:13;37238:6;37224:21;;;;;;;;;;:::i;38677:240::-:0;35443:10;;-1:-1:-1;;;;;35443:10:0;808;35443:26;35435:67;;;;-1:-1:-1;;;35435:67:0;;5102:2:1;35435:67:0;;;5084:21:1;5141:2;5121:18;;;5114:30;5180;5160:18;;;5153:58;5228:18;;35435:67:0;4900:352:1;35435:67:0;38757:16:::1;::::0;-1:-1:-1;;;38757:16:0;::::1;;;38756:17;38748:66;;;::::0;-1:-1:-1;;;38748:66:0;;9519:2:1;38748:66:0::1;::::0;::::1;9501:21:1::0;9558:2;9538:18;;;9531:30;9597:34;9577:18;;;9570:62;9668:6;9648:18;;;9641:34;9692:19;;38748:66:0::1;9317:400:1::0;38748:66:0::1;38845:4;38833:8;:16;;38825:55;;;::::0;-1:-1:-1;;;38825:55:0;;9924:2:1;38825:55:0::1;::::0;::::1;9906:21:1::0;9963:2;9943:18;;;9936:30;10002:28;9982:18;;;9975:56;10048:18;;38825:55:0::1;9722:350:1::0;38825:55:0::1;38891:7;:18:::0;38677:240::o;3017:201::-;2004:13;:11;:13::i;:::-;-1:-1:-1;;;;;3106:22:0;::::1;3098:73;;;::::0;-1:-1:-1;;;3098:73:0;;10279:2:1;3098:73:0::1;::::0;::::1;10261:21:1::0;10318:2;10298:18;;;10291:30;10357:34;10337:18;;;10330:62;10428:8;10408:18;;;10401:36;10454:19;;3098:73:0::1;10077:402:1::0;3098:73:0::1;3182:28;3201:8;3182:18;:28::i;38283:98::-:0;35443:10;;-1:-1:-1;;;;;35443:10:0;808;35443:26;35435:67;;;;-1:-1:-1;;;35435:67:0;;5102:2:1;35435:67:0;;;5084:21:1;5141:2;5121:18;;;5114:30;5180;5160:18;;;5153:58;5228:18;;35435:67:0;4900:352:1;35435:67:0;38350:16:::1;:23:::0;;-1:-1:-1;;;;38350:23:0::1;-1:-1:-1::0;;;38350:23:0::1;::::0;;38283:98::o;30731:346::-;-1:-1:-1;;;;;30833:19:0;;30825:68;;;;-1:-1:-1;;;30825:68:0;;10686:2:1;30825:68:0;;;10668:21:1;10725:2;10705:18;;;10698:30;10764:34;10744:18;;;10737:62;10835:6;10815:18;;;10808:34;10859:19;;30825:68:0;10484:400:1;30825:68:0;-1:-1:-1;;;;;30912:21:0;;30904:68;;;;-1:-1:-1;;;30904:68:0;;11091:2:1;30904:68:0;;;11073:21:1;11130:2;11110:18;;;11103:30;11169:34;11149:18;;;11142:62;-1:-1:-1;;;11220:18:1;;;11213:32;11262:19;;30904:68:0;10889:398:1;30904:68:0;-1:-1:-1;;;;;30985:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;31037:32;;1636:25:1;;;31037:32:0;;1609:18:1;31037:32:0;;;;;;;;30731:346;;;:::o;40667:736::-;40837:16;;40796:22;;-1:-1:-1;;;40837:16:0;;;;40833:158;;;40870:25;40898:16;:14;:16::i;:::-;40870:44;;40946:33;40961:17;40946:14;:33::i;:::-;40929:50;;40855:136;40833:158;41006:16;;-1:-1:-1;;;41006:16:0;;;;41001:74;;-1:-1:-1;41056:7:0;;41001:74;-1:-1:-1;;;;;41104:15:0;;;;;;:4;:15;;;;;;;;41103:53;;;;-1:-1:-1;41137:19:0;;;41103:53;:96;;;;-1:-1:-1;;;;;;41174:25:0;;;;;;:17;:25;;;;;;;;41173:26;41103:96;:142;;;;-1:-1:-1;;;;;;41217:28:0;;;;;;:17;:28;;;;;;;;41216:29;41103:142;41085:311;;;41272:43;41289:6;41297:9;41308:6;41272:16;:43::i;:::-;41085:311;;;41348:36;41358:6;41366:9;41377:6;41348:9;:36::i;11449:206::-;11535:7;11596:12;11588:6;;;;11580:29;;;;-1:-1:-1;;;11580:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11631:5:0;;;11449:206::o;2283:132::-;2191:6;;-1:-1:-1;;;;;2191:6:0;808:10;2347:23;2339:68;;;;-1:-1:-1;;;2339:68:0;;11494:2:1;2339:68:0;;;11476:21:1;;;11513:18;;;11506:30;11572:34;11552:18;;;11545:62;11624:18;;2339:68:0;11292:356:1;19158:290:0;-1:-1:-1;;;;;19248:25:0;;19226:120;;;;-1:-1:-1;;;19226:120:0;;11855:2:1;19226:120:0;;;11837:21:1;11894:2;11874:18;;;11867:30;11933:34;11913:18;;;11906:62;12004:15;11984:18;;;11977:43;12037:19;;19226:120:0;11653:409:1;19226:120:0;19362:44;;-1:-1:-1;;;;;19362:44:0;;;19390:1;;19362:44;;19390:1;;19362:44;19417:9;:23;;-1:-1:-1;;19417:23:0;-1:-1:-1;;;;;19417:23:0;;;;;;;;;;19158:290::o;28737:548::-;-1:-1:-1;;;;;28821:21:0;;28813:65;;;;-1:-1:-1;;;28813:65:0;;12269:2:1;28813:65:0;;;12251:21:1;12308:2;12288:18;;;12281:30;12347:33;12327:18;;;12320:61;12398:18;;28813:65:0;12067:355:1;28813:65:0;28969:6;28953:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;29124:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;29179:37;1636:25:1;;;29179:37:0;;1609:18:1;29179:37:0;;;;;;;34087:164;;:::o;29618:675::-;-1:-1:-1;;;;;29702:21:0;;29694:67;;;;-1:-1:-1;;;29694:67:0;;12629:2:1;29694:67:0;;;12611:21:1;12668:2;12648:18;;;12641:30;12707:34;12687:18;;;12680:62;12778:3;12758:18;;;12751:31;12799:19;;29694:67:0;12427:397:1;29694:67:0;-1:-1:-1;;;;;29861:18:0;;29836:22;29861:18;;;;;;;;;;;29898:24;;;;29890:71;;;;-1:-1:-1;;;29890:71:0;;13031:2:1;29890:71:0;;;13013:21:1;13070:2;13050:18;;;13043:30;13109:34;13089:18;;;13082:62;13180:4;13160:18;;;13153:32;13202:19;;29890:71:0;12829:398:1;29890:71:0;-1:-1:-1;;;;;29997:18:0;;:9;:18;;;;;;;;;;;30018:23;;;29997:44;;30136:12;:22;;;;;;;30187:37;1636:25:1;;;29997:9:0;;:18;30187:37;;1609:18:1;30187:37:0;1490:177:1;9551:98:0;9609:7;9636:5;9640:1;9636;:5;:::i;:::-;9629:12;9551:98;-1:-1:-1;;;9551:98:0:o;3378:191::-;3471:6;;;-1:-1:-1;;;;;3488:17:0;;;-1:-1:-1;;3488:17:0;;;;;;;3521:40;;3471:6;;;3488:17;3471:6;;3521:40;;3452:16;;3521:40;3441:128;3378:191;:::o;31368:419::-;-1:-1:-1;;;;;24191:18:0;;;31469:24;24191:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;31536:37:0;;31532:248;;31618:6;31598:16;:26;;31590:68;;;;-1:-1:-1;;;31590:68:0;;13567:2:1;31590:68:0;;;13549:21:1;13606:2;13586:18;;;13579:30;13645:31;13625:18;;;13618:59;13694:18;;31590:68:0;13365:353:1;31590:68:0;31702:51;31711:5;31718:7;31746:6;31727:16;:25;31702:8;:51::i;37292:298::-;37385:6;;37377:41;;;;;37406:4;37377:41;;;6509:74:1;37413:4:0;6599:18:1;;;6592:34;37341:19:0;;-1:-1:-1;;;;;37385:6:0;;37377:20;;6482:18:1;;37377:41:0;;;;;;;;;;;;;;;;;;-1:-1:-1;37377:41:0;;;;;;;;-1:-1:-1;;37377:41:0;;;;;;;;;;;;:::i;:::-;;;37373:210;;37515:56;;-1:-1:-1;;;37515:56:0;;14567:2:1;37515:56:0;;;14549:21:1;14606:2;14586:18;;;14579:30;14645:34;14625:18;;;14618:62;14716:16;14696:18;;;14689:44;14750:19;;37515:56:0;14365:410:1;37373:210:0;37466:15;;;37292:298;-1:-1:-1;37292:298:0:o;37598:571::-;37661:7;37700:12;37715:37;37750:1;37721:23;35989:13;:20;;35902:115;37721:23;37715:34;;;;:37::i;:::-;37700:52;;37681:462;37847:13;37861:6;37847:21;;;;;;;;;;:::i;:::-;;;;;;;;;37832:11;:36;37828:304;;37943:5;37919:13;37933:6;37919:21;;;;;;;;;;:::i;:::-;;;;;;;;;:29;37889:130;;;;-1:-1:-1;;;37889:130:0;;14982:2:1;37889:130:0;;;14964:21:1;15021:2;15001:18;;;14994:30;15060:29;15040:18;;;15033:57;15107:18;;37889:130:0;14780:351:1;37889:130:0;38048:13;38062:6;38048:21;;;;;;;;;;:::i;:::-;;;;;;;;;38038:7;:31;;;;38095:13;38109:6;38095:21;;;;;;;;;;:::i;:::-;;;;;;;;;38088:28;;;37598:571;;;:::o;37828:304::-;37793:8;;;:::i;:::-;;;37681:462;;40323:336;40454:17;40474:30;40498:5;40474:19;40485:7;;40474:6;:10;;:19;;;;:::i;:::-;:23;;:30::i;:::-;40454:50;-1:-1:-1;40515:22:0;40540:21;:6;40454:50;40540:10;:21::i;:::-;40515:46;;40572:24;40578:6;40586:9;40572:5;:24::i;:::-;40607:44;40617:6;40625:9;40636:14;40607:9;:44::i;:::-;40443:216;;40323:336;;;:::o;27644:806::-;-1:-1:-1;;;;;27741:18:0;;27733:68;;;;-1:-1:-1;;;27733:68:0;;15521:2:1;27733:68:0;;;15503:21:1;15560:2;15540:18;;;15533:30;15599:34;15579:18;;;15572:62;15670:7;15650:18;;;15643:35;15695:19;;27733:68:0;15319:401:1;27733:68:0;-1:-1:-1;;;;;27820:16:0;;27812:64;;;;-1:-1:-1;;;27812:64:0;;15927:2:1;27812:64:0;;;15909:21:1;15966:2;15946:18;;;15939:30;16005:34;15985:18;;;15978:62;16076:5;16056:18;;;16049:33;16099:19;;27812:64:0;15725:399:1;27812:64:0;-1:-1:-1;;;;;27962:15:0;;27940:19;27962:15;;;;;;;;;;;27996:21;;;;27988:72;;;;-1:-1:-1;;;27988:72:0;;16331:2:1;27988:72:0;;;16313:21:1;16370:2;16350:18;;;16343:30;16409:34;16389:18;;;16382:62;16480:8;16460:18;;;16453:36;16506:19;;27988:72:0;16129:402:1;27988:72:0;-1:-1:-1;;;;;28096:15:0;;;:9;:15;;;;;;;;;;;28114:20;;;28096:38;;28314:13;;;;;;;;;;:23;;;;;;28366:26;;1636:25:1;;;28314:13:0;;28366:26;;1609:18:1;28366:26:0;;;;;;;28405:37;29618:675;14314:130;14368:5;14393:43;14397:1;14400;14393:43;;;;;;;;;;;;;;;;;:3;:43::i;9908:98::-;9966:7;9993:5;9997:1;9993;:5;:::i;10307:98::-;10365:7;10392:5;10396:1;10392;:5;:::i;14747:218::-;14863:5;14894:1;14889:6;;:1;:6;;;;14897:12;14881:29;;;;;-1:-1:-1;;;14881:29:0;;;;;;;;:::i;:::-;-1:-1:-1;14921:7:0;14931:5;14935:1;14931;:5;:::i;:::-;14921:15;14747:218;-1:-1:-1;;;;;14747:218:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:154::-;-1:-1:-1;;;;;646:5:1;642:54;635:5;632:65;622:93;;711:1;708;701:12;726:247;785:6;838:2;826:9;817:7;813:23;809:32;806:52;;;854:1;851;844:12;806:52;893:9;880:23;912:31;937:5;912:31;:::i;978:315::-;1046:6;1054;1107:2;1095:9;1086:7;1082:23;1078:32;1075:52;;;1123:1;1120;1113:12;1075:52;1162:9;1149:23;1181:31;1206:5;1181:31;:::i;:::-;1231:5;1283:2;1268:18;;;;1255:32;;-1:-1:-1;;;978:315:1:o;1672:456::-;1749:6;1757;1765;1818:2;1806:9;1797:7;1793:23;1789:32;1786:52;;;1834:1;1831;1824:12;1786:52;1873:9;1860:23;1892:31;1917:5;1892:31;:::i;:::-;1942:5;-1:-1:-1;1999:2:1;1984:18;;1971:32;2012:33;1971:32;2012:33;:::i;:::-;1672:456;;2064:7;;-1:-1:-1;;;2118:2:1;2103:18;;;;2090:32;;1672:456::o;2133:118::-;2219:5;2212:13;2205:21;2198:5;2195:32;2185:60;;2241:1;2238;2231:12;2256:382;2321:6;2329;2382:2;2370:9;2361:7;2357:23;2353:32;2350:52;;;2398:1;2395;2388:12;2350:52;2437:9;2424:23;2456:31;2481:5;2456:31;:::i;:::-;2506:5;-1:-1:-1;2563:2:1;2548:18;;2535:32;2576:30;2535:32;2576:30;:::i;:::-;2625:7;2615:17;;;2256:382;;;;;:::o;2832:180::-;2891:6;2944:2;2932:9;2923:7;2919:23;2915:32;2912:52;;;2960:1;2957;2950:12;2912:52;-1:-1:-1;2983:23:1;;2832:180;-1:-1:-1;2832:180:1:o;3248:470::-;3339:6;3347;3355;3408:2;3396:9;3387:7;3383:23;3379:32;3376:52;;;3424:1;3421;3414:12;3376:52;3463:9;3450:23;3482:31;3507:5;3482:31;:::i;:::-;3532:5;-1:-1:-1;3584:2:1;3569:18;;3556:32;;-1:-1:-1;3640:2:1;3625:18;;3612:32;3653:33;3612:32;3653:33;:::i;:::-;3705:7;3695:17;;;3248:470;;;;;:::o;3723:337::-;3789:6;3797;3850:2;3838:9;3829:7;3825:23;3821:32;3818:52;;;3866:1;3863;3856:12;3818:52;3905:9;3892:23;3955:4;3948:5;3944:16;3937:5;3934:27;3924:55;;3975:1;3972;3965:12;4065:388;4133:6;4141;4194:2;4182:9;4173:7;4169:23;4165:32;4162:52;;;4210:1;4207;4200:12;4162:52;4249:9;4236:23;4268:31;4293:5;4268:31;:::i;:::-;4318:5;-1:-1:-1;4375:2:1;4360:18;;4347:32;4388:33;4347:32;4388:33;:::i;4458:437::-;4537:1;4533:12;;;;4580;;;4601:61;;4655:4;4647:6;4643:17;4633:27;;4601:61;4708:2;4700:6;4697:14;4677:18;4674:38;4671:218;;-1:-1:-1;;;4742:1:1;4735:88;4846:4;4843:1;4836:15;4874:4;4871:1;4864:15;4671:218;;4458:437;;;:::o;5611:184::-;-1:-1:-1;;;5660:1:1;5653:88;5760:4;5757:1;5750:15;5784:4;5781:1;5774:15;5800:125;5865:9;;;5886:10;;;5883:36;;;5899:18;;:::i;6637:245::-;6704:6;6757:2;6745:9;6736:7;6732:23;6728:32;6725:52;;;6773:1;6770;6763:12;6725:52;6805:9;6799:16;6824:28;6846:5;6824:28;:::i;7656:151::-;7746:4;7739:12;;;7725;;;7721:31;;7764:14;;7761:40;;;7781:18;;:::i;7812:184::-;-1:-1:-1;;;7861:1:1;7854:88;7961:4;7958:1;7951:15;7985:4;7982:1;7975:15;8001:148;8089:4;8068:12;;;8082;;;8064:31;;8107:13;;8104:39;;;8123:18;;:::i;13232:128::-;13299:9;;;13320:11;;;13317:37;;;13334:18;;:::i;14051:309::-;14121:6;14174:2;14162:9;14153:7;14149:23;14145:32;14142:52;;;14190:1;14187;14180:12;14142:52;14222:9;14216:16;14272:38;14265:5;14261:50;14254:5;14251:61;14241:89;;14326:1;14323;14316:12;15136:178;15173:3;15217:4;15210:5;15206:16;15241:7;15231:41;;15252:18;;:::i;:::-;-1:-1:-1;;15288:20:1;;15136:178;-1:-1:-1;;15136:178:1:o;16536:168::-;16609:9;;;16640;;16657:15;;;16651:22;;16637:37;16627:71;;16678:18;;:::i;16709:274::-;16749:1;16775;16765:189;;-1:-1:-1;;;16807:1:1;16800:88;16911:4;16908:1;16901:15;16939:4;16936:1;16929:15;16765:189;-1:-1:-1;16968:9:1;;16709:274::o

Swarm Source

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