ETH Price: $3,437.91 (-1.14%)
Gas: 16 Gwei

Token

0xVault (VAULT)
 

Overview

Max Total Supply

1,000,000 VAULT

Holders

466

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
415.53825138257686006 VAULT

Value
$0.00
0xbcfe5b1d7ca6f9b047ad00921f9a3ee961df4a52
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ZeroXVault

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-15
*/

// SPDX-License-Identifier: MIT
//
//
//
//
//
//
//                    @@@@@@@@   @@@  @@@  @@@  @@@   @@@@@@   @@@  @@@  @@@       @@@@@@@
//                    @@@@@@@@@@  @@@  @@@  @@@  @@@  @@@@@@@@  @@@  @@@  @@@       @@@@@@@
//                    @@!   @@@@  @@!  !@@  @@!  @@@  @@!  @@@  @@!  @@@  @@!         @@!
//                    !@!  @!@!@  !@!  @!!  !@!  @!@  !@!  @!@  !@!  @!@  !@!         !@!
//                    @!@ @! !@!   !@@!@!   @!@  !@!  @!@!@!@!  @!@  !@!  @!!         @!!
//                    !@!!!  !!!    @!!!    !@!  !!!  !!!@!!!!  !@!  !!!  !!!         !!!
//                    !!:!   !!!   !: :!!   :!:  !!:  !!:  !!!  !!:  !!!  !!:         !!:
//                    :!:    !:!  :!:  !:!   ::!!:!   :!:  !:!  :!:  !:!   :!:        :!:
//                    ::::::: ::   ::  :::    ::::    ::   :::  ::::: ::   :: ::::     ::
//                     : : :  :    :   ::      :       :   : :   : :  :   : :: : :     :
//
//
//                          A Permissionless Liquidity Provision Lending Protocol
//
//                                          https://0xvault.xyz
//                                        https://docs.0xvault.xyz
//                                     https://twitter.com/0xvaultxyz
//                                          https://t.me/vault0x
//
//                                          0xVault.XYZ Token Contract
//   Utility token, which bootstraps liquidty and team reserves (intended for the first full quarter from inception)
//                      Token provides allocation for ILO, Governance and revenue sharing
//
pragma solidity 0.8.23;

/**
 * @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;
    }
}

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(
        address recipient,
        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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @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
    );
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @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);
}

/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 {}
}

/**
 * @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 substraction 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;
        }
    }
}

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(
        address to
    ) external returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract ZeroXVault is ERC20, Ownable {
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair; 
    bool private swapping;

    address public immutable revenueSplitter;

    uint256 public maxTransactionAmount;
    uint256 public immutable swapTokensAtAmount;
    uint256 public maxWallet;

    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 public buyTeamFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellRevShareFee;
    uint256 public sellLiquidityFee;

    uint256 public tokensForTeam;
    uint256 public tokensForLiquidity;

    // Exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // Store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("0xVault", "VAULT") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D // Uniswap V2 Router
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        // Creates the Uniswap Pair
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyTeamFee = 12; // Lowered to 4% after launch
        uint256 _buyLiquidityFee = 3; // Lowered to 1% after launch

        uint256 _sellRevShareFee = 12; // Lowered to 4% after launch
        uint256 _sellLiquidityFee = 3; // Lowered to 1% after launch

        uint256 totalSupply = 1_000_000 * 1e18; // 1 million

        maxTransactionAmount = 2500 * 1e18; // 0.25%
        maxWallet = 2500 * 1e18; // 0.25%
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05%

        buyTeamFee = _buyTeamFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyTeamFee + buyLiquidityFee;

        sellRevShareFee = _sellRevShareFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee;

        revenueSplitter = address(0x4806dA464860b6c804c38444F7Fda5d51036F066); // Set as the Revenue Splitter.

        // Exclude from paying fees or having max transaction amount if; is owner, is deployer, is dead address.
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(address(revenueSplitter), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(address(revenueSplitter), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // Will enable trading, once this is toggeled, it will not be able to be turned off.
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // Trigger this post launch once price is more stable. Made to avoid whales and snipers hogging supply.
    //Fixed unmodifiable limits for holder protection from arbitrary fee changes.
    function updateLimitsAndFees() external onlyOwner {
        unchecked {
            maxTransactionAmount = 25_000 * (10 ** 18); // 2.5%
            maxWallet = 25_000 * (10 ** 18); // 2.5%
        }

        buyTeamFee = 4; // 4%
        buyLiquidityFee = 1; // 1%
        buyTotalFees = 5;

        sellRevShareFee = 4; // 4%
        sellLiquidityFee = 1; // 1%
        sellTotalFees = 5;
    }

    // Essentially removing the max holding limit or contract holding amounts to allow for the staking contract.
    function updateMaxForStaking() external onlyOwner {
        maxWallet = 1_000_000 * (10 ** 18);
    }

    //Remove limits and fees for holders and swaps.
    function removeLimitsAndFees() external onlyOwner {
        unchecked {
            maxTransactionAmount = 1_000_000 * (10 ** 18); // 100%
            maxWallet = 1_000_000 * (10 ** 18); // 100%

            buyTeamFee = 0; // 0%
            buyLiquidityFee = 0; // 0%
            buyTotalFees = 0;

            sellRevShareFee = 0; // 0%
            sellLiquidityFee = 0; // 0%
            sellTotalFees = 0;
        }
    }

    function excludeFromMaxTransaction(
        address updAds,
        bool isEx
    ) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != address(0xdead) &&
            !swapping
        ) {
            if (!tradingActive) {
                require(
                    _isExcludedFromFees[from] || _isExcludedFromFees[to],
                    "Trading is not active."
                );
            }

            // Buying
            if (
                automatedMarketMakerPairs[from] &&
                !_isExcludedMaxTransactionAmount[to]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "Buy transfer amount exceeds the maxTransactionAmount."
                );
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Max wallet exceeded"
                );
            }
            // Selling
            else if (
                automatedMarketMakerPairs[to] &&
                !_isExcludedMaxTransactionAmount[from]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "Sell transfer amount exceeds the maxTransactionAmount."
                );
            } else if (!_isExcludedMaxTransactionAmount[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Max wallet exceeded"
                );
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // If any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // Only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // Sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellRevShareFee) / sellTotalFees;
            }
            // Buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // Generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // Make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // Accept any amount of ETH; ignore slippage
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // Slippage is unavoidable
            0, // Slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForTeam;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance - liquidityTokens;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance - initialETHBalance;

        uint256 ethForTeam = (ethBalance * tokensForTeam) /
            (totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForTeam;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        tokensForLiquidity = 0;
        tokensForTeam = 0;

        (success, ) = address(revenueSplitter).call{value: address(this).balance}(
            ""
        );
    }

    function withdrawStuckToken(address _token, address _to) public onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawStuckEth(address toAddr) public onlyOwner {
        (bool success, ) = toAddr.call{value: address(this).balance}("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","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":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"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":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimitsAndFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revenueSplitter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"updateLimitsAndFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateMaxForStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6101006040526008805461ffff191690553480156200001c575f80fd5b50604051806040016040528060078152602001660c1e15985d5b1d60ca1b81525060405180604001604052806005815260200164159055531560da1b81525081600390816200006c9190620006bd565b5060046200007b8282620006bd565b50505062000098620000926200037160201b60201c565b62000375565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ba816001620003c6565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000103573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000129919062000789565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000175573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200019b919062000789565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001e6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200020c919062000789565b6001600160a01b031660a081905262000227906001620003c6565b60a051620002379060016200043e565b68878678326eac9000006006819055600755600c6003818169d3c21bcecceda10000006127106200026a826005620007cc565b620002769190620007ec565b60e052600a859055600b8490556200028f84866200080c565b600955600d839055600e829055620002a882846200080c565b600c55734806da464860b6c804c38444f7fda5d51036f06660c052620002e2620002da6005546001600160a01b031690565b600162000491565b620002ef30600162000491565b620002fe61dead600162000491565b60c0516200030e90600162000491565b6200032d620003256005546001600160a01b031690565b6001620003c6565b6200033a306001620003c6565b6200034961dead6001620003c6565b60c05162000359906001620003c6565b62000365338262000539565b50505050505062000822565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004145760405162461bcd60e51b815260206004820181905260248201525f8051602062002a9d83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601260205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004db5760405162461bcd60e51b815260206004820181905260248201525f8051602062002a9d83398151915260448201526064016200040b565b6001600160a01b0382165f81815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005915760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200040b565b8060025f828254620005a491906200080c565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005d29084906200080c565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200064957607f821691505b6020821081036200066857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200061b57805f5260205f20601f840160051c81016020851015620006955750805b601f840160051c820191505b81811015620006b6575f8155600101620006a1565b5050505050565b81516001600160401b03811115620006d957620006d962000620565b620006f181620006ea845462000634565b846200066e565b602080601f83116001811462000727575f84156200070f5750858301515b5f19600386901b1c1916600185901b17855562000781565b5f85815260208120601f198616915b82811015620007575788860151825594840194600190910190840162000736565b50858210156200077557878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f602082840312156200079a575f80fd5b81516001600160a01b0381168114620007b1575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620007e657620007e6620007b8565b92915050565b5f826200080757634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620007e657620007e6620007b8565b60805160a05160c05160e0516122016200089c5f395f81816107190152818161148a0152818161198a01526119bc01525f81816105a10152611ae201525f81816103f10152610b2401525f818161030501528181611bab01528181611c6201528181611c9e01528181611d120152611d3901526122015ff3fe60806040526004361061024c575f3560e01c806395d89b4111610134578063bc205ad3116100b3578063e2f4560511610078578063e2f4560514610708578063f11a24d31461073b578063f2fde38b14610750578063f63743421461076f578063f8b45b0514610784578063fde83a3414610799575f80fd5b8063bc205ad31461065c578063c02466681461067b578063c8c8ebe41461069a578063d85ba063146106af578063dd62ed3e146106c4575f80fd5b8063a1f08e07116100f9578063a1f08e07146105c3578063a457c2d7146105d7578063a9059cbb146105f6578063b62496f514610615578063bbc0c74214610643575f80fd5b806395d89b41146105345780639a7a23d6146105485780639c2e4ac6146105675780639c6868af1461057c5780639d2b86f614610590575f80fd5b806339509351116101cb57806370a082311161019057806370a082311461047d578063715018a6146104b15780637571336a146104c55780637ca8448a146104e45780638a8c523c146105035780638da5cb5b14610517575f80fd5b806339509351146103c157806349bd5a5e146103e05780634fbee193146104135780636a486a8e1461044a5780636ddd17131461045f575f80fd5b806318160ddd1161021157806318160ddd1461033f57806319eab0421461035d5780631a8145bb1461037257806323b872dd14610387578063313ce567146103a6575f80fd5b806306fdde0314610257578063095ea7b31461028157806310d5de53146102b0578063127e1856146102de5780631694505e146102f4575f80fd5b3661025357005b5f80fd5b348015610262575f80fd5b5061026b6107ae565b6040516102789190611e0f565b60405180910390f35b34801561028c575f80fd5b506102a061029b366004611e6f565b61083e565b6040519015158152602001610278565b3480156102bb575f80fd5b506102a06102ca366004611e99565b60126020525f908152604090205460ff1681565b3480156102e9575f80fd5b506102f2610854565b005b3480156102ff575f80fd5b506103277f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610278565b34801561034a575f80fd5b506002545b604051908152602001610278565b348015610368575f80fd5b5061034f600d5481565b34801561037d575f80fd5b5061034f60105481565b348015610392575f80fd5b506102a06103a1366004611ebb565b6108b9565b3480156103b1575f80fd5b5060405160128152602001610278565b3480156103cc575f80fd5b506102a06103db366004611e6f565b610961565b3480156103eb575f80fd5b506103277f000000000000000000000000000000000000000000000000000000000000000081565b34801561041e575f80fd5b506102a061042d366004611e99565b6001600160a01b03165f9081526011602052604090205460ff1690565b348015610455575f80fd5b5061034f600c5481565b34801561046a575f80fd5b506008546102a090610100900460ff1681565b348015610488575f80fd5b5061034f610497366004611e99565b6001600160a01b03165f9081526020819052604090205490565b3480156104bc575f80fd5b506102f261099c565b3480156104d0575f80fd5b506102f26104df366004611f06565b6109d1565b3480156104ef575f80fd5b506102f26104fe366004611e99565b610a25565b34801561050e575f80fd5b506102f2610aae565b348015610522575f80fd5b506005546001600160a01b0316610327565b34801561053f575f80fd5b5061026b610ae9565b348015610553575f80fd5b506102f2610562366004611f06565b610af8565b348015610572575f80fd5b5061034f600a5481565b348015610587575f80fd5b506102f2610bd3565b34801561059b575f80fd5b506103277f000000000000000000000000000000000000000000000000000000000000000081565b3480156105ce575f80fd5b506102f2610c33565b3480156105e2575f80fd5b506102a06105f1366004611e6f565b610c6d565b348015610601575f80fd5b506102a0610610366004611e6f565b610d05565b348015610620575f80fd5b506102a061062f366004611e99565b60136020525f908152604090205460ff1681565b34801561064e575f80fd5b506008546102a09060ff1681565b348015610667575f80fd5b506102f2610676366004611f3d565b610d11565b348015610686575f80fd5b506102f2610695366004611f06565b610e73565b3480156106a5575f80fd5b5061034f60065481565b3480156106ba575f80fd5b5061034f60095481565b3480156106cf575f80fd5b5061034f6106de366004611f3d565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610713575f80fd5b5061034f7f000000000000000000000000000000000000000000000000000000000000000081565b348015610746575f80fd5b5061034f600b5481565b34801561075b575f80fd5b506102f261076a366004611e99565b610efb565b34801561077a575f80fd5b5061034f600e5481565b34801561078f575f80fd5b5061034f60075481565b3480156107a4575f80fd5b5061034f600f5481565b6060600380546107bd90611f69565b80601f01602080910402602001604051908101604052809291908181526020018280546107e990611f69565b80156108345780601f1061080b57610100808354040283529160200191610834565b820191905f5260205f20905b81548152906001019060200180831161081757829003601f168201915b5050505050905090565b5f61084a338484610f96565b5060015b92915050565b6005546001600160a01b031633146108875760405162461bcd60e51b815260040161087e90611fa1565b60405180910390fd5b69d3c21bcecceda100000060068190556007555f600a819055600b8190556009819055600d819055600e819055600c55565b5f6108c58484846110b9565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156109495760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161087e565b6109568533858403610f96565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161084a918590610997908690611fea565b610f96565b6005546001600160a01b031633146109c65760405162461bcd60e51b815260040161087e90611fa1565b6109cf5f611755565b565b6005546001600160a01b031633146109fb5760405162461bcd60e51b815260040161087e90611fa1565b6001600160a01b03919091165f908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a4f5760405162461bcd60e51b815260040161087e90611fa1565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610a98576040519150601f19603f3d011682016040523d82523d5f602084013e610a9d565b606091505b5050905080610aaa575f80fd5b5050565b6005546001600160a01b03163314610ad85760405162461bcd60e51b815260040161087e90611fa1565b6008805461ffff1916610101179055565b6060600480546107bd90611f69565b6005546001600160a01b03163314610b225760405162461bcd60e51b815260040161087e90611fa1565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610bc95760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161087e565b610aaa82826117a6565b6005546001600160a01b03163314610bfd5760405162461bcd60e51b815260040161087e90611fa1565b69054b40b1f852bda0000060068190556007556004600a8190556001600b81905560056009819055600d92909255600e55600c55565b6005546001600160a01b03163314610c5d5760405162461bcd60e51b815260040161087e90611fa1565b69d3c21bcecceda1000000600755565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610cee5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161087e565b610cfb3385858403610f96565b5060019392505050565b5f61084a3384846110b9565b6005546001600160a01b03163314610d3b5760405162461bcd60e51b815260040161087e90611fa1565b6001600160a01b038216610d915760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161087e565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610dd5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610df99190611ffd565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610e49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e6d9190612014565b50505050565b6005546001600160a01b03163314610e9d5760405162461bcd60e51b815260040161087e90611fa1565b6001600160a01b0382165f81815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f255760405162461bcd60e51b815260040161087e90611fa1565b6001600160a01b038116610f8a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087e565b610f9381611755565b50565b6001600160a01b038316610ff85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161087e565b6001600160a01b0382166110595760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161087e565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110df5760405162461bcd60e51b815260040161087e9061202f565b6001600160a01b0382166111055760405162461bcd60e51b815260040161087e90612074565b805f0361111c5761111783835f6117f9565b505050565b6005546001600160a01b0384811691161480159061114857506005546001600160a01b03838116911614155b801561115c57506001600160a01b03821615155b801561117357506001600160a01b03821661dead14155b80156111895750600554600160a01b900460ff16155b156114795760085460ff1661121a576001600160a01b0383165f9081526011602052604090205460ff16806111d557506001600160a01b0382165f9081526011602052604090205460ff165b61121a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161087e565b6001600160a01b0383165f9081526013602052604090205460ff16801561125957506001600160a01b0382165f9081526012602052604090205460ff16155b1561133c576006548111156112ce5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161087e565b6007546001600160a01b0383165f908152602081905260409020546112f39083611fea565b11156113375760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161087e565b611479565b6001600160a01b0382165f9081526013602052604090205460ff16801561137b57506001600160a01b0383165f9081526012602052604090205460ff16155b156113f1576006548111156113375760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161087e565b6001600160a01b0382165f9081526012602052604090205460ff16611479576007546001600160a01b0383165f908152602081905260409020546114359083611fea565b11156114795760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161087e565b305f908152602081905260409020547f0000000000000000000000000000000000000000000000000000000000000000811080159081906114c15750600854610100900460ff165b80156114d75750600554600160a01b900460ff16155b80156114fb57506001600160a01b0385165f9081526013602052604090205460ff16155b801561151f57506001600160a01b0385165f9081526011602052604090205460ff16155b801561154357506001600160a01b0384165f9081526011602052604090205460ff16155b15611571576005805460ff60a01b1916600160a01b17905561156361194b565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526011602052604090205460ff600160a01b9092048216159116806115bd57506001600160a01b0385165f9081526011602052604090205460ff165b156115c557505f5b5f8115611741576001600160a01b0386165f9081526013602052604090205460ff1680156115f457505f600c54115b1561167a576064600c548661160991906120b7565b61161391906120ce565b9050600c54600e548261162691906120b7565b61163091906120ce565b60105f8282546116409190611fea565b9091555050600c54600d5461165590836120b7565b61165f91906120ce565b600f5f82825461166f9190611fea565b909155506117239050565b6001600160a01b0387165f9081526013602052604090205460ff1680156116a257505f600954115b15611723576064600954866116b791906120b7565b6116c191906120ce565b9050600954600b54826116d491906120b7565b6116de91906120ce565b60105f8282546116ee9190611fea565b9091555050600954600a5461170390836120b7565b61170d91906120ce565b600f5f82825461171d9190611fea565b90915550505b8015611734576117348730836117f9565b61173e81866120ed565b94505b61174c8787876117f9565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661181f5760405162461bcd60e51b815260040161087e9061202f565b6001600160a01b0382166118455760405162461bcd60e51b815260040161087e90612074565b6001600160a01b0383165f90815260208190526040902054818110156118bc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161087e565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906118f2908490611fea565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161193e91815260200190565b60405180910390a3610e6d565b305f9081526020819052604081205490505f600f5460105461196d9190611fea565b90505f82158061197b575081155b1561198557505050565b6119b07f000000000000000000000000000000000000000000000000000000000000000060146120b7565b8311156119e5576119e27f000000000000000000000000000000000000000000000000000000000000000060146120b7565b92505b5f600283601054866119f791906120b7565b611a0191906120ce565b611a0b91906120ce565b90505f611a1882866120ed565b905047611a2482611b56565b5f611a2f82476120ed565b90505f6002601054611a4191906120ce565b611a4b90886120ed565b600f54611a5890846120b7565b611a6291906120ce565b90505f611a6f82846120ed565b90505f86118015611a7f57505f81115b15611ad257611a8e8682611d0c565b601054604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b5f6010819055600f8190556040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169147919081818185875af1925050503d805f8114611b43576040519150601f19603f3d011682016040523d82523d5f602084013e611b48565b606091505b505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611b8957611b89612100565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c05573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c299190612114565b81600181518110611c3c57611c3c612100565b60200260200101906001600160a01b031690816001600160a01b031681525050611c87307f000000000000000000000000000000000000000000000000000000000000000084610f96565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611cdb9085905f9086903090429060040161212f565b5f604051808303815f87803b158015611cf2575f80fd5b505af1158015611d04573d5f803e3d5ffd5b505050505050565b611d37307f000000000000000000000000000000000000000000000000000000000000000084610f96565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f80611d7d6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611de3573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611e0891906121a0565b5050505050565b5f602080835283518060208501525f5b81811015611e3b57858101830151858201604001528201611e1f565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610f93575f80fd5b5f8060408385031215611e80575f80fd5b8235611e8b81611e5b565b946020939093013593505050565b5f60208284031215611ea9575f80fd5b8135611eb481611e5b565b9392505050565b5f805f60608486031215611ecd575f80fd5b8335611ed881611e5b565b92506020840135611ee881611e5b565b929592945050506040919091013590565b8015158114610f93575f80fd5b5f8060408385031215611f17575f80fd5b8235611f2281611e5b565b91506020830135611f3281611ef9565b809150509250929050565b5f8060408385031215611f4e575f80fd5b8235611f5981611e5b565b91506020830135611f3281611e5b565b600181811c90821680611f7d57607f821691505b602082108103611f9b57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561084e5761084e611fd6565b5f6020828403121561200d575f80fd5b5051919050565b5f60208284031215612024575f80fd5b8151611eb481611ef9565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761084e5761084e611fd6565b5f826120e857634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561084e5761084e611fd6565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612124575f80fd5b8151611eb481611e5b565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101561217f5784516001600160a01b03168352938301939183019160010161215a565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f606084860312156121b2575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212204a3f6be34d45194229ffb43d91fd1a16e597d5946b1fa5722eab53ecbcbb6ec464736f6c634300081700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061024c575f3560e01c806395d89b4111610134578063bc205ad3116100b3578063e2f4560511610078578063e2f4560514610708578063f11a24d31461073b578063f2fde38b14610750578063f63743421461076f578063f8b45b0514610784578063fde83a3414610799575f80fd5b8063bc205ad31461065c578063c02466681461067b578063c8c8ebe41461069a578063d85ba063146106af578063dd62ed3e146106c4575f80fd5b8063a1f08e07116100f9578063a1f08e07146105c3578063a457c2d7146105d7578063a9059cbb146105f6578063b62496f514610615578063bbc0c74214610643575f80fd5b806395d89b41146105345780639a7a23d6146105485780639c2e4ac6146105675780639c6868af1461057c5780639d2b86f614610590575f80fd5b806339509351116101cb57806370a082311161019057806370a082311461047d578063715018a6146104b15780637571336a146104c55780637ca8448a146104e45780638a8c523c146105035780638da5cb5b14610517575f80fd5b806339509351146103c157806349bd5a5e146103e05780634fbee193146104135780636a486a8e1461044a5780636ddd17131461045f575f80fd5b806318160ddd1161021157806318160ddd1461033f57806319eab0421461035d5780631a8145bb1461037257806323b872dd14610387578063313ce567146103a6575f80fd5b806306fdde0314610257578063095ea7b31461028157806310d5de53146102b0578063127e1856146102de5780631694505e146102f4575f80fd5b3661025357005b5f80fd5b348015610262575f80fd5b5061026b6107ae565b6040516102789190611e0f565b60405180910390f35b34801561028c575f80fd5b506102a061029b366004611e6f565b61083e565b6040519015158152602001610278565b3480156102bb575f80fd5b506102a06102ca366004611e99565b60126020525f908152604090205460ff1681565b3480156102e9575f80fd5b506102f2610854565b005b3480156102ff575f80fd5b506103277f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610278565b34801561034a575f80fd5b506002545b604051908152602001610278565b348015610368575f80fd5b5061034f600d5481565b34801561037d575f80fd5b5061034f60105481565b348015610392575f80fd5b506102a06103a1366004611ebb565b6108b9565b3480156103b1575f80fd5b5060405160128152602001610278565b3480156103cc575f80fd5b506102a06103db366004611e6f565b610961565b3480156103eb575f80fd5b506103277f000000000000000000000000d2b96ab4b5317f000b9d9b266355157ba033707181565b34801561041e575f80fd5b506102a061042d366004611e99565b6001600160a01b03165f9081526011602052604090205460ff1690565b348015610455575f80fd5b5061034f600c5481565b34801561046a575f80fd5b506008546102a090610100900460ff1681565b348015610488575f80fd5b5061034f610497366004611e99565b6001600160a01b03165f9081526020819052604090205490565b3480156104bc575f80fd5b506102f261099c565b3480156104d0575f80fd5b506102f26104df366004611f06565b6109d1565b3480156104ef575f80fd5b506102f26104fe366004611e99565b610a25565b34801561050e575f80fd5b506102f2610aae565b348015610522575f80fd5b506005546001600160a01b0316610327565b34801561053f575f80fd5b5061026b610ae9565b348015610553575f80fd5b506102f2610562366004611f06565b610af8565b348015610572575f80fd5b5061034f600a5481565b348015610587575f80fd5b506102f2610bd3565b34801561059b575f80fd5b506103277f0000000000000000000000004806da464860b6c804c38444f7fda5d51036f06681565b3480156105ce575f80fd5b506102f2610c33565b3480156105e2575f80fd5b506102a06105f1366004611e6f565b610c6d565b348015610601575f80fd5b506102a0610610366004611e6f565b610d05565b348015610620575f80fd5b506102a061062f366004611e99565b60136020525f908152604090205460ff1681565b34801561064e575f80fd5b506008546102a09060ff1681565b348015610667575f80fd5b506102f2610676366004611f3d565b610d11565b348015610686575f80fd5b506102f2610695366004611f06565b610e73565b3480156106a5575f80fd5b5061034f60065481565b3480156106ba575f80fd5b5061034f60095481565b3480156106cf575f80fd5b5061034f6106de366004611f3d565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610713575f80fd5b5061034f7f00000000000000000000000000000000000000000000001b1ae4d6e2ef50000081565b348015610746575f80fd5b5061034f600b5481565b34801561075b575f80fd5b506102f261076a366004611e99565b610efb565b34801561077a575f80fd5b5061034f600e5481565b34801561078f575f80fd5b5061034f60075481565b3480156107a4575f80fd5b5061034f600f5481565b6060600380546107bd90611f69565b80601f01602080910402602001604051908101604052809291908181526020018280546107e990611f69565b80156108345780601f1061080b57610100808354040283529160200191610834565b820191905f5260205f20905b81548152906001019060200180831161081757829003601f168201915b5050505050905090565b5f61084a338484610f96565b5060015b92915050565b6005546001600160a01b031633146108875760405162461bcd60e51b815260040161087e90611fa1565b60405180910390fd5b69d3c21bcecceda100000060068190556007555f600a819055600b8190556009819055600d819055600e819055600c55565b5f6108c58484846110b9565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156109495760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161087e565b6109568533858403610f96565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161084a918590610997908690611fea565b610f96565b6005546001600160a01b031633146109c65760405162461bcd60e51b815260040161087e90611fa1565b6109cf5f611755565b565b6005546001600160a01b031633146109fb5760405162461bcd60e51b815260040161087e90611fa1565b6001600160a01b03919091165f908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a4f5760405162461bcd60e51b815260040161087e90611fa1565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610a98576040519150601f19603f3d011682016040523d82523d5f602084013e610a9d565b606091505b5050905080610aaa575f80fd5b5050565b6005546001600160a01b03163314610ad85760405162461bcd60e51b815260040161087e90611fa1565b6008805461ffff1916610101179055565b6060600480546107bd90611f69565b6005546001600160a01b03163314610b225760405162461bcd60e51b815260040161087e90611fa1565b7f000000000000000000000000d2b96ab4b5317f000b9d9b266355157ba03370716001600160a01b0316826001600160a01b031603610bc95760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161087e565b610aaa82826117a6565b6005546001600160a01b03163314610bfd5760405162461bcd60e51b815260040161087e90611fa1565b69054b40b1f852bda0000060068190556007556004600a8190556001600b81905560056009819055600d92909255600e55600c55565b6005546001600160a01b03163314610c5d5760405162461bcd60e51b815260040161087e90611fa1565b69d3c21bcecceda1000000600755565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610cee5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161087e565b610cfb3385858403610f96565b5060019392505050565b5f61084a3384846110b9565b6005546001600160a01b03163314610d3b5760405162461bcd60e51b815260040161087e90611fa1565b6001600160a01b038216610d915760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161087e565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610dd5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610df99190611ffd565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610e49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e6d9190612014565b50505050565b6005546001600160a01b03163314610e9d5760405162461bcd60e51b815260040161087e90611fa1565b6001600160a01b0382165f81815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f255760405162461bcd60e51b815260040161087e90611fa1565b6001600160a01b038116610f8a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087e565b610f9381611755565b50565b6001600160a01b038316610ff85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161087e565b6001600160a01b0382166110595760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161087e565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110df5760405162461bcd60e51b815260040161087e9061202f565b6001600160a01b0382166111055760405162461bcd60e51b815260040161087e90612074565b805f0361111c5761111783835f6117f9565b505050565b6005546001600160a01b0384811691161480159061114857506005546001600160a01b03838116911614155b801561115c57506001600160a01b03821615155b801561117357506001600160a01b03821661dead14155b80156111895750600554600160a01b900460ff16155b156114795760085460ff1661121a576001600160a01b0383165f9081526011602052604090205460ff16806111d557506001600160a01b0382165f9081526011602052604090205460ff165b61121a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161087e565b6001600160a01b0383165f9081526013602052604090205460ff16801561125957506001600160a01b0382165f9081526012602052604090205460ff16155b1561133c576006548111156112ce5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161087e565b6007546001600160a01b0383165f908152602081905260409020546112f39083611fea565b11156113375760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161087e565b611479565b6001600160a01b0382165f9081526013602052604090205460ff16801561137b57506001600160a01b0383165f9081526012602052604090205460ff16155b156113f1576006548111156113375760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161087e565b6001600160a01b0382165f9081526012602052604090205460ff16611479576007546001600160a01b0383165f908152602081905260409020546114359083611fea565b11156114795760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161087e565b305f908152602081905260409020547f00000000000000000000000000000000000000000000001b1ae4d6e2ef500000811080159081906114c15750600854610100900460ff165b80156114d75750600554600160a01b900460ff16155b80156114fb57506001600160a01b0385165f9081526013602052604090205460ff16155b801561151f57506001600160a01b0385165f9081526011602052604090205460ff16155b801561154357506001600160a01b0384165f9081526011602052604090205460ff16155b15611571576005805460ff60a01b1916600160a01b17905561156361194b565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526011602052604090205460ff600160a01b9092048216159116806115bd57506001600160a01b0385165f9081526011602052604090205460ff165b156115c557505f5b5f8115611741576001600160a01b0386165f9081526013602052604090205460ff1680156115f457505f600c54115b1561167a576064600c548661160991906120b7565b61161391906120ce565b9050600c54600e548261162691906120b7565b61163091906120ce565b60105f8282546116409190611fea565b9091555050600c54600d5461165590836120b7565b61165f91906120ce565b600f5f82825461166f9190611fea565b909155506117239050565b6001600160a01b0387165f9081526013602052604090205460ff1680156116a257505f600954115b15611723576064600954866116b791906120b7565b6116c191906120ce565b9050600954600b54826116d491906120b7565b6116de91906120ce565b60105f8282546116ee9190611fea565b9091555050600954600a5461170390836120b7565b61170d91906120ce565b600f5f82825461171d9190611fea565b90915550505b8015611734576117348730836117f9565b61173e81866120ed565b94505b61174c8787876117f9565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661181f5760405162461bcd60e51b815260040161087e9061202f565b6001600160a01b0382166118455760405162461bcd60e51b815260040161087e90612074565b6001600160a01b0383165f90815260208190526040902054818110156118bc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161087e565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906118f2908490611fea565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161193e91815260200190565b60405180910390a3610e6d565b305f9081526020819052604081205490505f600f5460105461196d9190611fea565b90505f82158061197b575081155b1561198557505050565b6119b07f00000000000000000000000000000000000000000000001b1ae4d6e2ef50000060146120b7565b8311156119e5576119e27f00000000000000000000000000000000000000000000001b1ae4d6e2ef50000060146120b7565b92505b5f600283601054866119f791906120b7565b611a0191906120ce565b611a0b91906120ce565b90505f611a1882866120ed565b905047611a2482611b56565b5f611a2f82476120ed565b90505f6002601054611a4191906120ce565b611a4b90886120ed565b600f54611a5890846120b7565b611a6291906120ce565b90505f611a6f82846120ed565b90505f86118015611a7f57505f81115b15611ad257611a8e8682611d0c565b601054604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b5f6010819055600f8190556040517f0000000000000000000000004806da464860b6c804c38444f7fda5d51036f0666001600160a01b03169147919081818185875af1925050503d805f8114611b43576040519150601f19603f3d011682016040523d82523d5f602084013e611b48565b606091505b505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611b8957611b89612100565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c05573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c299190612114565b81600181518110611c3c57611c3c612100565b60200260200101906001600160a01b031690816001600160a01b031681525050611c87307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f96565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611cdb9085905f9086903090429060040161212f565b5f604051808303815f87803b158015611cf2575f80fd5b505af1158015611d04573d5f803e3d5ffd5b505050505050565b611d37307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f96565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f80611d7d6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611de3573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611e0891906121a0565b5050505050565b5f602080835283518060208501525f5b81811015611e3b57858101830151858201604001528201611e1f565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610f93575f80fd5b5f8060408385031215611e80575f80fd5b8235611e8b81611e5b565b946020939093013593505050565b5f60208284031215611ea9575f80fd5b8135611eb481611e5b565b9392505050565b5f805f60608486031215611ecd575f80fd5b8335611ed881611e5b565b92506020840135611ee881611e5b565b929592945050506040919091013590565b8015158114610f93575f80fd5b5f8060408385031215611f17575f80fd5b8235611f2281611e5b565b91506020830135611f3281611ef9565b809150509250929050565b5f8060408385031215611f4e575f80fd5b8235611f5981611e5b565b91506020830135611f3281611e5b565b600181811c90821680611f7d57607f821691505b602082108103611f9b57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561084e5761084e611fd6565b5f6020828403121561200d575f80fd5b5051919050565b5f60208284031215612024575f80fd5b8151611eb481611ef9565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761084e5761084e611fd6565b5f826120e857634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561084e5761084e611fd6565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612124575f80fd5b8151611eb481611e5b565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101561217f5784516001600160a01b03168352938301939183019160010161215a565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f606084860312156121b2575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212204a3f6be34d45194229ffb43d91fd1a16e597d5946b1fa5722eab53ecbcbb6ec464736f6c63430008170033

Deployed Bytecode Sourcemap

32904:13080:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10603:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12836:194;;;;;;;;;;-1:-1:-1;12836:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12836:194:0;1023:187:1;33743:63:0;;;;;;;;;;-1:-1:-1;33743:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37865:438;;;;;;;;;;;;;:::i;:::-;;32949:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;32949:51:0;1467:230:1;11723:108:0;;;;;;;;;;-1:-1:-1;11811:12:0;;11723:108;;;1848:25:1;;;1836:2;1821:18;11723:108:0;1702:177:1;33477:30:0;;;;;;;;;;;;;;;;33589:33;;;;;;;;;;;;;;;;13512:529;;;;;;;;;;-1:-1:-1;13512:529:0;;;;;:::i;:::-;;:::i;11565:93::-;;;;;;;;;;-1:-1:-1;11565:93:0;;11648:2;2487:36:1;;2475:2;2460:18;11565:93:0;2345:184:1;14450:290:0;;;;;;;;;;-1:-1:-1;14450:290:0;;;;;:::i;:::-;;:::i;33007:38::-;;;;;;;;;;;;;;;39188:126;;;;;;;;;;-1:-1:-1;39188:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;39278:28:0;39254:4;39278:28;;;:19;:28;;;;;;;;;39188:126;33442:28;;;;;;;;;;;;;;;;33297:31;;;;;;;;;;-1:-1:-1;33297:31:0;;;;;;;;;;;11894:143;;;;;;;;;;-1:-1:-1;11894:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12011:18:0;11984:7;12011:18;;;;;;;;;;;;11894:143;3999:103;;;;;;;;;;;;;:::i;38311:169::-;;;;;;;;;;-1:-1:-1;38311:169:0;;;;;:::i;:::-;;:::i;45812:::-;;;;;;;;;;-1:-1:-1;45812:169:0;;;;;:::i;:::-;;:::i;36859:112::-;;;;;;;;;;;;;:::i;3348:87::-;;;;;;;;;;-1:-1:-1;3421:6:0;;-1:-1:-1;;;;;3421:6:0;3348:87;;10822:104;;;;;;;;;;;;;:::i;38678:306::-;;;;;;;;;;-1:-1:-1;38678:306:0;;;;;:::i;:::-;;:::i;33371:25::-;;;;;;;;;;;;;;;;37171:408;;;;;;;;;;;;;:::i;33083:40::-;;;;;;;;;;;;;;;37701:103;;;;;;;;;;;;;:::i;15243:475::-;;;;;;;;;;-1:-1:-1;15243:475:0;;;;;:::i;:::-;;:::i;12250:200::-;;;;;;;;;;-1:-1:-1;12250:200:0;;;;;:::i;:::-;;:::i;33964:57::-;;;;;;;;;;-1:-1:-1;33964:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33257:33;;;;;;;;;;-1:-1:-1;33257:33:0;;;;;;;;45518:286;;;;;;;;;;-1:-1:-1;45518:286:0;;;;;:::i;:::-;;:::i;38488:182::-;;;;;;;;;;-1:-1:-1;38488:182:0;;;;;:::i;:::-;;:::i;33132:35::-;;;;;;;;;;;;;;;;33337:27;;;;;;;;;;;;;;;;12513:176;;;;;;;;;;-1:-1:-1;12513:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;12654:18:0;;;12627:7;12654:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12513:176;33174:43;;;;;;;;;;;;;;;33403:30;;;;;;;;;;;;;;;;4257:238;;;;;;;;;;-1:-1:-1;4257:238:0;;;;;:::i;:::-;;:::i;33514:31::-;;;;;;;;;;;;;;;;33224:24;;;;;;;;;;;;;;;;33554:28;;;;;;;;;;;;;;;;10603:100;10657:13;10690:5;10683:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10603:100;:::o;12836:194::-;12944:4;12961:39;2270:10;12984:7;12993:6;12961:8;:39::i;:::-;-1:-1:-1;13018:4:0;12836:194;;;;;:::o;37865:438::-;3421:6;;-1:-1:-1;;;;;3421:6:0;2270:10;3568:23;3560:68;;;;-1:-1:-1;;;3560:68:0;;;;;;;:::i;:::-;;;;;;;;;37974:22:::1;37951:20;:45:::0;;;38019:9:::1;:34:::0;-1:-1:-1;38078:10:0::1;:14:::0;;;38113:15:::1;:19:::0;;;38153:12:::1;:16:::0;;;38186:15:::1;:19:::0;;;38226:16:::1;:20:::0;;;38267:13:::1;:17:::0;37865:438::o;13512:529::-;13652:4;13669:36;13679:6;13687:9;13698:6;13669:9;:36::i;:::-;-1:-1:-1;;;;;13745:19:0;;13718:24;13745:19;;;:11;:19;;;;;;;;2270:10;13745:33;;;;;;;;13811:26;;;;13789:116;;;;-1:-1:-1;;;13789:116:0;;4593:2:1;13789:116:0;;;4575:21:1;4632:2;4612:18;;;4605:30;4671:34;4651:18;;;4644:62;-1:-1:-1;;;4722:18:1;;;4715:38;4770:19;;13789:116:0;4391:404:1;13789:116:0;13941:57;13950:6;2270:10;13991:6;13972:16;:25;13941:8;:57::i;:::-;-1:-1:-1;14029:4:0;;13512:529;-1:-1:-1;;;;13512:529:0:o;14450:290::-;2270:10;14563:4;14652:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14652:34:0;;;;;;;;;;14563:4;;14580:130;;14630:7;;14652:47;;14689:10;;14652:47;:::i;:::-;14580:8;:130::i;3999:103::-;3421:6;;-1:-1:-1;;;;;3421:6:0;2270:10;3568:23;3560:68;;;;-1:-1:-1;;;3560:68:0;;;;;;;:::i;:::-;4064:30:::1;4091:1;4064:18;:30::i;:::-;3999:103::o:0;38311:169::-;3421:6;;-1:-1:-1;;;;;3421:6:0;2270:10;3568:23;3560:68;;;;-1:-1:-1;;;3560:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38426:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;38426:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38311:169::o;45812:::-;3421:6;;-1:-1:-1;;;;;3421:6:0;2270:10;3568:23;3560:68;;;;-1:-1:-1;;;3560:68:0;;;;;;;:::i;:::-;45883:12:::1;45901:6;-1:-1:-1::0;;;;;45901:11:0::1;45920:21;45901:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45882:64;;;45965:7;45957:16;;;::::0;::::1;;45871:110;45812:169:::0;:::o;36859:112::-;3421:6;;-1:-1:-1;;;;;3421:6:0;2270:10;3568:23;3560:68;;;;-1:-1:-1;;;3560:68:0;;;;;;;:::i;:::-;36914:13:::1;:20:::0;;-1:-1:-1;;36945:18:0;;;;;36859:112::o;10822:104::-;10878:13;10911:7;10904:14;;;;;:::i;38678:306::-;3421:6;;-1:-1:-1;;;;;3421:6:0;2270:10;3568:23;3560:68;;;;-1:-1:-1;;;3560:68:0;;;;;;;:::i;:::-;38824:13:::1;-1:-1:-1::0;;;;;38816:21:0::1;:4;-1:-1:-1::0;;;;;38816:21:0::1;::::0;38794:128:::1;;;::::0;-1:-1:-1;;;38794:128:0;;5474:2:1;38794:128:0::1;::::0;::::1;5456:21:1::0;5513:2;5493:18;;;5486:30;5552:34;5532:18;;;5525:62;5623:27;5603:18;;;5596:55;5668:19;;38794:128:0::1;5272:421:1::0;38794:128:0::1;38935:41;38964:4;38970:5;38935:28;:41::i;37171:408::-:0;3421:6;;-1:-1:-1;;;;;3421:6:0;2270:10;3568:23;3560:68;;;;-1:-1:-1;;;3560:68:0;;;;;;;:::i;:::-;37280:19:::1;37257:20;:42:::0;;;37322:9:::1;:31:::0;37398:1:::1;37385:10;:14:::0;;;37434:1:::1;37416:15;:19:::0;;;37467:1:::1;37452:12;:16:::0;;;37481:15:::1;:19:::0;;;;37517:16:::1;:20:::0;37554:13:::1;:17:::0;37171:408::o;37701:103::-;3421:6;;-1:-1:-1;;;;;3421:6:0;2270:10;3568:23;3560:68;;;;-1:-1:-1;;;3560:68:0;;;;;;;:::i;:::-;37774:22:::1;37762:9;:34:::0;37701:103::o;15243:475::-;2270:10;15361:4;15405:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15405:34:0;;;;;;;;;;15472:35;;;;15450:122;;;;-1:-1:-1;;;15450:122:0;;5900:2:1;15450:122:0;;;5882:21:1;5939:2;5919:18;;;5912:30;5978:34;5958:18;;;5951:62;-1:-1:-1;;;6029:18:1;;;6022:35;6074:19;;15450:122:0;5698:401:1;15450:122:0;15608:67;2270:10;15631:7;15659:15;15640:16;:34;15608:8;:67::i;:::-;-1:-1:-1;15706:4:0;;15243:475;-1:-1:-1;;;15243:475:0:o;12250:200::-;12361:4;12378:42;2270:10;12402:9;12413:6;12378:9;:42::i;45518:286::-;3421:6;;-1:-1:-1;;;;;3421:6:0;2270:10;3568:23;3560:68;;;;-1:-1:-1;;;3560:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45611:20:0;::::1;45603:59;;;::::0;-1:-1:-1;;;45603:59:0;;6306:2:1;45603:59:0::1;::::0;::::1;6288:21:1::0;6345:2;6325:18;;;6318:30;6384:28;6364:18;;;6357:56;6430:18;;45603:59:0::1;6104:350:1::0;45603:59:0::1;45700:39;::::0;-1:-1:-1;;;45700:39:0;;45733:4:::1;45700:39;::::0;::::1;1640:51:1::0;45673:24:0::1;::::0;-1:-1:-1;;;;;45700:24:0;::::1;::::0;::::1;::::0;1613:18:1;;45700:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45750:46;::::0;-1:-1:-1;;;45750:46:0;;-1:-1:-1;;;;;6840:32:1;;;45750:46:0::1;::::0;::::1;6822:51:1::0;6889:18;;;6882:34;;;45673:66:0;;-1:-1:-1;45750:23:0;;::::1;::::0;::::1;::::0;6795:18:1;;45750:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45592:212;45518:286:::0;;:::o;38488:182::-;3421:6;;-1:-1:-1;;;;;3421:6:0;2270:10;3568:23;3560:68;;;;-1:-1:-1;;;3560:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38573:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38573:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38628:34;;1163:41:1;;;38628:34:0::1;::::0;1136:18:1;38628:34:0::1;;;;;;;38488:182:::0;;:::o;4257:238::-;3421:6;;-1:-1:-1;;;;;3421:6:0;2270:10;3568:23;3560:68;;;;-1:-1:-1;;;3560:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4360:22:0;::::1;4338:110;;;::::0;-1:-1:-1;;;4338:110:0;;7379:2:1;4338:110:0::1;::::0;::::1;7361:21:1::0;7418:2;7398:18;;;7391:30;7457:34;7437:18;;;7430:62;-1:-1:-1;;;7508:18:1;;;7501:36;7554:19;;4338:110:0::1;7177:402:1::0;4338:110:0::1;4459:28;4478:8;4459:18;:28::i;:::-;4257:238:::0;:::o;19026:380::-;-1:-1:-1;;;;;19162:19:0;;19154:68;;;;-1:-1:-1;;;19154:68:0;;7786:2:1;19154:68:0;;;7768:21:1;7825:2;7805:18;;;7798:30;7864:34;7844:18;;;7837:62;-1:-1:-1;;;7915:18:1;;;7908:34;7959:19;;19154:68:0;7584:400:1;19154:68:0;-1:-1:-1;;;;;19241:21:0;;19233:68;;;;-1:-1:-1;;;19233:68:0;;8191:2:1;19233:68:0;;;8173:21:1;8230:2;8210:18;;;8203:30;8269:34;8249:18;;;8242:62;-1:-1:-1;;;8320:18:1;;;8313:32;8362:19;;19233:68:0;7989:398:1;19233:68:0;-1:-1:-1;;;;;19314:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19366:32;;1848:25:1;;;19366:32:0;;1821:18:1;19366:32:0;;;;;;;19026:380;;;:::o;39322:3540::-;-1:-1:-1;;;;;39454:18:0;;39446:68;;;;-1:-1:-1;;;39446:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39533:16:0;;39525:64;;;;-1:-1:-1;;;39525:64:0;;;;;;;:::i;:::-;39606:6;39616:1;39606:11;39602:93;;39634:28;39650:4;39656:2;39660:1;39634:15;:28::i;:::-;39322:3540;;;:::o;39602:93::-;3421:6;;-1:-1:-1;;;;;39725:15:0;;;3421:6;;39725:15;;;;:45;;-1:-1:-1;3421:6:0;;-1:-1:-1;;;;;39757:13:0;;;3421:6;;39757:13;;39725:45;:78;;;;-1:-1:-1;;;;;;39787:16:0;;;;39725:78;:116;;;;-1:-1:-1;;;;;;39820:21:0;;39834:6;39820:21;;39725:116;:142;;;;-1:-1:-1;39859:8:0;;-1:-1:-1;;;39859:8:0;;;;39858:9;39725:142;39707:1478;;;39899:13;;;;39894:203;;-1:-1:-1;;;;;39963:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39992:23:0;;;;;;:19;:23;;;;;;;;39963:52;39933:148;;;;-1:-1:-1;;;39933:148:0;;9404:2:1;39933:148:0;;;9386:21:1;9443:2;9423:18;;;9416:30;-1:-1:-1;;;9462:18:1;;;9455:52;9524:18;;39933:148:0;9202:346:1;39933:148:0;-1:-1:-1;;;;;40158:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;40211:35:0;;;;;;:31;:35;;;;;;;;40210:36;40158:88;40136:1038;;;40321:20;;40311:6;:30;;40281:157;;;;-1:-1:-1;;;40281:157:0;;9755:2:1;40281:157:0;;;9737:21:1;9794:2;9774:18;;;9767:30;9833:34;9813:18;;;9806:62;-1:-1:-1;;;9884:18:1;;;9877:51;9945:19;;40281:157:0;9553:417:1;40281:157:0;40513:9;;-1:-1:-1;;;;;12011:18:0;;11984:7;12011:18;;;;;;;;;;;40487:22;;:6;:22;:::i;:::-;:35;;40457:128;;;;-1:-1:-1;;;40457:128:0;;10177:2:1;40457:128:0;;;10159:21:1;10216:2;10196:18;;;10189:30;-1:-1:-1;;;10235:18:1;;;10228:49;10294:18;;40457:128:0;9975:343:1;40457:128:0;40136:1038;;;-1:-1:-1;;;;;40666:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;40717:37:0;;;;;;:31;:37;;;;;;;;40716:38;40666:88;40644:530;;;40829:20;;40819:6;:30;;40789:158;;;;-1:-1:-1;;;40789:158:0;;10525:2:1;40789:158:0;;;10507:21:1;10564:2;10544:18;;;10537:30;10603:34;10583:18;;;10576:62;-1:-1:-1;;;10654:18:1;;;10647:52;10716:19;;40789:158:0;10323:418:1;40644:530:0;-1:-1:-1;;;;;40974:35:0;;;;;;:31;:35;;;;;;;;40969:205;;41086:9;;-1:-1:-1;;;;;12011:18:0;;11984:7;12011:18;;;;;;;;;;;41060:22;;:6;:22;:::i;:::-;:35;;41030:128;;;;-1:-1:-1;;;41030:128:0;;10177:2:1;41030:128:0;;;10159:21:1;10216:2;10196:18;;;10189:30;-1:-1:-1;;;10235:18:1;;;10228:49;10294:18;;41030:128:0;9975:343:1;41030:128:0;41246:4;41197:28;12011:18;;;;;;;;;;;41304;41280:42;;;;;;;41353:35;;-1:-1:-1;41377:11:0;;;;;;;41353:35;:61;;;;-1:-1:-1;41406:8:0;;-1:-1:-1;;;41406:8:0;;;;41405:9;41353:61;:110;;;;-1:-1:-1;;;;;;41432:31:0;;;;;;:25;:31;;;;;;;;41431:32;41353:110;:153;;;;-1:-1:-1;;;;;;41481:25:0;;;;;;:19;:25;;;;;;;;41480:26;41353:153;:194;;;;-1:-1:-1;;;;;;41524:23:0;;;;;;:19;:23;;;;;;;;41523:24;41353:194;41335:326;;;41574:8;:15;;-1:-1:-1;;;;41574:15:0;-1:-1:-1;;;41574:15:0;;;41606:10;:8;:10::i;:::-;41633:8;:16;;-1:-1:-1;;;;41633:16:0;;;41335:326;41689:8;;-1:-1:-1;;;;;41799:25:0;;41673:12;41799:25;;;:19;:25;;;;;;41689:8;-1:-1:-1;;;41689:8:0;;;;;41688:9;;41799:25;;:52;;-1:-1:-1;;;;;;41828:23:0;;;;;;:19;:23;;;;;;;;41799:52;41795:100;;;-1:-1:-1;41878:5:0;41795:100;41907:12;42012:7;42008:801;;;-1:-1:-1;;;;;42061:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42110:1;42094:13;;:17;42061:50;42057:603;;;42166:3;42149:13;;42140:6;:22;;;;:::i;:::-;42139:30;;;;:::i;:::-;42132:37;;42238:13;;42218:16;;42211:4;:23;;;;:::i;:::-;42210:41;;;;:::i;:::-;42188:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42314:13:0;;42295:15;;42288:22;;:4;:22;:::i;:::-;42287:40;;;;:::i;:::-;42270:13;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;42057:603:0;;-1:-1:-1;42057:603:0;;-1:-1:-1;;;;;42386:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42436:1;42421:12;;:16;42386:51;42382:278;;;42491:3;42475:12;;42466:6;:21;;;;:::i;:::-;42465:29;;;;:::i;:::-;42458:36;;42562:12;;42543:15;;42536:4;:22;;;;:::i;:::-;42535:39;;;;:::i;:::-;42513:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42632:12:0;;42618:10;;42611:17;;:4;:17;:::i;:::-;42610:34;;;;:::i;:::-;42593:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;42382:278:0;42680:8;;42676:91;;42709:42;42725:4;42739;42746;42709:15;:42::i;:::-;42783:14;42793:4;42783:14;;:::i;:::-;;;42008:801;42821:33;42837:4;42843:2;42847:6;42821:15;:33::i;:::-;39435:3427;;;;39322:3540;;;:::o;4655:191::-;4748:6;;;-1:-1:-1;;;;;4765:17:0;;;-1:-1:-1;;;;;;4765:17:0;;;;;;;4798:40;;4748:6;;;4765:17;4748:6;;4798:40;;4729:16;;4798:40;4718:128;4655:191;:::o;38992:188::-;-1:-1:-1;;;;;39075:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39075:39:0;;;;;;;;;;39132:40;;39075:39;;:31;39132:40;;;38992:188;;:::o;16208:770::-;-1:-1:-1;;;;;16348:20:0;;16340:70;;;;-1:-1:-1;;;16340:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16429:23:0;;16421:71;;;;-1:-1:-1;;;16421:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16589:17:0;;16565:21;16589:17;;;;;;;;;;;16639:23;;;;16617:111;;;;-1:-1:-1;;;16617:111:0;;11476:2:1;16617:111:0;;;11458:21:1;11515:2;11495:18;;;11488:30;11554:34;11534:18;;;11527:62;-1:-1:-1;;;11605:18:1;;;11598:36;11651:19;;16617:111:0;11274:402:1;16617:111:0;-1:-1:-1;;;;;16764:17:0;;;:9;:17;;;;;;;;;;;16784:22;;;16764:42;;16828:20;;;;;;;;:30;;16800:6;;16764:9;16828:30;;16800:6;;16828:30;:::i;:::-;;;;;;;;16893:9;-1:-1:-1;;;;;16876:35:0;16885:6;-1:-1:-1;;;;;16876:35:0;;16904:6;16876:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;16876:35:0;;;;;;;;16924:46;39322:3540;44005:1505;44088:4;44044:23;12011:18;;;;;;;;;;;44044:50;;44105:25;44154:13;;44133:18;;:34;;;;:::i;:::-;44105:62;-1:-1:-1;44178:12:0;44207:20;;;:46;;-1:-1:-1;44231:22:0;;44207:46;44203:85;;;44270:7;;;44005:1505::o;44203:85::-;44322:23;:18;44343:2;44322:23;:::i;:::-;44304:15;:41;44300:115;;;44380:23;:18;44401:2;44380:23;:::i;:::-;44362:41;;44300:115;44476:23;44589:1;44556:17;44521:18;;44503:15;:36;;;;:::i;:::-;44502:71;;;;:::i;:::-;:88;;;;:::i;:::-;44476:114;-1:-1:-1;44601:26:0;44630:33;44476:114;44630:15;:33;:::i;:::-;44601:62;-1:-1:-1;44704:21:0;44738:36;44601:62;44738:16;:36::i;:::-;44787:18;44808:41;44832:17;44808:21;:41;:::i;:::-;44787:62;;44862:18;44970:1;44949:18;;:22;;;;:::i;:::-;44928:44;;:17;:44;:::i;:::-;44897:13;;44884:26;;:10;:26;:::i;:::-;44883:90;;;;:::i;:::-;44862:111;-1:-1:-1;44986:23:0;45012;44862:111;45012:10;:23;:::i;:::-;44986:49;;45070:1;45052:15;:19;:42;;;;;45093:1;45075:15;:19;45052:42;45048:278;;;45111:46;45124:15;45141;45111:12;:46::i;:::-;45281:18;;45177:137;;;11883:25:1;;;11939:2;11924:18;;11917:34;;;11967:18;;;11960:34;;;;45177:137:0;;;;;;11871:2:1;45177:137:0;;;45048:278;45359:1;45338:18;:22;;;45371:13;:17;;;45415:87;;45423:15;-1:-1:-1;;;;;45415:29:0;;45452:21;;45415:87;;45359:1;45415:87;45452:21;45415:29;:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;44005:1505:0:o;42870:606::-;43020:16;;;43034:1;43020:16;;;;;;;;42996:21;;43020:16;;;;;;;;;;-1:-1:-1;43020:16:0;42996:40;;43065:4;43047;43052:1;43047:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43047:23:0;;;-1:-1:-1;;;;;43047:23:0;;;;;43091:15;-1:-1:-1;;;;;43091:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43081:4;43086:1;43081:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;43081:32:0;;;-1:-1:-1;;;;;43081:32:0;;;;;43126:62;43143:4;43158:15;43176:11;43126:8;:62::i;:::-;43227:241;;-1:-1:-1;;;43227:241:0;;-1:-1:-1;;;;;43227:15:0;:66;;;;:241;;43308:11;;43334:1;;43395:4;;43422;;43442:15;;43227:241;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42925:551;42870:606;:::o;43484:513::-;43632:62;43649:4;43664:15;43682:11;43632:8;:62::i;:::-;43737:15;-1:-1:-1;;;;;43737:31:0;;43776:9;43809:4;43829:11;43855:1;43898;43941:7;3421:6;;-1:-1:-1;;;;;3421:6:0;;3348:87;43941:7;43737:252;;;;;;-1:-1:-1;;;;;;43737:252:0;;;-1:-1:-1;;;;;13869:15:1;;;43737:252:0;;;13851:34:1;13901:18;;;13894:34;;;;13944:18;;;13937:34;;;;13987:18;;;13980:34;14051:15;;;14030:19;;;14023:44;43963:15:0;14083:19:1;;;14076:35;13785:19;;43737:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43484:513;;:::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:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;:::-;1451:5;1215:247;-1:-1:-1;;;1215:247:1:o;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2742:118::-;2828:5;2821:13;2814:21;2807:5;2804:32;2794:60;;2850:1;2847;2840:12;2865:382;2930:6;2938;2991:2;2979:9;2970:7;2966:23;2962:32;2959:52;;;3007:1;3004;2997:12;2959:52;3046:9;3033:23;3065:31;3090:5;3065:31;:::i;:::-;3115:5;-1:-1:-1;3172:2:1;3157:18;;3144:32;3185:30;3144:32;3185:30;:::i;:::-;3234:7;3224:17;;;2865:382;;;;;:::o;3252:388::-;3320:6;3328;3381:2;3369:9;3360:7;3356:23;3352:32;3349:52;;;3397:1;3394;3387:12;3349:52;3436:9;3423:23;3455:31;3480:5;3455:31;:::i;:::-;3505:5;-1:-1:-1;3562:2:1;3547:18;;3534:32;3575:33;3534:32;3575:33;:::i;3645:380::-;3724:1;3720:12;;;;3767;;;3788:61;;3842:4;3834:6;3830:17;3820:27;;3788:61;3895:2;3887:6;3884:14;3864:18;3861:38;3858:161;;3941:10;3936:3;3932:20;3929:1;3922:31;3976:4;3973:1;3966:15;4004:4;4001:1;3994:15;3858:161;;3645:380;;;:::o;4030:356::-;4232:2;4214:21;;;4251:18;;;4244:30;4310:34;4305:2;4290:18;;4283:62;4377:2;4362:18;;4030:356::o;4800:127::-;4861:10;4856:3;4852:20;4849:1;4842:31;4892:4;4889:1;4882:15;4916:4;4913:1;4906:15;4932:125;4997:9;;;5018:10;;;5015:36;;;5031:18;;:::i;6459:184::-;6529:6;6582:2;6570:9;6561:7;6557:23;6553:32;6550:52;;;6598:1;6595;6588:12;6550:52;-1:-1:-1;6621:16:1;;6459:184;-1:-1:-1;6459:184:1:o;6927:245::-;6994:6;7047:2;7035:9;7026:7;7022:23;7018:32;7015:52;;;7063:1;7060;7053:12;7015:52;7095:9;7089:16;7114:28;7136:5;7114:28;:::i;8392:401::-;8594:2;8576:21;;;8633:2;8613:18;;;8606:30;8672:34;8667:2;8652:18;;8645:62;-1:-1:-1;;;8738:2:1;8723:18;;8716:35;8783:3;8768:19;;8392:401::o;8798:399::-;9000:2;8982:21;;;9039:2;9019:18;;;9012:30;9078:34;9073:2;9058:18;;9051:62;-1:-1:-1;;;9144:2:1;9129:18;;9122:33;9187:3;9172:19;;8798:399::o;10746:168::-;10819:9;;;10850;;10867:15;;;10861:22;;10847:37;10837:71;;10888:18;;:::i;10919:217::-;10959:1;10985;10975:132;;11029:10;11024:3;11020:20;11017:1;11010:31;11064:4;11061:1;11054:15;11092:4;11089:1;11082:15;10975:132;-1:-1:-1;11121:9:1;;10919:217::o;11141:128::-;11208:9;;;11229:11;;;11226:37;;;11243:18;;:::i;12137:127::-;12198:10;12193:3;12189:20;12186:1;12179:31;12229:4;12226:1;12219:15;12253:4;12250:1;12243:15;12269:251;12339:6;12392:2;12380:9;12371:7;12367:23;12363:32;12360:52;;;12408:1;12405;12398:12;12360:52;12440:9;12434:16;12459:31;12484:5;12459:31;:::i;12525:980::-;12787:4;12835:3;12824:9;12820:19;12866:6;12855:9;12848:25;12892:2;12930:6;12925:2;12914:9;12910:18;12903:34;12973:3;12968:2;12957:9;12953:18;12946:31;12997:6;13032;13026:13;13063:6;13055;13048:22;13101:3;13090:9;13086:19;13079:26;;13140:2;13132:6;13128:15;13114:29;;13161:1;13171:195;13185:6;13182:1;13179:13;13171:195;;;13250:13;;-1:-1:-1;;;;;13246:39:1;13234:52;;13341:15;;;;13306:12;;;;13282:1;13200:9;13171:195;;;-1:-1:-1;;;;;;;13422:32:1;;;;13417:2;13402:18;;13395:60;-1:-1:-1;;;13486:3:1;13471:19;13464:35;13383:3;12525:980;-1:-1:-1;;;12525:980:1:o;14122:306::-;14210:6;14218;14226;14279:2;14267:9;14258:7;14254:23;14250:32;14247:52;;;14295:1;14292;14285:12;14247:52;14324:9;14318:16;14308:26;;14374:2;14363:9;14359:18;14353:25;14343:35;;14418:2;14407:9;14403:18;14397:25;14387:35;;14122:306;;;;;:::o

Swarm Source

ipfs://4a3f6be34d45194229ffb43d91fd1a16e597d5946b1fa5722eab53ecbcbb6ec4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.