ETH Price: $2,353.71 (+0.46%)

Token

SuperenaLotto MegaMillions OzLotto LottoMax Powerb... (LOTTO)
 

Overview

Max Total Supply

100,000,000 LOTTO

Holders

70

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000009848906 LOTTO

Value
$0.00
0xd24f4597ca97e5870baba75467a352d1e4a3a845
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:
SMOLPEE

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-14
*/

// SPDX-License-Identifier: MIT

/*
SuperenaLotto MegaMillions OzLotto LottoMax Powerball EuroMillions EuroJackpot Lotto649 : SmolPee649


$Lotto is a one-of-a-kind utility token that opens the door to exciting on-chain lottery.
EVERY HOUR, THREE FORTUNATE HOLDERS WILL SEIZE THE ENTIRE TREASURY.

telegram : https://t.me/Smolpee649
website : https://smolpee649.pages.dev/
 
*/

pragma solidity 0.8.20;
pragma experimental ABIEncoderV2;

/**
 * @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 SMOLPEE is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public lotteryWallet;
    address public teamWallet;

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

    bool public limitsInEffect = true;
    bool public tradingActive = true;
    bool public swapEnabled = true;

    bool public blacklistRenounced = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

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

    uint256 public sellTotalFees;
    uint256 public sellLotteryFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public tokensForLottery;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

    /******************/

    // 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 lotteryWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event teamWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    constructor() ERC20("SuperenaLotto MegaMillions OzLotto LottoMax Powerball EuroMillions EuroJackpot Lotto649 Lottery Token", "LOTTO") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyLotteryFee = 10; //to prevent bots, will be updated to 3
        uint256 _buyLiquidityFee = 0; 
        uint256 _buyTeamFee = 10; //to prevent bots, will be updated to 2

        uint256 _sellLotteryFee = 10; //to prevent bots, will be updated to 2
        uint256 _sellLiquidityFee = 0;
        uint256 _sellTeamFee = 10; //to prevent bots, will be updated to 3

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount = 1000_000 * 1e18; // 2%
        maxWallet = 1000_000 * 1e18; // 2% 
        swapTokensAtAmount = (totalSupply * 1) / 1000; // 0.1% 

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

        sellLotteryFee = _sellLotteryFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellLotteryFee + sellLiquidityFee + sellTeamFee;

        lotteryWallet = address(0xE9c57D48fF3D5AcdD3a32940190dCaD57C53460E); // set as Lottery wallet
        teamWallet = owner(); // set as team wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), 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 {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
      
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 10) / 1000) / 1e18,
            "Cannot set maxWallet lower than 1.0%"
        );
        maxWallet = newNum * (10**18);
    }

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

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _lotteryFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        buyLotteryFee = _lotteryFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyLotteryFee + buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 30, "Buy fees must be <= 30.");
    }

    function updateSellFees(
        uint256 _lotteryFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        sellLotteryFee = _lotteryFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellLotteryFee + sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 30, "Sell fees must be <= 30.");
    }

    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 updateLotteryWallet(address newLotteryWallet) external onlyOwner {
        emit lotteryWalletUpdated(newLotteryWallet, lotteryWallet);
        lotteryWallet = newLotteryWallet;
    }

    function updateTeamWallet(address newWallet) external onlyOwner {
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
    }

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

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[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");
        require(!blacklisted[from],"Sender blacklisted");
        require(!blacklisted[to],"Receiver blacklisted");

        
        

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

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

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                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) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForLottery += (fees * sellLotteryFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForLottery += (fees * buyLotteryFee) / 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
            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 +
            tokensForLottery +
            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.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForLottery = ethBalance.mul(tokensForLottery).div(totalTokensToSwap - (tokensForLiquidity / 2));
        
        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForLottery - ethForTeam;

        tokensForLiquidity = 0;
        tokensForLottery = 0;
        tokensForTeam = 0;

        (success, ) = address(teamWallet).call{value: ethForTeam}("");

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

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

    function withdrawStuckUnibot() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawStuckToken(address _token, address _to) external 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) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    // @dev team renounce blacklist commands
    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

    function blacklist(address _addr) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[_addr] = true;
    }

    // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"lotteryWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLotteryFee","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":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lotteryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLotteryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","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":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLottery","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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","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":[{"internalType":"uint256","name":"_lotteryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newLotteryWallet","type":"address"}],"name":"updateLotteryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lotteryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","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"},{"inputs":[],"name":"withdrawStuckUnibot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805463ffffffff19166201010117905534801562000022575f80fd5b506040518060a0016040528060658152602001620037c0606591396040805180820190915260058152644c4f54544f60d81b60208201526003620000678382620006f2565b506004620000768282620006f2565b505050620000936200008d620003a460201b60201c565b620003a8565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000b5816001620003f9565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620000fe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001249190620007ba565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000170573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001969190620007ba565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001e1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002079190620007ba565b6001600160a01b031660a081905262000222906001620003f9565b60a0516200023290600162000471565b69d3c21bcecceda10000006008819055600a9081555f818082816a52b7d2dcc80cd2e40000006103e862000268826001620007fd565b6200027491906200081d565b600955600e879055600f8690556010859055846200029387896200083d565b6200029f91906200083d565b600d5560128490556013839055601482905581620002be84866200083d565b620002ca91906200083d565b601155600680546001600160a01b03191673e9c57d48ff3d5acdd3a32940190dcad57c53460e179055620003066005546001600160a01b031690565b600780546001600160a01b0319166001600160a01b039283161790556005546200033391166001620004c4565b62000340306001620004c4565b6200034f61dead6001620004c4565b6200036e620003666005546001600160a01b031690565b6001620003f9565b6200037b306001620003f9565b6200038a61dead6001620003f9565b6200039633826200056c565b505050505050505062000853565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004475760405162461bcd60e51b815260206004820181905260248201525f80516020620037a083398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200050e5760405162461bcd60e51b815260206004820181905260248201525f80516020620037a083398151915260448201526064016200043e565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005c45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200043e565b8060025f828254620005d791906200083d565b90915550506001600160a01b0382165f9081526020819052604081208054839290620006059084906200083d565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200067c57607f821691505b6020821081036200069b57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200064e575f81815260208120601f850160051c81016020861015620006c95750805b601f850160051c820191505b81811015620006ea57828155600101620006d5565b505050505050565b81516001600160401b038111156200070e576200070e62000653565b62000726816200071f845462000667565b84620006a1565b602080601f8311600181146200075c575f8415620007445750858301515b5f19600386901b1c1916600185901b178555620006ea565b5f85815260208120601f198616915b828110156200078c578886015182559484019460019091019084016200076b565b5085821015620007aa57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215620007cb575f80fd5b81516001600160a01b0381168114620007e2575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620008175762000817620007e9565b92915050565b5f826200083857634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620008175762000817620007e9565b60805160a051612efa620008a65f395f818161057a015281816112b7015261194901525f8181610438015281816128530152818161290a01528181612946015281816129ba01526129e10152612efa5ff3fe608060405260043610610395575f3560e01c80638a8c523c116101de578063c18bc19511610108578063e2f456051161009d578063f8b45b051161006d578063f8b45b0514610a83578063f9f92be414610a06578063fde83a3414610a98578063fe575a8714610aad575f80fd5b8063e2f4560514610a25578063f11a24d314610a3a578063f2fde38b14610a4f578063f637434214610a6e575f80fd5b8063d729715f116100d8578063d729715f14610998578063d85ba063146109ad578063dd62ed3e146109c2578063e19b282314610a06575f80fd5b8063c18bc19514610930578063c8c8ebe41461094f578063cd38890914610964578063d257b34f14610979575f80fd5b8063a457c2d71161017e578063bbc0c7421161014e578063bbc0c742146108b5578063bc205ad3146108d3578063c0246668146108f2578063c17b5b8c14610911575f80fd5b8063a457c2d714610834578063a9059cbb14610853578063a96444ed14610872578063b62496f514610887575f80fd5b806395d89b41116101b957806395d89b41146107cd5780639a7a23d6146107e15780639c2e4ac614610800578063a364b07714610815575f80fd5b80638a8c523c1461077d5780638da5cb5b14610791578063924de9b7146107ae575f80fd5b80634fbee193116102bf57806370a082311161025f57806375e3661e1161022f57806375e3661e146107015780637ca8448a146107205780637cb332bb1461073f5780638095d5641461075e575f80fd5b806370a0823114610686578063715018a6146106ba578063751039fc146106ce5780637571336a146106e2575f80fd5b80635ea92ddd1161029a5780635ea92ddd1461062a5780635f1893611461063e5780636a486a8e146106525780636ddd171314610667575f80fd5b80634fbee193146105b557806359927044146105ec5780635e915db91461060b575f80fd5b806323b872dd116103355780633950935111610305578063395093511461052a5780633dc599ff1461054957806349bd5a5e146105695780634a62bb651461059c575f80fd5b806323b872dd146104c657806327c8f835146104e5578063313ce567146104fa57806334908e5614610515575f80fd5b80631694505e116103705780631694505e1461042757806318160ddd146104725780631a8145bb14610490578063203e727e146104a5575f80fd5b806306fdde03146103a0578063095ea7b3146103ca57806310d5de53146103f9575f80fd5b3661039c57005b5f80fd5b3480156103ab575f80fd5b506103b4610ae4565b6040516103c19190612ab7565b60405180910390f35b3480156103d5575f80fd5b506103e96103e4366004612b16565b610b74565b60405190151581526020016103c1565b348015610404575f80fd5b506103e9610413366004612b40565b60196020525f908152604090205460ff1681565b348015610432575f80fd5b5061045a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103c1565b34801561047d575f80fd5b506002545b6040519081526020016103c1565b34801561049b575f80fd5b5061048260165481565b3480156104b0575f80fd5b506104c46104bf366004612b5b565b610b8a565b005b3480156104d1575f80fd5b506103e96104e0366004612b72565b610c70565b3480156104f0575f80fd5b5061045a61dead81565b348015610505575f80fd5b50604051601281526020016103c1565b348015610520575f80fd5b5061048260125481565b348015610535575f80fd5b506103e9610544366004612b16565b610d18565b348015610554575f80fd5b50600b546103e9906301000000900460ff1681565b348015610574575f80fd5b5061045a7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105a7575f80fd5b50600b546103e99060ff1681565b3480156105c0575f80fd5b506103e96105cf366004612b40565b6001600160a01b03165f9081526018602052604090205460ff1690565b3480156105f7575f80fd5b5060075461045a906001600160a01b031681565b348015610616575f80fd5b506104c4610625366004612b40565b610d53565b348015610635575f80fd5b506104c4610dd9565b348015610649575f80fd5b506104c4610ef8565b34801561065d575f80fd5b5061048260115481565b348015610672575f80fd5b50600b546103e99062010000900460ff1681565b348015610691575f80fd5b506104826106a0366004612b40565b6001600160a01b03165f9081526020819052604090205490565b3480156106c5575f80fd5b506104c4610f37565b3480156106d9575f80fd5b506103e9610f6c565b3480156106ed575f80fd5b506104c46106fc366004612bbd565b610fa8565b34801561070c575f80fd5b506104c461071b366004612b40565b610ffc565b34801561072b575f80fd5b506104c461073a366004612b40565b611046565b34801561074a575f80fd5b506104c4610759366004612b40565b6110cb565b348015610769575f80fd5b506104c4610778366004612bf4565b611151565b348015610788575f80fd5b506104c46111f9565b34801561079c575f80fd5b506005546001600160a01b031661045a565b3480156107b9575f80fd5b506104c46107c8366004612c1d565b611236565b3480156107d8575f80fd5b506103b461127c565b3480156107ec575f80fd5b506104c46107fb366004612bbd565b61128b565b34801561080b575f80fd5b5061048260105481565b348015610820575f80fd5b5060065461045a906001600160a01b031681565b34801561083f575f80fd5b506103e961084e366004612b16565b611366565b34801561085e575f80fd5b506103e961086d366004612b16565b6113fe565b34801561087d575f80fd5b5061048260155481565b348015610892575f80fd5b506103e96108a1366004612b40565b601a6020525f908152604090205460ff1681565b3480156108c0575f80fd5b50600b546103e990610100900460ff1681565b3480156108de575f80fd5b506104c46108ed366004612c38565b61140a565b3480156108fd575f80fd5b506104c461090c366004612bbd565b61156c565b34801561091c575f80fd5b506104c461092b366004612bf4565b6115f4565b34801561093b575f80fd5b506104c461094a366004612b5b565b611697565b34801561095a575f80fd5b5061048260085481565b34801561096f575f80fd5b50610482600e5481565b348015610984575f80fd5b506103e9610993366004612b5b565b611768565b3480156109a3575f80fd5b5061048260145481565b3480156109b8575f80fd5b50610482600d5481565b3480156109cd575f80fd5b506104826109dc366004612c38565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610a11575f80fd5b506104c4610a20366004612b40565b6118b9565b348015610a30575f80fd5b5061048260095481565b348015610a45575f80fd5b50610482600f5481565b348015610a5a575f80fd5b506104c4610a69366004612b40565b611a2c565b348015610a79575f80fd5b5061048260135481565b348015610a8e575f80fd5b50610482600a5481565b348015610aa3575f80fd5b5061048260175481565b348015610ab8575f80fd5b506103e9610ac7366004612b40565b6001600160a01b03165f908152600c602052604090205460ff1690565b606060038054610af390612c64565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1f90612c64565b8015610b6a5780601f10610b4157610100808354040283529160200191610b6a565b820191905f5260205f20905b815481529060010190602001808311610b4d57829003601f168201915b5050505050905090565b5f610b80338484611ac7565b5060015b92915050565b6005546001600160a01b03163314610bbd5760405162461bcd60e51b8152600401610bb490612c9c565b60405180910390fd5b670de0b6b3a76400006103e8610bd260025490565b610bdd906005612ce5565b610be79190612cfc565b610bf19190612cfc565b811015610c585760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610bb4565b610c6a81670de0b6b3a7640000612ce5565b60085550565b5f610c7c848484611bea565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610d005760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bb4565b610d0d8533858403611ac7565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b80918590610d4e908690612d1b565b611ac7565b6005546001600160a01b03163314610d7d5760405162461bcd60e51b8152600401610bb490612c9c565b6006546040516001600160a01b03918216918316907f47ac97cd4ab0b967bcc8705051164721527b38b7f9d0e7cd01cf37a62ed23f63905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e035760405162461bcd60e51b8152600401610bb490612c9c565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610e3e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e629190612d2e565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610ea6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eca9190612d45565b5060405133904780156108fc02915f818181858888f19350505050158015610ef4573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610f225760405162461bcd60e51b8152600401610bb490612c9c565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610f615760405162461bcd60e51b8152600401610bb490612c9c565b610f6a5f612394565b565b6005545f906001600160a01b03163314610f985760405162461bcd60e51b8152600401610bb490612c9c565b50600b805460ff19169055600190565b6005546001600160a01b03163314610fd25760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110265760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6005546001600160a01b031633146110705760405162461bcd60e51b8152600401610bb490612c9c565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f81146110b9576040519150601f19603f3d011682016040523d82523d5f602084013e6110be565b606091505b5050905080610ef4575f80fd5b6005546001600160a01b031633146110f55760405162461bcd60e51b8152600401610bb490612c9c565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461117b5760405162461bcd60e51b8152600401610bb490612c9c565b600e839055600f8290556010819055806111958385612d1b565b61119f9190612d1b565b600d819055601e10156111f45760405162461bcd60e51b815260206004820152601760248201527f4275792066656573206d757374206265203c3d2033302e0000000000000000006044820152606401610bb4565b505050565b6005546001600160a01b031633146112235760405162461bcd60e51b8152600401610bb490612c9c565b600b805462ffff00191662010100179055565b6005546001600160a01b031633146112605760405162461bcd60e51b8152600401610bb490612c9c565b600b8054911515620100000262ff000019909216919091179055565b606060048054610af390612c64565b6005546001600160a01b031633146112b55760405162461bcd60e51b8152600401610bb490612c9c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03160361135c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bb4565b610ef482826123e5565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156113e75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bb4565b6113f43385858403611ac7565b5060019392505050565b5f610b80338484611bea565b6005546001600160a01b031633146114345760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b03821661148a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bb4565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156114ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f29190612d2e565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611542573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115669190612d45565b50505050565b6005546001600160a01b031633146115965760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461161e5760405162461bcd60e51b8152600401610bb490612c9c565b601283905560138290556014819055806116388385612d1b565b6116429190612d1b565b6011819055601e10156111f45760405162461bcd60e51b815260206004820152601860248201527f53656c6c2066656573206d757374206265203c3d2033302e00000000000000006044820152606401610bb4565b6005546001600160a01b031633146116c15760405162461bcd60e51b8152600401610bb490612c9c565b670de0b6b3a76400006103e86116d660025490565b6116e190600a612ce5565b6116eb9190612cfc565b6116f59190612cfc565b8110156117505760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610bb4565b61176281670de0b6b3a7640000612ce5565b600a5550565b6005545f906001600160a01b031633146117945760405162461bcd60e51b8152600401610bb490612c9c565b620186a06117a160025490565b6117ac906001612ce5565b6117b69190612cfc565b8210156118235760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bb4565b6103e861182f60025490565b61183a906005612ce5565b6118449190612cfc565b8211156118b05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bb4565b50600955600190565b6005546001600160a01b031633146118e35760405162461bcd60e51b8152600401610bb490612c9c565b600b546301000000900460ff16156119475760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610bb4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316141580156119a657506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611a095760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610bb4565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611a565760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b038116611abb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb4565b611ac481612394565b50565b6001600160a01b038316611b295760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bb4565b6001600160a01b038216611b8a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bb4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c105760405162461bcd60e51b8152600401610bb490612d60565b6001600160a01b038216611c365760405162461bcd60e51b8152600401610bb490612da5565b6001600160a01b0383165f908152600c602052604090205460ff1615611c935760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610bb4565b6001600160a01b0382165f908152600c602052604090205460ff1615611cf25760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610bb4565b805f03611d04576111f483835f612438565b600b5460ff1615612071576005546001600160a01b03848116911614801590611d3b57506005546001600160a01b03838116911614155b8015611d4f57506001600160a01b03821615155b8015611d6657506001600160a01b03821661dead14155b8015611d7c5750600554600160a01b900460ff16155b1561207157600b54610100900460ff16611e12576001600160a01b0383165f9081526018602052604090205460ff1680611dcd57506001600160a01b0382165f9081526018602052604090205460ff165b611e125760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bb4565b6001600160a01b0383165f908152601a602052604090205460ff168015611e5157506001600160a01b0382165f9081526019602052604090205460ff16155b15611f3457600854811115611ec65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bb4565b600a546001600160a01b0383165f90815260208190526040902054611eeb9083612d1b565b1115611f2f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb4565b612071565b6001600160a01b0382165f908152601a602052604090205460ff168015611f7357506001600160a01b0383165f9081526019602052604090205460ff16155b15611fe957600854811115611f2f5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bb4565b6001600160a01b0382165f9081526019602052604090205460ff1661207157600a546001600160a01b0383165f9081526020819052604090205461202d9083612d1b565b11156120715760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb4565b305f908152602081905260409020546009548110801590819061209c5750600b5462010000900460ff165b80156120b25750600554600160a01b900460ff16155b80156120d657506001600160a01b0385165f908152601a602052604090205460ff16155b80156120fa57506001600160a01b0385165f9081526018602052604090205460ff16155b801561211e57506001600160a01b0384165f9081526018602052604090205460ff16155b1561214c576005805460ff60a01b1916600160a01b17905561213e61258a565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526018602052604090205460ff600160a01b90920482161591168061219857506001600160a01b0385165f9081526018602052604090205460ff165b156121a057505f5b5f8115612380576001600160a01b0386165f908152601a602052604090205460ff1680156121cf57505f601154115b1561228a576121f460646121ee601154886127d690919063ffffffff16565b906127e8565b9050601154601354826122079190612ce5565b6122119190612cfc565b60165f8282546122219190612d1b565b90915550506011546014546122369083612ce5565b6122409190612cfc565b60175f8282546122509190612d1b565b90915550506011546012546122659083612ce5565b61226f9190612cfc565b60155f82825461227f9190612d1b565b909155506123629050565b6001600160a01b0387165f908152601a602052604090205460ff1680156122b257505f600d54115b15612362576122d160646121ee600d54886127d690919063ffffffff16565b9050600d54600f54826122e49190612ce5565b6122ee9190612cfc565b60165f8282546122fe9190612d1b565b9091555050600d546010546123139083612ce5565b61231d9190612cfc565b60175f82825461232d9190612d1b565b9091555050600d54600e546123429083612ce5565b61234c9190612cfc565b60155f82825461235c9190612d1b565b90915550505b801561237357612373873083612438565b61237d8186612de8565b94505b61238b878787612438565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661245e5760405162461bcd60e51b8152600401610bb490612d60565b6001600160a01b0382166124845760405162461bcd60e51b8152600401610bb490612da5565b6001600160a01b0383165f90815260208190526040902054818110156124fb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bb4565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290612531908490612d1b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161257d91815260200190565b60405180910390a3611566565b305f9081526020819052604081205490505f6017546015546016546125af9190612d1b565b6125b99190612d1b565b90505f8215806125c7575081155b156125d157505050565b6009546125df906014612ce5565b8311156125f7576009546125f4906014612ce5565b92505b5f600283601654866126099190612ce5565b6126139190612cfc565b61261d9190612cfc565b90505f61262a85836127f3565b905047612636826127fe565b5f61264147836127f3565b90505f61266e60026016546126569190612cfc565b6126609089612de8565b6015546121ee9085906127d6565b90505f61269b60026016546126839190612cfc565b61268d908a612de8565b6017546121ee9086906127d6565b90505f816126a98486612de8565b6126b39190612de8565b5f6016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d805f811461270d576040519150601f19603f3d011682016040523d82523d5f602084013e612712565b606091505b5090985050861580159061272557505f81115b156127785761273487826129b4565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f81146127c2576040519150601f19603f3d011682016040523d82523d5f602084013e6127c7565b606091505b50505050505050505050505050565b5f6127e18284612ce5565b9392505050565b5f6127e18284612cfc565b5f6127e18284612de8565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061283157612831612dfb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128d19190612e0f565b816001815181106128e4576128e4612dfb565b60200260200101906001600160a01b031690816001600160a01b03168152505061292f307f000000000000000000000000000000000000000000000000000000000000000084611ac7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906129839085905f90869030904290600401612e2a565b5f604051808303815f87803b15801561299a575f80fd5b505af11580156129ac573d5f803e3d5ffd5b505050505050565b6129df307f000000000000000000000000000000000000000000000000000000000000000084611ac7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f80612a256005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612a8b573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612ab09190612e99565b5050505050565b5f6020808352835180828501525f5b81811015612ae257858101830151858201604001528201612ac6565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611ac4575f80fd5b5f8060408385031215612b27575f80fd5b8235612b3281612b02565b946020939093013593505050565b5f60208284031215612b50575f80fd5b81356127e181612b02565b5f60208284031215612b6b575f80fd5b5035919050565b5f805f60608486031215612b84575f80fd5b8335612b8f81612b02565b92506020840135612b9f81612b02565b929592945050506040919091013590565b8015158114611ac4575f80fd5b5f8060408385031215612bce575f80fd5b8235612bd981612b02565b91506020830135612be981612bb0565b809150509250929050565b5f805f60608486031215612c06575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612c2d575f80fd5b81356127e181612bb0565b5f8060408385031215612c49575f80fd5b8235612c5481612b02565b91506020830135612be981612b02565b600181811c90821680612c7857607f821691505b602082108103612c9657634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b8457610b84612cd1565b5f82612d1657634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b8457610b84612cd1565b5f60208284031215612d3e575f80fd5b5051919050565b5f60208284031215612d55575f80fd5b81516127e181612bb0565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b8457610b84612cd1565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612e1f575f80fd5b81516127e181612b02565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612e785784516001600160a01b031683529383019391830191600101612e53565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612eab575f80fd5b835192506020840151915060408401519050925092509256fea264697066735822122048cc8ac7d7c47f2876536b1133f36c9b7f82de7da9fbf825add18b1d1d11e67164736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725375706572656e614c6f74746f204d6567614d696c6c696f6e73204f7a4c6f74746f204c6f74746f4d617820506f77657262616c6c204575726f4d696c6c696f6e73204575726f4a61636b706f74204c6f74746f363439204c6f747465727920546f6b656e

Deployed Bytecode

0x608060405260043610610395575f3560e01c80638a8c523c116101de578063c18bc19511610108578063e2f456051161009d578063f8b45b051161006d578063f8b45b0514610a83578063f9f92be414610a06578063fde83a3414610a98578063fe575a8714610aad575f80fd5b8063e2f4560514610a25578063f11a24d314610a3a578063f2fde38b14610a4f578063f637434214610a6e575f80fd5b8063d729715f116100d8578063d729715f14610998578063d85ba063146109ad578063dd62ed3e146109c2578063e19b282314610a06575f80fd5b8063c18bc19514610930578063c8c8ebe41461094f578063cd38890914610964578063d257b34f14610979575f80fd5b8063a457c2d71161017e578063bbc0c7421161014e578063bbc0c742146108b5578063bc205ad3146108d3578063c0246668146108f2578063c17b5b8c14610911575f80fd5b8063a457c2d714610834578063a9059cbb14610853578063a96444ed14610872578063b62496f514610887575f80fd5b806395d89b41116101b957806395d89b41146107cd5780639a7a23d6146107e15780639c2e4ac614610800578063a364b07714610815575f80fd5b80638a8c523c1461077d5780638da5cb5b14610791578063924de9b7146107ae575f80fd5b80634fbee193116102bf57806370a082311161025f57806375e3661e1161022f57806375e3661e146107015780637ca8448a146107205780637cb332bb1461073f5780638095d5641461075e575f80fd5b806370a0823114610686578063715018a6146106ba578063751039fc146106ce5780637571336a146106e2575f80fd5b80635ea92ddd1161029a5780635ea92ddd1461062a5780635f1893611461063e5780636a486a8e146106525780636ddd171314610667575f80fd5b80634fbee193146105b557806359927044146105ec5780635e915db91461060b575f80fd5b806323b872dd116103355780633950935111610305578063395093511461052a5780633dc599ff1461054957806349bd5a5e146105695780634a62bb651461059c575f80fd5b806323b872dd146104c657806327c8f835146104e5578063313ce567146104fa57806334908e5614610515575f80fd5b80631694505e116103705780631694505e1461042757806318160ddd146104725780631a8145bb14610490578063203e727e146104a5575f80fd5b806306fdde03146103a0578063095ea7b3146103ca57806310d5de53146103f9575f80fd5b3661039c57005b5f80fd5b3480156103ab575f80fd5b506103b4610ae4565b6040516103c19190612ab7565b60405180910390f35b3480156103d5575f80fd5b506103e96103e4366004612b16565b610b74565b60405190151581526020016103c1565b348015610404575f80fd5b506103e9610413366004612b40565b60196020525f908152604090205460ff1681565b348015610432575f80fd5b5061045a7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103c1565b34801561047d575f80fd5b506002545b6040519081526020016103c1565b34801561049b575f80fd5b5061048260165481565b3480156104b0575f80fd5b506104c46104bf366004612b5b565b610b8a565b005b3480156104d1575f80fd5b506103e96104e0366004612b72565b610c70565b3480156104f0575f80fd5b5061045a61dead81565b348015610505575f80fd5b50604051601281526020016103c1565b348015610520575f80fd5b5061048260125481565b348015610535575f80fd5b506103e9610544366004612b16565b610d18565b348015610554575f80fd5b50600b546103e9906301000000900460ff1681565b348015610574575f80fd5b5061045a7f0000000000000000000000006d575dffc1a704cadcb0cf137c05ec851597ecf381565b3480156105a7575f80fd5b50600b546103e99060ff1681565b3480156105c0575f80fd5b506103e96105cf366004612b40565b6001600160a01b03165f9081526018602052604090205460ff1690565b3480156105f7575f80fd5b5060075461045a906001600160a01b031681565b348015610616575f80fd5b506104c4610625366004612b40565b610d53565b348015610635575f80fd5b506104c4610dd9565b348015610649575f80fd5b506104c4610ef8565b34801561065d575f80fd5b5061048260115481565b348015610672575f80fd5b50600b546103e99062010000900460ff1681565b348015610691575f80fd5b506104826106a0366004612b40565b6001600160a01b03165f9081526020819052604090205490565b3480156106c5575f80fd5b506104c4610f37565b3480156106d9575f80fd5b506103e9610f6c565b3480156106ed575f80fd5b506104c46106fc366004612bbd565b610fa8565b34801561070c575f80fd5b506104c461071b366004612b40565b610ffc565b34801561072b575f80fd5b506104c461073a366004612b40565b611046565b34801561074a575f80fd5b506104c4610759366004612b40565b6110cb565b348015610769575f80fd5b506104c4610778366004612bf4565b611151565b348015610788575f80fd5b506104c46111f9565b34801561079c575f80fd5b506005546001600160a01b031661045a565b3480156107b9575f80fd5b506104c46107c8366004612c1d565b611236565b3480156107d8575f80fd5b506103b461127c565b3480156107ec575f80fd5b506104c46107fb366004612bbd565b61128b565b34801561080b575f80fd5b5061048260105481565b348015610820575f80fd5b5060065461045a906001600160a01b031681565b34801561083f575f80fd5b506103e961084e366004612b16565b611366565b34801561085e575f80fd5b506103e961086d366004612b16565b6113fe565b34801561087d575f80fd5b5061048260155481565b348015610892575f80fd5b506103e96108a1366004612b40565b601a6020525f908152604090205460ff1681565b3480156108c0575f80fd5b50600b546103e990610100900460ff1681565b3480156108de575f80fd5b506104c46108ed366004612c38565b61140a565b3480156108fd575f80fd5b506104c461090c366004612bbd565b61156c565b34801561091c575f80fd5b506104c461092b366004612bf4565b6115f4565b34801561093b575f80fd5b506104c461094a366004612b5b565b611697565b34801561095a575f80fd5b5061048260085481565b34801561096f575f80fd5b50610482600e5481565b348015610984575f80fd5b506103e9610993366004612b5b565b611768565b3480156109a3575f80fd5b5061048260145481565b3480156109b8575f80fd5b50610482600d5481565b3480156109cd575f80fd5b506104826109dc366004612c38565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610a11575f80fd5b506104c4610a20366004612b40565b6118b9565b348015610a30575f80fd5b5061048260095481565b348015610a45575f80fd5b50610482600f5481565b348015610a5a575f80fd5b506104c4610a69366004612b40565b611a2c565b348015610a79575f80fd5b5061048260135481565b348015610a8e575f80fd5b50610482600a5481565b348015610aa3575f80fd5b5061048260175481565b348015610ab8575f80fd5b506103e9610ac7366004612b40565b6001600160a01b03165f908152600c602052604090205460ff1690565b606060038054610af390612c64565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1f90612c64565b8015610b6a5780601f10610b4157610100808354040283529160200191610b6a565b820191905f5260205f20905b815481529060010190602001808311610b4d57829003601f168201915b5050505050905090565b5f610b80338484611ac7565b5060015b92915050565b6005546001600160a01b03163314610bbd5760405162461bcd60e51b8152600401610bb490612c9c565b60405180910390fd5b670de0b6b3a76400006103e8610bd260025490565b610bdd906005612ce5565b610be79190612cfc565b610bf19190612cfc565b811015610c585760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610bb4565b610c6a81670de0b6b3a7640000612ce5565b60085550565b5f610c7c848484611bea565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610d005760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bb4565b610d0d8533858403611ac7565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b80918590610d4e908690612d1b565b611ac7565b6005546001600160a01b03163314610d7d5760405162461bcd60e51b8152600401610bb490612c9c565b6006546040516001600160a01b03918216918316907f47ac97cd4ab0b967bcc8705051164721527b38b7f9d0e7cd01cf37a62ed23f63905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e035760405162461bcd60e51b8152600401610bb490612c9c565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610e3e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e629190612d2e565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610ea6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eca9190612d45565b5060405133904780156108fc02915f818181858888f19350505050158015610ef4573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610f225760405162461bcd60e51b8152600401610bb490612c9c565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610f615760405162461bcd60e51b8152600401610bb490612c9c565b610f6a5f612394565b565b6005545f906001600160a01b03163314610f985760405162461bcd60e51b8152600401610bb490612c9c565b50600b805460ff19169055600190565b6005546001600160a01b03163314610fd25760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110265760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6005546001600160a01b031633146110705760405162461bcd60e51b8152600401610bb490612c9c565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f81146110b9576040519150601f19603f3d011682016040523d82523d5f602084013e6110be565b606091505b5050905080610ef4575f80fd5b6005546001600160a01b031633146110f55760405162461bcd60e51b8152600401610bb490612c9c565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461117b5760405162461bcd60e51b8152600401610bb490612c9c565b600e839055600f8290556010819055806111958385612d1b565b61119f9190612d1b565b600d819055601e10156111f45760405162461bcd60e51b815260206004820152601760248201527f4275792066656573206d757374206265203c3d2033302e0000000000000000006044820152606401610bb4565b505050565b6005546001600160a01b031633146112235760405162461bcd60e51b8152600401610bb490612c9c565b600b805462ffff00191662010100179055565b6005546001600160a01b031633146112605760405162461bcd60e51b8152600401610bb490612c9c565b600b8054911515620100000262ff000019909216919091179055565b606060048054610af390612c64565b6005546001600160a01b031633146112b55760405162461bcd60e51b8152600401610bb490612c9c565b7f0000000000000000000000006d575dffc1a704cadcb0cf137c05ec851597ecf36001600160a01b0316826001600160a01b03160361135c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bb4565b610ef482826123e5565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156113e75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bb4565b6113f43385858403611ac7565b5060019392505050565b5f610b80338484611bea565b6005546001600160a01b031633146114345760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b03821661148a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bb4565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156114ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f29190612d2e565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611542573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115669190612d45565b50505050565b6005546001600160a01b031633146115965760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461161e5760405162461bcd60e51b8152600401610bb490612c9c565b601283905560138290556014819055806116388385612d1b565b6116429190612d1b565b6011819055601e10156111f45760405162461bcd60e51b815260206004820152601860248201527f53656c6c2066656573206d757374206265203c3d2033302e00000000000000006044820152606401610bb4565b6005546001600160a01b031633146116c15760405162461bcd60e51b8152600401610bb490612c9c565b670de0b6b3a76400006103e86116d660025490565b6116e190600a612ce5565b6116eb9190612cfc565b6116f59190612cfc565b8110156117505760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610bb4565b61176281670de0b6b3a7640000612ce5565b600a5550565b6005545f906001600160a01b031633146117945760405162461bcd60e51b8152600401610bb490612c9c565b620186a06117a160025490565b6117ac906001612ce5565b6117b69190612cfc565b8210156118235760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bb4565b6103e861182f60025490565b61183a906005612ce5565b6118449190612cfc565b8211156118b05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bb4565b50600955600190565b6005546001600160a01b031633146118e35760405162461bcd60e51b8152600401610bb490612c9c565b600b546301000000900460ff16156119475760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610bb4565b7f0000000000000000000000006d575dffc1a704cadcb0cf137c05ec851597ecf36001600160a01b0316816001600160a01b0316141580156119a657506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611a095760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610bb4565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611a565760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b038116611abb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb4565b611ac481612394565b50565b6001600160a01b038316611b295760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bb4565b6001600160a01b038216611b8a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bb4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c105760405162461bcd60e51b8152600401610bb490612d60565b6001600160a01b038216611c365760405162461bcd60e51b8152600401610bb490612da5565b6001600160a01b0383165f908152600c602052604090205460ff1615611c935760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610bb4565b6001600160a01b0382165f908152600c602052604090205460ff1615611cf25760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610bb4565b805f03611d04576111f483835f612438565b600b5460ff1615612071576005546001600160a01b03848116911614801590611d3b57506005546001600160a01b03838116911614155b8015611d4f57506001600160a01b03821615155b8015611d6657506001600160a01b03821661dead14155b8015611d7c5750600554600160a01b900460ff16155b1561207157600b54610100900460ff16611e12576001600160a01b0383165f9081526018602052604090205460ff1680611dcd57506001600160a01b0382165f9081526018602052604090205460ff165b611e125760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bb4565b6001600160a01b0383165f908152601a602052604090205460ff168015611e5157506001600160a01b0382165f9081526019602052604090205460ff16155b15611f3457600854811115611ec65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bb4565b600a546001600160a01b0383165f90815260208190526040902054611eeb9083612d1b565b1115611f2f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb4565b612071565b6001600160a01b0382165f908152601a602052604090205460ff168015611f7357506001600160a01b0383165f9081526019602052604090205460ff16155b15611fe957600854811115611f2f5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bb4565b6001600160a01b0382165f9081526019602052604090205460ff1661207157600a546001600160a01b0383165f9081526020819052604090205461202d9083612d1b565b11156120715760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb4565b305f908152602081905260409020546009548110801590819061209c5750600b5462010000900460ff165b80156120b25750600554600160a01b900460ff16155b80156120d657506001600160a01b0385165f908152601a602052604090205460ff16155b80156120fa57506001600160a01b0385165f9081526018602052604090205460ff16155b801561211e57506001600160a01b0384165f9081526018602052604090205460ff16155b1561214c576005805460ff60a01b1916600160a01b17905561213e61258a565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526018602052604090205460ff600160a01b90920482161591168061219857506001600160a01b0385165f9081526018602052604090205460ff165b156121a057505f5b5f8115612380576001600160a01b0386165f908152601a602052604090205460ff1680156121cf57505f601154115b1561228a576121f460646121ee601154886127d690919063ffffffff16565b906127e8565b9050601154601354826122079190612ce5565b6122119190612cfc565b60165f8282546122219190612d1b565b90915550506011546014546122369083612ce5565b6122409190612cfc565b60175f8282546122509190612d1b565b90915550506011546012546122659083612ce5565b61226f9190612cfc565b60155f82825461227f9190612d1b565b909155506123629050565b6001600160a01b0387165f908152601a602052604090205460ff1680156122b257505f600d54115b15612362576122d160646121ee600d54886127d690919063ffffffff16565b9050600d54600f54826122e49190612ce5565b6122ee9190612cfc565b60165f8282546122fe9190612d1b565b9091555050600d546010546123139083612ce5565b61231d9190612cfc565b60175f82825461232d9190612d1b565b9091555050600d54600e546123429083612ce5565b61234c9190612cfc565b60155f82825461235c9190612d1b565b90915550505b801561237357612373873083612438565b61237d8186612de8565b94505b61238b878787612438565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661245e5760405162461bcd60e51b8152600401610bb490612d60565b6001600160a01b0382166124845760405162461bcd60e51b8152600401610bb490612da5565b6001600160a01b0383165f90815260208190526040902054818110156124fb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bb4565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290612531908490612d1b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161257d91815260200190565b60405180910390a3611566565b305f9081526020819052604081205490505f6017546015546016546125af9190612d1b565b6125b99190612d1b565b90505f8215806125c7575081155b156125d157505050565b6009546125df906014612ce5565b8311156125f7576009546125f4906014612ce5565b92505b5f600283601654866126099190612ce5565b6126139190612cfc565b61261d9190612cfc565b90505f61262a85836127f3565b905047612636826127fe565b5f61264147836127f3565b90505f61266e60026016546126569190612cfc565b6126609089612de8565b6015546121ee9085906127d6565b90505f61269b60026016546126839190612cfc565b61268d908a612de8565b6017546121ee9086906127d6565b90505f816126a98486612de8565b6126b39190612de8565b5f6016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d805f811461270d576040519150601f19603f3d011682016040523d82523d5f602084013e612712565b606091505b5090985050861580159061272557505f81115b156127785761273487826129b4565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f81146127c2576040519150601f19603f3d011682016040523d82523d5f602084013e6127c7565b606091505b50505050505050505050505050565b5f6127e18284612ce5565b9392505050565b5f6127e18284612cfc565b5f6127e18284612de8565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061283157612831612dfb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128d19190612e0f565b816001815181106128e4576128e4612dfb565b60200260200101906001600160a01b031690816001600160a01b03168152505061292f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ac7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906129839085905f90869030904290600401612e2a565b5f604051808303815f87803b15801561299a575f80fd5b505af11580156129ac573d5f803e3d5ffd5b505050505050565b6129df307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ac7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f80612a256005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612a8b573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612ab09190612e99565b5050505050565b5f6020808352835180828501525f5b81811015612ae257858101830151858201604001528201612ac6565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611ac4575f80fd5b5f8060408385031215612b27575f80fd5b8235612b3281612b02565b946020939093013593505050565b5f60208284031215612b50575f80fd5b81356127e181612b02565b5f60208284031215612b6b575f80fd5b5035919050565b5f805f60608486031215612b84575f80fd5b8335612b8f81612b02565b92506020840135612b9f81612b02565b929592945050506040919091013590565b8015158114611ac4575f80fd5b5f8060408385031215612bce575f80fd5b8235612bd981612b02565b91506020830135612be981612bb0565b809150509250929050565b5f805f60608486031215612c06575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612c2d575f80fd5b81356127e181612bb0565b5f8060408385031215612c49575f80fd5b8235612c5481612b02565b91506020830135612be981612b02565b600181811c90821680612c7857607f821691505b602082108103612c9657634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b8457610b84612cd1565b5f82612d1657634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b8457610b84612cd1565b5f60208284031215612d3e575f80fd5b5051919050565b5f60208284031215612d55575f80fd5b81516127e181612bb0565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b8457610b84612cd1565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612e1f575f80fd5b81516127e181612b02565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612e785784516001600160a01b031683529383019391830191600101612e53565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612eab575f80fd5b835192506020840151915060408401519050925092509256fea264697066735822122048cc8ac7d7c47f2876536b1133f36c9b7f82de7da9fbf825add18b1d1d11e67164736f6c63430008140033

Deployed Bytecode Sourcemap

31303:17600:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9262:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11429:169;;;;;;;;;;-1:-1:-1;11429:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11429:169:0;1023:187:1;32563:63:0;;;;;;;;;;-1:-1:-1;32563:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31380:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;31380:51:0;1467:230:1;10382:108:0;;;;;;;;;;-1:-1:-1;10470:12:0;;10382:108;;;1848:25:1;;;1836:2;1821:18;10382:108:0;1702:177:1;32346:33:0;;;;;;;;;;;;;;;;36864:275;;;;;;;;;;-1:-1:-1;36864:275:0;;;;;:::i;:::-;;:::i;:::-;;12080:492;;;;;;;;;;-1:-1:-1;12080:492:0;;;;;:::i;:::-;;:::i;31483:53::-;;;;;;;;;;;;31529:6;31483:53;;10224:93;;;;;;;;;;-1:-1:-1;10224:93:0;;10307:2;2880:36:1;;2868:2;2853:18;10224:93:0;2738:184:1;32199:29:0;;;;;;;;;;;;;;;;12981:215;;;;;;;;;;-1:-1:-1;12981:215:0;;;;;:::i;:::-;;:::i;31877:38::-;;;;;;;;;;-1:-1:-1;31877:38:0;;;;;;;;;;;31438;;;;;;;;;;;;;;;31759:33;;;;;;;;;;-1:-1:-1;31759:33:0;;;;;;;;39664:126;;;;;;;;;;-1:-1:-1;39664:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;39754:28:0;39730:4;39754:28;;;:19;:28;;;;;;;;;39664:126;31610:25;;;;;;;;;;-1:-1:-1;31610:25:0;;;;-1:-1:-1;;;;;31610:25:0;;;39293:194;;;;;;;;;;-1:-1:-1;39293:194:0;;;;;:::i;:::-;;:::i;46880:257::-;;;;;;;;;;;;;:::i;47691:90::-;;;;;;;;;;;;;:::i;32164:28::-;;;;;;;;;;;;;;;;31838:30;;;;;;;;;;-1:-1:-1;31838:30:0;;;;;;;;;;;10553:127;;;;;;;;;;-1:-1:-1;10553:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10654:18:0;10627:7;10654:18;;;;;;;;;;;;10553:127;2779:103;;;;;;;;;;;;;:::i;36168:121::-;;;;;;;;;;;;;:::i;37412:167::-;;;;;;;;;;-1:-1:-1;37412:167:0;;;;;:::i;:::-;;:::i;48802:98::-;;;;;;;;;;-1:-1:-1;48802:98:0;;;;;:::i;:::-;;:::i;47441:196::-;;;;;;;;;;-1:-1:-1;47441:196:0;;;;;:::i;:::-;;:::i;39495:161::-;;;;;;;;;;-1:-1:-1;39495:161:0;;;;;:::i;:::-;;:::i;37783:393::-;;;;;;;;;;-1:-1:-1;37783:393:0;;;;;:::i;:::-;;:::i;35996:120::-;;;;;;;;;;;;;:::i;2128:87::-;;;;;;;;;;-1:-1:-1;2201:6:0;;-1:-1:-1;;;;;2201:6:0;2128:87;;37675:100;;;;;;;;;;-1:-1:-1;37675:100:0;;;;;:::i;:::-;;:::i;9481:104::-;;;;;;;;;;;;;:::i;38785:304::-;;;;;;;;;;-1:-1:-1;38785:304:0;;;;;:::i;:::-;;:::i;32130:25::-;;;;;;;;;;;;;;;;31575:28;;;;;;;;;;-1:-1:-1;31575:28:0;;;;-1:-1:-1;;;;;31575:28:0;;;13699:413;;;;;;;;;;-1:-1:-1;13699:413:0;;;;;:::i;:::-;;:::i;10893:175::-;;;;;;;;;;-1:-1:-1;10893:175:0;;;;;:::i;:::-;;:::i;32308:31::-;;;;;;;;;;;;;;;;32784:57;;;;;;;;;;-1:-1:-1;32784:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31799:32;;;;;;;;;;-1:-1:-1;31799:32:0;;;;;;;;;;;47145:288;;;;;;;;;;-1:-1:-1;47145:288:0;;;;;:::i;:::-;;:::i;38595:182::-;;;;;;;;;;-1:-1:-1;38595:182:0;;;;;:::i;:::-;;:::i;38184:403::-;;;;;;;;;;-1:-1:-1;38184:403:0;;;;;:::i;:::-;;:::i;37147:257::-;;;;;;;;;;-1:-1:-1;37147:257:0;;;;;:::i;:::-;;:::i;31644:35::-;;;;;;;;;;;;;;;;32058:28;;;;;;;;;;;;;;;;36359:497;;;;;;;;;;-1:-1:-1;36359:497:0;;;;;:::i;:::-;;:::i;32273:26::-;;;;;;;;;;;;;;;;32024:27;;;;;;;;;;;;;;;;11131:151;;;;;;;;;;-1:-1:-1;11131:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11247:18:0;;;11220:7;11247:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11131:151;48266:403;;;;;;;;;;-1:-1:-1;48266:403:0;;;;;:::i;:::-;;:::i;31686:33::-;;;;;;;;;;;;;;;;32093:30;;;;;;;;;;;;;;;;3037:201;;;;;;;;;;-1:-1:-1;3037:201:0;;;;;:::i;:::-;;:::i;32235:31::-;;;;;;;;;;;;;;;;31726:24;;;;;;;;;;;;;;;;32386:28;;;;;;;;;;;;;;;;39798:113;;;;;;;;;;-1:-1:-1;39798:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;39883:20:0;39859:4;39883:20;;;:11;:20;;;;;;;;;39798:113;9262:100;9316:13;9349:5;9342:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9262:100;:::o;11429:169::-;11512:4;11529:39;1075:10;11552:7;11561:6;11529:8;:39::i;:::-;-1:-1:-1;11586:4:0;11429:169;;;;;:::o;36864:275::-;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;;;;;;;;;37001:4:::1;36993;36972:13;10470:12:::0;;;10382:108;36972:13:::1;:17;::::0;36988:1:::1;36972:17;:::i;:::-;36971:26;;;;:::i;:::-;36970:35;;;;:::i;:::-;36960:6;:45;;36938:142;;;::::0;-1:-1:-1;;;36938:142:0;;5872:2:1;36938:142:0::1;::::0;::::1;5854:21:1::0;5911:2;5891:18;;;5884:30;5950:34;5930:18;;;5923:62;-1:-1:-1;;;6001:18:1;;;5994:45;6056:19;;36938:142:0::1;5670:411:1::0;36938:142:0::1;37114:17;:6:::0;37124::::1;37114:17;:::i;:::-;37091:20;:40:::0;-1:-1:-1;36864:275:0:o;12080:492::-;12220:4;12237:36;12247:6;12255:9;12266:6;12237:9;:36::i;:::-;-1:-1:-1;;;;;12313:19:0;;12286:24;12313:19;;;:11;:19;;;;;;;;1075:10;12313:33;;;;;;;;12365:26;;;;12357:79;;;;-1:-1:-1;;;12357:79:0;;6288:2:1;12357:79:0;;;6270:21:1;6327:2;6307:18;;;6300:30;6366:34;6346:18;;;6339:62;-1:-1:-1;;;6417:18:1;;;6410:38;6465:19;;12357:79:0;6086:404:1;12357:79:0;12472:57;12481:6;1075:10;12522:6;12503:16;:25;12472:8;:57::i;:::-;-1:-1:-1;12560:4:0;;12080:492;-1:-1:-1;;;;12080:492:0:o;12981:215::-;1075:10;13069:4;13118:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13118:34:0;;;;;;;;;;13069:4;;13086:80;;13109:7;;13118:47;;13155:10;;13118:47;:::i;:::-;13086:8;:80::i;39293:194::-;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;39422:13:::1;::::0;39383:53:::1;::::0;-1:-1:-1;;;;;39422:13:0;;::::1;::::0;39383:53;::::1;::::0;::::1;::::0;39422:13:::1;::::0;39383:53:::1;39447:13;:32:::0;;-1:-1:-1;;;;;;39447:32:0::1;-1:-1:-1::0;;;;;39447:32:0;;;::::1;::::0;;;::::1;::::0;;39293:194::o;46880:257::-;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;46959:46:::1;::::0;-1:-1:-1;;;46959:46:0;;46974:4:::1;46959:46;::::0;::::1;1640:51:1::0;;;46941:15:0::1;::::0;46959:31:::1;::::0;1613:18:1;;46959:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47016:51;::::0;-1:-1:-1;;;47016:51:0;;47047:10:::1;47016:51;::::0;::::1;6988::1::0;7055:18;;;7048:34;;;46941:64:0;;-1:-1:-1;47031:4:0::1;::::0;47016:30:::1;::::0;6961:18:1;;47016:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;47078:51:0::1;::::0;47086:10:::1;::::0;47107:21:::1;47078:51:::0;::::1;;;::::0;::::1;::::0;;;47107:21;47086:10;47078:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;46930:207;46880:257::o:0;47691:90::-;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;47748:18:::1;:25:::0;;-1:-1:-1;;47748:25:0::1;::::0;::::1;::::0;;47691:90::o;2779:103::-;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;2844:30:::1;2871:1;2844:18;:30::i;:::-;2779:103::o:0;36168:121::-;2201:6;;36220:4;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;-1:-1:-1;36237:14:0::1;:22:::0;;-1:-1:-1;;36237:22:0::1;::::0;;;36168:121;:::o;37412:167::-;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37525:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37525:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37412:167::o;48802:98::-;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48866:18:0::1;48887:5;48866:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;48866:26:0::1;::::0;;48802:98::o;47441:196::-;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;47514:12:::1;47532:6;-1:-1:-1::0;;;;;47532:11:0::1;47565:21;47532:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47513:89;;;47621:7;47613:16;;;::::0;::::1;39495:161:::0;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;39604:10:::1;::::0;39575:40:::1;::::0;-1:-1:-1;;;;;39604:10:0;;::::1;::::0;39575:40;::::1;::::0;::::1;::::0;39604:10:::1;::::0;39575:40:::1;39626:10;:22:::0;;-1:-1:-1;;;;;;39626:22:0::1;-1:-1:-1::0;;;;;39626:22:0;;;::::1;::::0;;;::::1;::::0;;39495:161::o;37783:393::-;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;37932:13:::1;:27:::0;;;37970:15:::1;:31:::0;;;38012:10:::1;:21:::0;;;38025:8;38059:31:::1;37988:13:::0;37948:11;38059:31:::1;:::i;:::-;:44;;;;:::i;:::-;38044:12;:59:::0;;;38138:2:::1;-1:-1:-1::0;38122:18:0::1;38114:54;;;::::0;-1:-1:-1;;;38114:54:0;;7755:2:1;38114:54:0::1;::::0;::::1;7737:21:1::0;7794:2;7774:18;;;7767:30;7833:25;7813:18;;;7806:53;7876:18;;38114:54:0::1;7553:347:1::0;38114:54:0::1;37783:393:::0;;;:::o;35996:120::-;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;36051:13:::1;:20:::0;;-1:-1:-1;;36082:18:0;;;;;35996:120::o;37675:100::-;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;37746:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37746:21:0;;::::1;::::0;;;::::1;::::0;;37675:100::o;9481:104::-;9537:13;9570:7;9563:14;;;;;:::i;38785:304::-;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;38929:13:::1;-1:-1:-1::0;;;;;38921:21:0::1;:4;-1:-1:-1::0;;;;;38921:21:0::1;::::0;38899:128:::1;;;::::0;-1:-1:-1;;;38899:128:0;;8107:2:1;38899:128:0::1;::::0;::::1;8089:21:1::0;8146:2;8126:18;;;8119:30;8185:34;8165:18;;;8158:62;8256:27;8236:18;;;8229:55;8301:19;;38899:128:0::1;7905:421:1::0;38899:128:0::1;39040:41;39069:4;39075:5;39040:28;:41::i;13699:413::-:0;1075:10;13792:4;13836:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13836:34:0;;;;;;;;;;13889:35;;;;13881:85;;;;-1:-1:-1;;;13881:85:0;;8533:2:1;13881:85:0;;;8515:21:1;8572:2;8552:18;;;8545:30;8611:34;8591:18;;;8584:62;-1:-1:-1;;;8662:18:1;;;8655:35;8707:19;;13881:85:0;8331:401:1;13881:85:0;14002:67;1075:10;14025:7;14053:15;14034:16;:34;14002:8;:67::i;:::-;-1:-1:-1;14100:4:0;;13699:413;-1:-1:-1;;;13699:413:0:o;10893:175::-;10979:4;10996:42;1075:10;11020:9;11031:6;10996:9;:42::i;47145:288::-;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47240:20:0;::::1;47232:59;;;::::0;-1:-1:-1;;;47232:59:0;;8939:2:1;47232:59:0::1;::::0;::::1;8921:21:1::0;8978:2;8958:18;;;8951:30;9017:28;8997:18;;;8990:56;9063:18;;47232:59:0::1;8737:350:1::0;47232:59:0::1;47329:39;::::0;-1:-1:-1;;;47329:39:0;;47362:4:::1;47329:39;::::0;::::1;1640:51:1::0;47302:24:0::1;::::0;-1:-1:-1;;;;;47329:24:0;::::1;::::0;::::1;::::0;1613:18:1;;47329:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47379:46;::::0;-1:-1:-1;;;47379:46:0;;-1:-1:-1;;;;;7006:32:1;;;47379:46:0::1;::::0;::::1;6988:51:1::0;7055:18;;;7048:34;;;47302:66:0;;-1:-1:-1;47379:23:0;;::::1;::::0;::::1;::::0;6961:18:1;;47379:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47221:212;47145:288:::0;;:::o;38595:182::-;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38680:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38680:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38735:34;;1163:41:1;;;38735:34:0::1;::::0;1136:18:1;38735:34:0::1;;;;;;;38595:182:::0;;:::o;38184:403::-;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;38334:14:::1;:28:::0;;;38373:16:::1;:32:::0;;;38416:11:::1;:22:::0;;;38430:8;38465:33:::1;38392:13:::0;38351:11;38465:33:::1;:::i;:::-;:47;;;;:::i;:::-;38449:13;:63:::0;;;38548:2:::1;-1:-1:-1::0;38531:19:0::1;38523:56;;;::::0;-1:-1:-1;;;38523:56:0;;9294:2:1;38523:56:0::1;::::0;::::1;9276:21:1::0;9333:2;9313:18;;;9306:30;9372:26;9352:18;;;9345:54;9416:18;;38523:56:0::1;9092:348:1::0;37147:257:0;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;37288:4:::1;37280;37258:13;10470:12:::0;;;10382:108;37258:13:::1;:18;::::0;37274:2:::1;37258:18;:::i;:::-;37257:27;;;;:::i;:::-;37256:36;;;;:::i;:::-;37246:6;:46;;37224:132;;;::::0;-1:-1:-1;;;37224:132:0;;9647:2:1;37224:132:0::1;::::0;::::1;9629:21:1::0;9686:2;9666:18;;;9659:30;9725:34;9705:18;;;9698:62;-1:-1:-1;;;9776:18:1;;;9769:34;9820:19;;37224:132:0::1;9445:400:1::0;37224:132:0::1;37379:17;:6:::0;37389::::1;37379:17;:::i;:::-;37367:9;:29:::0;-1:-1:-1;37147:257:0:o;36359:497::-;2201:6;;36467:4;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;36546:6:::1;36525:13;10470:12:::0;;;10382:108;36525:13:::1;:17;::::0;36541:1:::1;36525:17;:::i;:::-;36524:28;;;;:::i;:::-;36511:9;:41;;36489:144;;;::::0;-1:-1:-1;;;36489:144:0;;10052:2:1;36489:144:0::1;::::0;::::1;10034:21:1::0;10091:2;10071:18;;;10064:30;10130:34;10110:18;;;10103:62;-1:-1:-1;;;10181:18:1;;;10174:51;10242:19;;36489:144:0::1;9850:417:1::0;36489:144:0::1;36701:4;36680:13;10470:12:::0;;;10382:108;36680:13:::1;:17;::::0;36696:1:::1;36680:17;:::i;:::-;36679:26;;;;:::i;:::-;36666:9;:39;;36644:141;;;::::0;-1:-1:-1;;;36644:141:0;;10474:2:1;36644:141:0::1;::::0;::::1;10456:21:1::0;10513:2;10493:18;;;10486:30;10552:34;10532:18;;;10525:62;-1:-1:-1;;;10603:18:1;;;10596:50;10663:19;;36644:141:0::1;10272:416:1::0;36644:141:0::1;-1:-1:-1::0;36796:18:0::1;:30:::0;36844:4:::1;::::0;36359:497::o;48266:403::-;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;48354:18:::1;::::0;;;::::1;;;48353:19;48345:65;;;::::0;-1:-1:-1;;;48345:65:0;;10895:2:1;48345:65:0::1;::::0;::::1;10877:21:1::0;10934:2;10914:18;;;10907:30;10973:34;10953:18;;;10946:62;-1:-1:-1;;;11024:18:1;;;11017:31;11065:19;;48345:65:0::1;10693:397:1::0;48345:65:0::1;48464:13;-1:-1:-1::0;;;;;48443:35:0::1;:9;-1:-1:-1::0;;;;;48443:35:0::1;;;:103;;;;-1:-1:-1::0;;;;;;48482:64:0;::::1;48503:42;48482:64;;48443:103;48421:200;;;::::0;-1:-1:-1;;;48421:200:0;;11297:2:1;48421:200:0::1;::::0;::::1;11279:21:1::0;11336:2;11316:18;;;11309:30;11375:34;11355:18;;;11348:62;-1:-1:-1;;;11426:18:1;;;11419:44;11480:19;;48421:200:0::1;11095:410:1::0;48421:200:0::1;-1:-1:-1::0;;;;;48632:22:0::1;;::::0;;;:11:::1;:22;::::0;;;;:29;;-1:-1:-1;;48632:29:0::1;48657:4;48632:29;::::0;;48266:403::o;3037:201::-;2201:6;;-1:-1:-1;;;;;2201:6:0;1075:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3126:22:0;::::1;3118:73;;;::::0;-1:-1:-1;;;3118:73:0;;11712:2:1;3118:73:0::1;::::0;::::1;11694:21:1::0;11751:2;11731:18;;;11724:30;11790:34;11770:18;;;11763:62;-1:-1:-1;;;11841:18:1;;;11834:36;11887:19;;3118:73:0::1;11510:402:1::0;3118:73:0::1;3202:28;3221:8;3202:18;:28::i;:::-;3037:201:::0;:::o;17383:380::-;-1:-1:-1;;;;;17519:19:0;;17511:68;;;;-1:-1:-1;;;17511:68:0;;12119:2:1;17511:68:0;;;12101:21:1;12158:2;12138:18;;;12131:30;12197:34;12177:18;;;12170:62;-1:-1:-1;;;12248:18:1;;;12241:34;12292:19;;17511:68:0;11917:400:1;17511:68:0;-1:-1:-1;;;;;17598:21:0;;17590:68;;;;-1:-1:-1;;;17590:68:0;;12524:2:1;17590:68:0;;;12506:21:1;12563:2;12543:18;;;12536:30;12602:34;12582:18;;;12575:62;-1:-1:-1;;;12653:18:1;;;12646:32;12695:19;;17590:68:0;12322:398:1;17590:68:0;-1:-1:-1;;;;;17671:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17723:32;;1848:25:1;;;17723:32:0;;1821:18:1;17723:32:0;;;;;;;17383:380;;;:::o;39919:4060::-;-1:-1:-1;;;;;40051:18:0;;40043:68;;;;-1:-1:-1;;;40043:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40130:16:0;;40122:64;;;;-1:-1:-1;;;40122:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40206:17:0;;;;;;:11;:17;;;;;;;;40205:18;40197:48;;;;-1:-1:-1;;;40197:48:0;;13737:2:1;40197:48:0;;;13719:21:1;13776:2;13756:18;;;13749:30;-1:-1:-1;;;13795:18:1;;;13788:48;13853:18;;40197:48:0;13535:342:1;40197:48:0;-1:-1:-1;;;;;40265:15:0;;;;;;:11;:15;;;;;;;;40264:16;40256:48;;;;-1:-1:-1;;;40256:48:0;;14084:2:1;40256:48:0;;;14066:21:1;14123:2;14103:18;;;14096:30;-1:-1:-1;;;14142:18:1;;;14135:50;14202:18;;40256:48:0;13882:344:1;40256:48:0;40343:6;40353:1;40343:11;40339:93;;40371:28;40387:4;40393:2;40397:1;40371:15;:28::i;40339:93::-;40448:14;;;;40444:1694;;;2201:6;;-1:-1:-1;;;;;40501:15:0;;;2201:6;;40501:15;;;;:49;;-1:-1:-1;2201:6:0;;-1:-1:-1;;;;;40537:13:0;;;2201:6;;40537:13;;40501:49;:86;;;;-1:-1:-1;;;;;;40571:16:0;;;;40501:86;:128;;;;-1:-1:-1;;;;;;40608:21:0;;40622:6;40608:21;;40501:128;:158;;;;-1:-1:-1;40651:8:0;;-1:-1:-1;;;40651:8:0;;;;40650:9;40501:158;40479:1648;;;40699:13;;;;;;;40694:223;;-1:-1:-1;;;;;40771:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40800:23:0;;;;;;:19;:23;;;;;;;;40771:52;40737:160;;;;-1:-1:-1;;;40737:160:0;;14433:2:1;40737:160:0;;;14415:21:1;14472:2;14452:18;;;14445:30;-1:-1:-1;;;14491:18:1;;;14484:52;14553:18;;40737:160:0;14231:346:1;40737:160:0;-1:-1:-1;;;;;40991:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;41048:35:0;;;;;;:31;:35;;;;;;;;41047:36;40991:92;40965:1147;;;41170:20;;41160:6;:30;;41126:169;;;;-1:-1:-1;;;41126:169:0;;14784:2:1;41126:169:0;;;14766:21:1;14823:2;14803:18;;;14796:30;14862:34;14842:18;;;14835:62;-1:-1:-1;;;14913:18:1;;;14906:51;14974:19;;41126:169:0;14582:417:1;41126:169:0;41378:9;;-1:-1:-1;;;;;10654:18:0;;10627:7;10654:18;;;;;;;;;;;41352:22;;:6;:22;:::i;:::-;:35;;41318:140;;;;-1:-1:-1;;;41318:140:0;;15206:2:1;41318:140:0;;;15188:21:1;15245:2;15225:18;;;15218:30;-1:-1:-1;;;15264:18:1;;;15257:49;15323:18;;41318:140:0;15004:343:1;41318:140:0;40965:1147;;;-1:-1:-1;;;;;41556:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;41611:37:0;;;;;;:31;:37;;;;;;;;41610:38;41556:92;41530:582;;;41735:20;;41725:6;:30;;41691:170;;;;-1:-1:-1;;;41691:170:0;;15554:2:1;41691:170:0;;;15536:21:1;15593:2;15573:18;;;15566:30;15632:34;15612:18;;;15605:62;-1:-1:-1;;;15683:18:1;;;15676:52;15745:19;;41691:170:0;15352:418:1;41530:582:0;-1:-1:-1;;;;;41892:35:0;;;;;;:31;:35;;;;;;;;41887:225;;42012:9;;-1:-1:-1;;;;;10654:18:0;;10627:7;10654:18;;;;;;;;;;;41986:22;;:6;:22;:::i;:::-;:35;;41952:140;;;;-1:-1:-1;;;41952:140:0;;15206:2:1;41952:140:0;;;15188:21:1;15245:2;15225:18;;;15218:30;-1:-1:-1;;;15264:18:1;;;15257:49;15323:18;;41952:140:0;15004:343:1;41952:140:0;42199:4;42150:28;10654:18;;;;;;;;;;;42257;;42233:42;;;;;;;42306:35;;-1:-1:-1;42330:11:0;;;;;;;42306:35;:61;;;;-1:-1:-1;42359:8:0;;-1:-1:-1;;;42359:8:0;;;;42358:9;42306:61;:110;;;;-1:-1:-1;;;;;;42385:31:0;;;;;;:25;:31;;;;;;;;42384:32;42306:110;:153;;;;-1:-1:-1;;;;;;42434:25:0;;;;;;:19;:25;;;;;;;;42433:26;42306:153;:194;;;;-1:-1:-1;;;;;;42477:23:0;;;;;;:19;:23;;;;;;;;42476:24;42306:194;42288:326;;;42527:8;:15;;-1:-1:-1;;;;42527:15:0;-1:-1:-1;;;42527:15:0;;;42559:10;:8;:10::i;:::-;42586:8;:16;;-1:-1:-1;;;;42586:16:0;;;42288:326;42642:8;;-1:-1:-1;;;;;42752:25:0;;42626:12;42752:25;;;:19;:25;;;;;;42642:8;-1:-1:-1;;;42642:8:0;;;;;42641:9;;42752:25;;:52;;-1:-1:-1;;;;;;42781:23:0;;;;;;:19;:23;;;;;;;;42752:52;42748:100;;;-1:-1:-1;42831:5:0;42748:100;42860:12;42965:7;42961:965;;;-1:-1:-1;;;;;43017:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;43066:1;43050:13;;:17;43017:50;43013:764;;;43095:34;43125:3;43095:25;43106:13;;43095:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;43088:41;;43198:13;;43178:16;;43171:4;:23;;;;:::i;:::-;43170:41;;;;:::i;:::-;43148:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;43270:13:0;;43255:11;;43248:18;;:4;:18;:::i;:::-;43247:36;;;;:::i;:::-;43230:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;43348:13:0;;43330:14;;43323:21;;:4;:21;:::i;:::-;43322:39;;;;:::i;:::-;43302:16;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;43013:764:0;;-1:-1:-1;43013:764:0;;-1:-1:-1;;;;;43423:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43473:1;43458:12;;:16;43423:51;43419:358;;;43502:33;43531:3;43502:24;43513:12;;43502:6;:10;;:24;;;;:::i;:33::-;43495:40;;43603:12;;43584:15;;43577:4;:22;;;;:::i;:::-;43576:39;;;;:::i;:::-;43554:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43673:12:0;;43659:10;;43652:17;;:4;:17;:::i;:::-;43651:34;;;;:::i;:::-;43634:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;43749:12:0;;43732:13;;43725:20;;:4;:20;:::i;:::-;43724:37;;;;:::i;:::-;43704:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;43419:358:0;43797:8;;43793:91;;43826:42;43842:4;43856;43863;43826:15;:42::i;:::-;43900:14;43910:4;43900:14;;:::i;:::-;;;42961:965;43938:33;43954:4;43960:2;43964:6;43938:15;:33::i;:::-;40032:3947;;;;39919:4060;;;:::o;3398:191::-;3491:6;;;-1:-1:-1;;;;;3508:17:0;;;-1:-1:-1;;;;;;3508:17:0;;;;;;;3541:40;;3491:6;;;3508:17;3491:6;;3541:40;;3472:16;;3541:40;3461:128;3398:191;:::o;39097:188::-;-1:-1:-1;;;;;39180:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39180:39:0;;;;;;;;;;39237:40;;39180:39;;:31;39237:40;;;39097:188;;:::o;14602:733::-;-1:-1:-1;;;;;14742:20:0;;14734:70;;;;-1:-1:-1;;;14734:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14823:23:0;;14815:71;;;;-1:-1:-1;;;14815:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14983:17:0;;14959:21;14983:17;;;;;;;;;;;15019:23;;;;15011:74;;;;-1:-1:-1;;;15011:74:0;;16110:2:1;15011:74:0;;;16092:21:1;16149:2;16129:18;;;16122:30;16188:34;16168:18;;;16161:62;-1:-1:-1;;;16239:18:1;;;16232:36;16285:19;;15011:74:0;15908:402:1;15011:74:0;-1:-1:-1;;;;;15121:17:0;;;:9;:17;;;;;;;;;;;15141:22;;;15121:42;;15185:20;;;;;;;;:30;;15157:6;;15121:9;15185:30;;15157:6;;15185:30;:::i;:::-;;;;;;;;15250:9;-1:-1:-1;;;;;15233:35:0;15242:6;-1:-1:-1;;;;;15233:35:0;;15261:6;15233:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;15233:35:0;;;;;;;;15281:46;37783:393;45105:1767;45188:4;45144:23;10654:18;;;;;;;;;;;45144:50;;45205:25;45299:13;;45267:16;;45233:18;;:50;;;;:::i;:::-;:79;;;;:::i;:::-;45205:107;-1:-1:-1;45323:12:0;45352:20;;;:46;;-1:-1:-1;45376:22:0;;45352:46;45348:85;;;45415:7;;;45105:1767::o;45348:85::-;45467:18;;:23;;45488:2;45467:23;:::i;:::-;45449:15;:41;45445:115;;;45525:18;;:23;;45546:2;45525:23;:::i;:::-;45507:41;;45445:115;45621:23;45734:1;45701:17;45666:18;;45648:15;:36;;;;:::i;:::-;45647:71;;;;:::i;:::-;:88;;;;:::i;:::-;45621:114;-1:-1:-1;45746:26:0;45775:36;:15;45621:114;45775:19;:36::i;:::-;45746:65;-1:-1:-1;45852:21:0;45886:36;45746:65;45886:16;:36::i;:::-;45935:18;45956:44;:21;45982:17;45956:25;:44::i;:::-;45935:65;;46013:21;46037:82;46116:1;46095:18;;:22;;;;:::i;:::-;46074:44;;:17;:44;:::i;:::-;46052:16;;46037:32;;:10;;:14;:32::i;:82::-;46013:106;;46140:18;46161:79;46237:1;46216:18;;:22;;;;:::i;:::-;46195:44;;:17;:44;:::i;:::-;46176:13;;46161:29;;:10;;:14;:29::i;:79::-;46140:100;-1:-1:-1;46253:23:0;46140:100;46279:26;46292:13;46279:10;:26;:::i;:::-;:39;;;;:::i;:::-;46352:1;46331:18;:22;;;46364:16;:20;;;46395:13;:17;;;46447:10;;46439:47;;46253:65;;-1:-1:-1;;;;;;46447:10:0;;46471;;46439:47;46352:1;46439:47;46471:10;46447;46439:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46425:61:0;;-1:-1:-1;;46503:19:0;;;;;:42;;;46544:1;46526:15;:19;46503:42;46499:278;;;46562:46;46575:15;46592;46562:12;:46::i;:::-;46732:18;;46628:137;;;16517:25:1;;;16573:2;16558:18;;16551:34;;;16601:18;;;16594:34;;;;46628:137:0;;;;;;16505:2:1;46628:137:0;;;46499:278;46811:13;;46803:61;;-1:-1:-1;;;;;46811:13:0;;;;46838:21;;46803:61;;;;46838:21;46811:13;46803:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;45105:1767:0:o;22515:98::-;22573:7;22600:5;22604:1;22600;:5;:::i;:::-;22593:12;22515:98;-1:-1:-1;;;22515:98:0:o;22914:::-;22972:7;22999:5;23003:1;22999;:5;:::i;22158:98::-;22216:7;22243:5;22247:1;22243;:5;:::i;43987:589::-;44137:16;;;44151:1;44137:16;;;;;;;;44113:21;;44137:16;;;;;;;;;;-1:-1:-1;44137:16:0;44113:40;;44182:4;44164;44169:1;44164:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44164:23:0;;;-1:-1:-1;;;;;44164:23:0;;;;;44208:15;-1:-1:-1;;;;;44208:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44198:4;44203:1;44198:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44198:32:0;;;-1:-1:-1;;;;;44198:32:0;;;;;44243:62;44260:4;44275:15;44293:11;44243:8;:62::i;:::-;44344:224;;-1:-1:-1;;;44344:224:0;;-1:-1:-1;;;;;44344:15:0;:66;;;;:224;;44425:11;;44451:1;;44495:4;;44522;;44542:15;;44344:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44042:534;43987:589;:::o;44584:513::-;44732:62;44749:4;44764:15;44782:11;44732:8;:62::i;:::-;44837:15;-1:-1:-1;;;;;44837:31:0;;44876:9;44909:4;44929:11;44955:1;44998;45041:7;2201:6;;-1:-1:-1;;;;;2201:6:0;;2128:87;45041:7;44837:252;;;;;;-1:-1:-1;;;;;;44837:252:0;;;-1:-1:-1;;;;;18503:15:1;;;44837:252:0;;;18485:34:1;18535:18;;;18528:34;;;;18578:18;;;18571:34;;;;18621:18;;;18614:34;18685:15;;;18664:19;;;18657:44;45063:15:0;18717:19:1;;;18710:35;18419:19;;44837:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44584: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;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:241::-;3814:6;3867:2;3855:9;3846:7;3842:23;3838:32;3835:52;;;3883:1;3880;3873:12;3835:52;3922:9;3909:23;3941:28;3963:5;3941:28;:::i;4004:388::-;4072:6;4080;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;4188:9;4175:23;4207:31;4232:5;4207:31;:::i;:::-;4257:5;-1:-1:-1;4314:2:1;4299:18;;4286:32;4327:33;4286:32;4327:33;:::i;4397:380::-;4476:1;4472:12;;;;4519;;;4540:61;;4594:4;4586:6;4582:17;4572:27;;4540:61;4647:2;4639:6;4636:14;4616:18;4613:38;4610:161;;4693:10;4688:3;4684:20;4681:1;4674:31;4728:4;4725:1;4718:15;4756:4;4753:1;4746:15;4610:161;;4397:380;;;:::o;4782:356::-;4984:2;4966:21;;;5003:18;;;4996:30;5062:34;5057:2;5042:18;;5035:62;5129:2;5114:18;;4782:356::o;5143:127::-;5204:10;5199:3;5195:20;5192:1;5185:31;5235:4;5232:1;5225:15;5259:4;5256:1;5249:15;5275:168;5348:9;;;5379;;5396:15;;;5390:22;;5376:37;5366:71;;5417:18;;:::i;5448:217::-;5488:1;5514;5504:132;;5558:10;5553:3;5549:20;5546:1;5539:31;5593:4;5590:1;5583:15;5621:4;5618:1;5611:15;5504:132;-1:-1:-1;5650:9:1;;5448:217::o;6495:125::-;6560:9;;;6581:10;;;6578:36;;;6594:18;;:::i;6625:184::-;6695:6;6748:2;6736:9;6727:7;6723:23;6719:32;6716:52;;;6764:1;6761;6754:12;6716:52;-1:-1:-1;6787:16:1;;6625:184;-1:-1:-1;6625:184:1:o;7093:245::-;7160:6;7213:2;7201:9;7192:7;7188:23;7184:32;7181:52;;;7229:1;7226;7219:12;7181:52;7261:9;7255:16;7280:28;7302:5;7280:28;:::i;12725:401::-;12927:2;12909:21;;;12966:2;12946:18;;;12939:30;13005:34;13000:2;12985:18;;12978:62;-1:-1:-1;;;13071:2:1;13056:18;;13049:35;13116:3;13101:19;;12725:401::o;13131:399::-;13333:2;13315:21;;;13372:2;13352:18;;;13345:30;13411:34;13406:2;13391:18;;13384:62;-1:-1:-1;;;13477:2:1;13462:18;;13455:33;13520:3;13505:19;;13131:399::o;15775:128::-;15842:9;;;15863:11;;;15860:37;;;15877:18;;:::i;16771:127::-;16832:10;16827:3;16823:20;16820:1;16813:31;16863:4;16860:1;16853:15;16887:4;16884:1;16877:15;16903:251;16973:6;17026:2;17014:9;17005:7;17001:23;16997:32;16994:52;;;17042:1;17039;17032:12;16994:52;17074:9;17068:16;17093:31;17118:5;17093:31;:::i;17159:980::-;17421:4;17469:3;17458:9;17454:19;17500:6;17489:9;17482:25;17526:2;17564:6;17559:2;17548:9;17544:18;17537:34;17607:3;17602:2;17591:9;17587:18;17580:31;17631:6;17666;17660:13;17697:6;17689;17682:22;17735:3;17724:9;17720:19;17713:26;;17774:2;17766:6;17762:15;17748:29;;17795:1;17805:195;17819:6;17816:1;17813:13;17805:195;;;17884:13;;-1:-1:-1;;;;;17880:39:1;17868:52;;17975:15;;;;17940:12;;;;17916:1;17834:9;17805:195;;;-1:-1:-1;;;;;;;18056:32:1;;;;18051:2;18036:18;;18029:60;-1:-1:-1;;;18120:3:1;18105:19;18098:35;18017:3;17159:980;-1:-1:-1;;;17159:980:1:o;18756:306::-;18844:6;18852;18860;18913:2;18901:9;18892:7;18888:23;18884:32;18881:52;;;18929:1;18926;18919:12;18881:52;18958:9;18952:16;18942:26;;19008:2;18997:9;18993:18;18987:25;18977:35;;19052:2;19041:9;19037:18;19031:25;19021:35;;18756:306;;;;;:::o

Swarm Source

ipfs://48cc8ac7d7c47f2876536b1133f36c9b7f82de7da9fbf825add18b1d1d11e671
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.