ETH Price: $2,357.60 (+0.71%)
Gas: 6.38 Gwei

Token

Zhunian 兔年 (兔年)
 

Overview

Max Total Supply

88,888,888 兔年

Holders

27

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.570039803443335984 兔年

Value
$0.00
0x30b22661b027ab643adde988906cf7b64e4b3af3
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:
Zhunian

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-15
*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.9 >=0.8.9 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

/*
https://t.me/Zhunian
https://twitter.com/elonmusk/status/1602472202619654144

*/
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 Zhunian 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 devWallet;

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

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = false;

    uint256 public buyTotalFees;
    uint256 public buyLiquidityFee;
    uint256 public buyMarketingFee;

    uint256 public sellTotalFees;
    uint256 public sellLiquidityFee;
    uint256 public sellMarketingFee;

    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20( unicode"Zhunian 兔年" , unicode"兔年") {
        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 _buyLiquidityFee = 5;
        uint256 _buyMarketingFee = 25;

        uint256 _sellLiquidityFee = 5;
        uint256 _sellMarketingFee = 25;

        uint256 totalSupply = 88_888_888 * 1e18;

        maxTransactionAmount = 1_888_000 * 1e18; // 2% from total supply
        maxWallet = 1_888_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 4) / 1000; // 0.4% swap wallet

        buyLiquidityFee = _buyLiquidityFee;
        buyMarketingFee = _buyMarketingFee;
        buyTotalFees = buyLiquidityFee + buyMarketingFee;

        sellLiquidityFee = _sellLiquidityFee;
        sellMarketingFee = _sellMarketingFee;
        sellTotalFees = sellLiquidityFee + sellMarketingFee;

        devWallet = address(0x40d0D1661d19D4266Aab6091826CD8637D8dc6A3); // set as marketing 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;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = 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() * 8) / 1000,
            "Swap amount cannot be higher than 0.8% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        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 _liquidityFee,
        uint256 _MarketingFee
    ) external onlyOwner {
        buyLiquidityFee = _liquidityFee;
        buyMarketingFee = _MarketingFee;
        buyTotalFees = buyLiquidityFee + buyMarketingFee;
        require(buyTotalFees <= 31, "Must keep fees at 31% or less");
    }

    function updateSellFees(
        uint256 _liquidityFee,
        uint256 _MarketingFee
    ) external onlyOwner {
        sellLiquidityFee = _liquidityFee;
        sellMarketingFee = _MarketingFee;
        sellTotalFees = sellLiquidityFee + sellMarketingFee;
        require(sellTotalFees <= 31, "Must keep fees at 31% or less");
    }

    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 updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

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

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] + 1 <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per two blocks allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //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;
                tokensForDev += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyMarketingFee) / 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 +
            tokensForDev;
        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 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev;

        tokensForLiquidity = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

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

    function withdraw() 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 withdrawToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        require(_token != address(this), "Can't withdraw native tokens");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

}

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":[],"name":"AutoNukeLP","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":[],"name":"ManualNukeLP","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":"devWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"sellMarketingFee","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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a805462ffffff19166001179055600c805460ff191690553480156200002a57600080fd5b50604080518082018252600e81526d169a1d5b9a585b88396165396e6d60921b602080830191825283518085019094526006845265396165396e6d60d21b9084015281519192916200007f9160039162000666565b5080516200009590600490602084019062000666565b505050620000b2620000ac620003b360201b60201c565b620003b7565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d481600162000409565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200011a57600080fd5b505afa1580156200012f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015591906200070c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200019e57600080fd5b505afa158015620001b3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d991906200070c565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200022257600080fd5b505af115801562000237573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025d91906200070c565b6001600160a01b031660a08190526200027890600162000409565b60a0516200028890600162000483565b6a018fccaf619349dc00000060078190556009556005601981816a4986f44622f73835e000006103e8620002be82600462000754565b620002ca919062000776565b600855600e859055600f849055620002e3848662000799565b600d5560118390556012829055620002fc828462000799565b601055600680546001600160a01b0319167340d0d1661d19d4266aab6091826cd8637d8dc6a3179055620003446200033c6005546001600160a01b031690565b6001620004d7565b62000351306001620004d7565b6200036061dead6001620004d7565b6200037f620003776005546001600160a01b031690565b600162000409565b6200038c30600162000409565b6200039b61dead600162000409565b620003a7338262000581565b505050505050620007f1565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004585760405162461bcd60e51b81526020600482018190526024820152600080516020620033a683398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005225760405162461bcd60e51b81526020600482018190526024820152600080516020620033a683398151915260448201526064016200044f565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005d95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200044f565b8060026000828254620005ed919062000799565b90915550506001600160a01b038216600090815260208190526040812080548392906200061c90849062000799565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200067490620007b4565b90600052602060002090601f016020900481019282620006985760008555620006e3565b82601f10620006b357805160ff1916838001178555620006e3565b82800160010185558215620006e3579182015b82811115620006e3578251825591602001919060010190620006c6565b50620006f1929150620006f5565b5090565b5b80821115620006f15760008155600101620006f6565b6000602082840312156200071f57600080fd5b81516001600160a01b03811681146200073757600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200077157620007716200073e565b500290565b6000826200079457634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007af57620007af6200073e565b500190565b600181811c90821680620007c957607f821691505b60208210811415620007eb57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612b576200084f6000396000818161051b0152818161122401526119f80152600081816103b3015281816119ba0152818161244d0152818161251501528181612551015281816125cb01526125f20152612b576000f3fe6080604052600436106102e85760003560e01c80637bce5a0411610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146108f6578063f2fde38b1461090c578063f63743421461092c578063f8b45b051461094257600080fd5b8063dd62ed3e14610885578063e2f45605146108cb578063e884f260146108e157600080fd5b8063c0246668146107df578063c18bc195146107ff578063c876d0b91461081f578063c8c8ebe414610839578063d257b34f1461084f578063d85ba0631461086f57600080fd5b806395d89b4111610149578063a457c2d711610123578063a457c2d714610750578063a9059cbb14610770578063b62496f514610790578063bbc0c742146107c057600080fd5b806395d89b41146107055780639a7a23d61461071a5780639fccce321461073a57600080fd5b80637bce5a04146106665780638a8c523c1461067c5780638da5cb5b146106915780638ea5220f146106af57806392136913146106cf578063924de9b7146106e557600080fd5b8063395093511161024f57806366ca9b831161020857806370a08231116101e257806370a08231146105e6578063715018a61461061c578063751039fc146106315780637571336a1461064657600080fd5b806366ca9b83146105905780636a486a8e146105b05780636ddd1713146105c657600080fd5b806339509351146104b45780633aeac4e1146104d45780633ccfd60b146104f457806349bd5a5e146105095780634a62bb651461053d5780634fbee1931461055757600080fd5b80631816467f116102a15780631816467f1461040c5780631a8145bb1461042c578063203e727e1461044257806323b872dd1461046257806327c8f83514610482578063313ce5671461049857600080fd5b806302dbd8f8146102f457806306fdde0314610316578063095ea7b31461034157806310d5de53146103715780631694505e146103a157806318160ddd146103ed57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061031461030f3660046126da565b610958565b005b34801561032257600080fd5b5061032b6109f8565b60405161033891906126fc565b60405180910390f35b34801561034d57600080fd5b5061036161035c366004612766565b610a8a565b6040519015158152602001610338565b34801561037d57600080fd5b5061036161038c366004612792565b60166020526000908152604090205460ff1681565b3480156103ad57600080fd5b506103d57f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610338565b3480156103f957600080fd5b506002545b604051908152602001610338565b34801561041857600080fd5b50610314610427366004612792565b610aa0565b34801561043857600080fd5b506103fe60135481565b34801561044e57600080fd5b5061031461045d3660046127af565b610b27565b34801561046e57600080fd5b5061036161047d3660046127c8565b610c04565b34801561048e57600080fd5b506103d561dead81565b3480156104a457600080fd5b5060405160128152602001610338565b3480156104c057600080fd5b506103616104cf366004612766565b610cae565b3480156104e057600080fd5b506103146104ef366004612809565b610cea565b34801561050057600080fd5b50610314610ec9565b34801561051557600080fd5b506103d57f000000000000000000000000000000000000000000000000000000000000000081565b34801561054957600080fd5b50600a546103619060ff1681565b34801561056357600080fd5b50610361610572366004612792565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561059c57600080fd5b506103146105ab3660046126da565b61100b565b3480156105bc57600080fd5b506103fe60105481565b3480156105d257600080fd5b50600a546103619062010000900460ff1681565b3480156105f257600080fd5b506103fe610601366004612792565b6001600160a01b031660009081526020819052604090205490565b34801561062857600080fd5b5061031461109e565b34801561063d57600080fd5b506103616110d4565b34801561065257600080fd5b50610314610661366004612850565b611111565b34801561067257600080fd5b506103fe600f5481565b34801561068857600080fd5b50610314611166565b34801561069d57600080fd5b506005546001600160a01b03166103d5565b3480156106bb57600080fd5b506006546103d5906001600160a01b031681565b3480156106db57600080fd5b506103fe60125481565b3480156106f157600080fd5b5061031461070036600461287e565b6111a3565b34801561071157600080fd5b5061032b6111e9565b34801561072657600080fd5b50610314610735366004612850565b6111f8565b34801561074657600080fd5b506103fe60145481565b34801561075c57600080fd5b5061036161076b366004612766565b6112d4565b34801561077c57600080fd5b5061036161078b366004612766565b61136d565b34801561079c57600080fd5b506103616107ab366004612792565b60176020526000908152604090205460ff1681565b3480156107cc57600080fd5b50600a5461036190610100900460ff1681565b3480156107eb57600080fd5b506103146107fa366004612850565b61137a565b34801561080b57600080fd5b5061031461081a3660046127af565b611403565b34801561082b57600080fd5b50600c546103619060ff1681565b34801561084557600080fd5b506103fe60075481565b34801561085b57600080fd5b5061036161086a3660046127af565b6114d4565b34801561087b57600080fd5b506103fe600d5481565b34801561089157600080fd5b506103fe6108a0366004612809565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108d757600080fd5b506103fe60085481565b3480156108ed57600080fd5b50610361611626565b34801561090257600080fd5b506103fe600e5481565b34801561091857600080fd5b50610314610927366004612792565b611663565b34801561093857600080fd5b506103fe60115481565b34801561094e57600080fd5b506103fe60095481565b6005546001600160a01b0316331461098b5760405162461bcd60e51b81526004016109829061289b565b60405180910390fd5b6011829055601281905561099f81836128e6565b6010819055601f10156109f45760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333125206f72206c6573730000006044820152606401610982565b5050565b606060038054610a07906128fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610a33906128fe565b8015610a805780601f10610a5557610100808354040283529160200191610a80565b820191906000526020600020905b815481529060010190602001808311610a6357829003601f168201915b5050505050905090565b6000610a973384846116fe565b50600192915050565b6005546001600160a01b03163314610aca5760405162461bcd60e51b81526004016109829061289b565b6006546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b515760405162461bcd60e51b81526004016109829061289b565b670de0b6b3a76400006103e8610b6660025490565b610b71906001612939565b610b7b9190612958565b610b859190612958565b811015610bec5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610982565b610bfe81670de0b6b3a7640000612939565b60075550565b6000610c11848484611822565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c965760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610982565b610ca385338584036116fe565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a97918590610ce59086906128e6565b6116fe565b6005546001600160a01b03163314610d145760405162461bcd60e51b81526004016109829061289b565b6001600160a01b038216610d6a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610982565b6001600160a01b038216301415610dc35760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610982565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610e0557600080fd5b505afa158015610e19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3d919061297a565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb90604401602060405180830381600087803b158015610e8b57600080fd5b505af1158015610e9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec39190612993565b50505050565b6005546001600160a01b03163314610ef35760405162461bcd60e51b81526004016109829061289b565b6040516370a0823160e01b815230600482018190526000916370a082319060240160206040518083038186803b158015610f2c57600080fd5b505afa158015610f40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f64919061297a565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb90604401602060405180830381600087803b158015610fa657600080fd5b505af1158015610fba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fde9190612993565b5060405133904780156108fc02916000818181858888f193505050501580156109f4573d6000803e3d6000fd5b6005546001600160a01b031633146110355760405162461bcd60e51b81526004016109829061289b565b600e829055600f81905561104981836128e6565b600d819055601f10156109f45760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333125206f72206c6573730000006044820152606401610982565b6005546001600160a01b031633146110c85760405162461bcd60e51b81526004016109829061289b565b6110d26000612027565b565b6005546000906001600160a01b031633146111015760405162461bcd60e51b81526004016109829061289b565b50600a805460ff19169055600190565b6005546001600160a01b0316331461113b5760405162461bcd60e51b81526004016109829061289b565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111905760405162461bcd60e51b81526004016109829061289b565b600a805462ffff00191662010100179055565b6005546001600160a01b031633146111cd5760405162461bcd60e51b81526004016109829061289b565b600a8054911515620100000262ff000019909216919091179055565b606060048054610a07906128fe565b6005546001600160a01b031633146112225760405162461bcd60e51b81526004016109829061289b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156112ca5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610982565b6109f48282612079565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156113565760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610982565b61136333858584036116fe565b5060019392505050565b6000610a97338484611822565b6005546001600160a01b031633146113a45760405162461bcd60e51b81526004016109829061289b565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461142d5760405162461bcd60e51b81526004016109829061289b565b670de0b6b3a76400006103e861144260025490565b61144d906005612939565b6114579190612958565b6114619190612958565b8110156114bc5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610982565b6114ce81670de0b6b3a7640000612939565b60095550565b6005546000906001600160a01b031633146115015760405162461bcd60e51b81526004016109829061289b565b620186a061150e60025490565b611519906001612939565b6115239190612958565b8210156115905760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610982565b6103e861159c60025490565b6115a7906008612939565b6115b19190612958565b82111561161d5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171c12903a37ba30b61039bab838363c9760611b6064820152608401610982565b50600855600190565b6005546000906001600160a01b031633146116535760405162461bcd60e51b81526004016109829061289b565b50600c805460ff19169055600190565b6005546001600160a01b0316331461168d5760405162461bcd60e51b81526004016109829061289b565b6001600160a01b0381166116f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610982565b6116fb81612027565b50565b6001600160a01b0383166117605760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610982565b6001600160a01b0382166117c15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610982565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118485760405162461bcd60e51b8152600401610982906129b0565b6001600160a01b03821661186e5760405162461bcd60e51b8152600401610982906129f5565b806118845761187f838360006120cd565b505050565b600a5460ff1615611d52576005546001600160a01b038481169116148015906118bb57506005546001600160a01b03838116911614155b80156118cf57506001600160a01b03821615155b80156118e657506001600160a01b03821661dead14155b80156118fc5750600554600160a01b900460ff16155b15611d5257600a54610100900460ff16611994576001600160a01b03831660009081526015602052604090205460ff168061194f57506001600160a01b03821660009081526015602052604090205460ff165b6119945760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610982565b600c5460ff1615611aec576005546001600160a01b038381169116148015906119ef57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611a2d57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611aec57326000908152600b60205260409020544390611a4f9060016128e6565b10611ad95760405162461bcd60e51b815260206004820152604e60248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260648201526d3637b1b5b99030b63637bbb2b21760911b608482015260a401610982565b326000908152600b602052604090204390555b6001600160a01b03831660009081526017602052604090205460ff168015611b2d57506001600160a01b03821660009081526016602052604090205460ff16155b15611c1157600754811115611ba25760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610982565b6009546001600160a01b038316600090815260208190526040902054611bc890836128e6565b1115611c0c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610982565b611d52565b6001600160a01b03821660009081526017602052604090205460ff168015611c5257506001600160a01b03831660009081526016602052604090205460ff16155b15611cc857600754811115611c0c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610982565b6001600160a01b03821660009081526016602052604090205460ff16611d52576009546001600160a01b038316600090815260208190526040902054611d0e90836128e6565b1115611d525760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610982565b3060009081526020819052604090205460085481108015908190611d7e5750600a5462010000900460ff165b8015611d945750600554600160a01b900460ff16155b8015611db957506001600160a01b03851660009081526017602052604090205460ff16155b8015611dde57506001600160a01b03851660009081526015602052604090205460ff16155b8015611e0357506001600160a01b03841660009081526015602052604090205460ff16155b15611e31576005805460ff60a01b1916600160a01b179055611e23612221565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526015602052604090205460ff600160a01b909204821615911680611e7f57506001600160a01b03851660009081526015602052604090205460ff165b15611e88575060005b60008115612013576001600160a01b03861660009081526017602052604090205460ff168015611eba57506000601054115b15611f4857611edf6064611ed9601054886123cb90919063ffffffff16565b906123de565b905060105460115482611ef29190612939565b611efc9190612958565b60136000828254611f0d91906128e6565b9091555050601054601254611f229083612939565b611f2c9190612958565b60146000828254611f3d91906128e6565b90915550611ff59050565b6001600160a01b03871660009081526017602052604090205460ff168015611f7257506000600d54115b15611ff557611f916064611ed9600d54886123cb90919063ffffffff16565b9050600d54600e5482611fa49190612939565b611fae9190612958565b60136000828254611fbf91906128e6565b9091555050600d54600f54611fd49083612939565b611fde9190612958565b60146000828254611fef91906128e6565b90915550505b8015612006576120068730836120cd565b6120108186612a38565b94505b61201e8787876120cd565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166120f35760405162461bcd60e51b8152600401610982906129b0565b6001600160a01b0382166121195760405162461bcd60e51b8152600401610982906129f5565b6001600160a01b038316600090815260208190526040902054818110156121915760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610982565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906121c89084906128e6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161221491815260200190565b60405180910390a3610ec3565b306000908152602081905260408120549050600060145460135461224591906128e6565b90506000821580612254575081155b1561225e57505050565b60085461226c906014612939565b83111561228457600854612281906014612939565b92505b6000600283601354866122979190612939565b6122a19190612958565b6122ab9190612958565b905060006122b985836123ea565b9050476122c5826123f6565b60006122d147836123ea565b905060006122ee87611ed9601454856123cb90919063ffffffff16565b905060006122fc8284612a38565b6000601381905560148190556006546040519293506001600160a01b031691849181818185875af1925050503d8060008114612354576040519150601f19603f3d011682016040523d82523d6000602084013e612359565b606091505b5090975050851580159061236d5750600081115b156123c05761237c86826125c5565b601354604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b60006123d78284612939565b9392505050565b60006123d78284612958565b60006123d78284612a38565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061242b5761242b612a4f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156124a457600080fd5b505afa1580156124b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124dc9190612a65565b816001815181106124ef576124ef612a4f565b60200260200101906001600160a01b031690816001600160a01b03168152505061253a307f0000000000000000000000000000000000000000000000000000000000000000846116fe565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061258f908590600090869030904290600401612a82565b600060405180830381600087803b1580156125a957600080fd5b505af11580156125bd573d6000803e3d6000fd5b505050505050565b6125f0307f0000000000000000000000000000000000000000000000000000000000000000846116fe565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806126376005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561269a57600080fd5b505af11580156126ae573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126d39190612af3565b5050505050565b600080604083850312156126ed57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156127295785810183015185820160400152820161270d565b8181111561273b576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146116fb57600080fd5b6000806040838503121561277957600080fd5b823561278481612751565b946020939093013593505050565b6000602082840312156127a457600080fd5b81356123d781612751565b6000602082840312156127c157600080fd5b5035919050565b6000806000606084860312156127dd57600080fd5b83356127e881612751565b925060208401356127f881612751565b929592945050506040919091013590565b6000806040838503121561281c57600080fd5b823561282781612751565b9150602083013561283781612751565b809150509250929050565b80151581146116fb57600080fd5b6000806040838503121561286357600080fd5b823561286e81612751565b9150602083013561283781612842565b60006020828403121561289057600080fd5b81356123d781612842565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128f9576128f96128d0565b500190565b600181811c9082168061291257607f821691505b6020821081141561293357634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615612953576129536128d0565b500290565b60008261297557634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561298c57600080fd5b5051919050565b6000602082840312156129a557600080fd5b81516123d781612842565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612a4a57612a4a6128d0565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612a7757600080fd5b81516123d781612751565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612ad25784516001600160a01b031683529383019391830191600101612aad565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612b0857600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220e3f37f78efe0c66a722627e5f59295022144caaf9b927a25b507b6b1fc30636764736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80637bce5a0411610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146108f6578063f2fde38b1461090c578063f63743421461092c578063f8b45b051461094257600080fd5b8063dd62ed3e14610885578063e2f45605146108cb578063e884f260146108e157600080fd5b8063c0246668146107df578063c18bc195146107ff578063c876d0b91461081f578063c8c8ebe414610839578063d257b34f1461084f578063d85ba0631461086f57600080fd5b806395d89b4111610149578063a457c2d711610123578063a457c2d714610750578063a9059cbb14610770578063b62496f514610790578063bbc0c742146107c057600080fd5b806395d89b41146107055780639a7a23d61461071a5780639fccce321461073a57600080fd5b80637bce5a04146106665780638a8c523c1461067c5780638da5cb5b146106915780638ea5220f146106af57806392136913146106cf578063924de9b7146106e557600080fd5b8063395093511161024f57806366ca9b831161020857806370a08231116101e257806370a08231146105e6578063715018a61461061c578063751039fc146106315780637571336a1461064657600080fd5b806366ca9b83146105905780636a486a8e146105b05780636ddd1713146105c657600080fd5b806339509351146104b45780633aeac4e1146104d45780633ccfd60b146104f457806349bd5a5e146105095780634a62bb651461053d5780634fbee1931461055757600080fd5b80631816467f116102a15780631816467f1461040c5780631a8145bb1461042c578063203e727e1461044257806323b872dd1461046257806327c8f83514610482578063313ce5671461049857600080fd5b806302dbd8f8146102f457806306fdde0314610316578063095ea7b31461034157806310d5de53146103715780631694505e146103a157806318160ddd146103ed57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061031461030f3660046126da565b610958565b005b34801561032257600080fd5b5061032b6109f8565b60405161033891906126fc565b60405180910390f35b34801561034d57600080fd5b5061036161035c366004612766565b610a8a565b6040519015158152602001610338565b34801561037d57600080fd5b5061036161038c366004612792565b60166020526000908152604090205460ff1681565b3480156103ad57600080fd5b506103d57f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610338565b3480156103f957600080fd5b506002545b604051908152602001610338565b34801561041857600080fd5b50610314610427366004612792565b610aa0565b34801561043857600080fd5b506103fe60135481565b34801561044e57600080fd5b5061031461045d3660046127af565b610b27565b34801561046e57600080fd5b5061036161047d3660046127c8565b610c04565b34801561048e57600080fd5b506103d561dead81565b3480156104a457600080fd5b5060405160128152602001610338565b3480156104c057600080fd5b506103616104cf366004612766565b610cae565b3480156104e057600080fd5b506103146104ef366004612809565b610cea565b34801561050057600080fd5b50610314610ec9565b34801561051557600080fd5b506103d57f000000000000000000000000a67c74cb4f803a09f2d2abb3ef4b76fa5d15ea3081565b34801561054957600080fd5b50600a546103619060ff1681565b34801561056357600080fd5b50610361610572366004612792565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561059c57600080fd5b506103146105ab3660046126da565b61100b565b3480156105bc57600080fd5b506103fe60105481565b3480156105d257600080fd5b50600a546103619062010000900460ff1681565b3480156105f257600080fd5b506103fe610601366004612792565b6001600160a01b031660009081526020819052604090205490565b34801561062857600080fd5b5061031461109e565b34801561063d57600080fd5b506103616110d4565b34801561065257600080fd5b50610314610661366004612850565b611111565b34801561067257600080fd5b506103fe600f5481565b34801561068857600080fd5b50610314611166565b34801561069d57600080fd5b506005546001600160a01b03166103d5565b3480156106bb57600080fd5b506006546103d5906001600160a01b031681565b3480156106db57600080fd5b506103fe60125481565b3480156106f157600080fd5b5061031461070036600461287e565b6111a3565b34801561071157600080fd5b5061032b6111e9565b34801561072657600080fd5b50610314610735366004612850565b6111f8565b34801561074657600080fd5b506103fe60145481565b34801561075c57600080fd5b5061036161076b366004612766565b6112d4565b34801561077c57600080fd5b5061036161078b366004612766565b61136d565b34801561079c57600080fd5b506103616107ab366004612792565b60176020526000908152604090205460ff1681565b3480156107cc57600080fd5b50600a5461036190610100900460ff1681565b3480156107eb57600080fd5b506103146107fa366004612850565b61137a565b34801561080b57600080fd5b5061031461081a3660046127af565b611403565b34801561082b57600080fd5b50600c546103619060ff1681565b34801561084557600080fd5b506103fe60075481565b34801561085b57600080fd5b5061036161086a3660046127af565b6114d4565b34801561087b57600080fd5b506103fe600d5481565b34801561089157600080fd5b506103fe6108a0366004612809565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108d757600080fd5b506103fe60085481565b3480156108ed57600080fd5b50610361611626565b34801561090257600080fd5b506103fe600e5481565b34801561091857600080fd5b50610314610927366004612792565b611663565b34801561093857600080fd5b506103fe60115481565b34801561094e57600080fd5b506103fe60095481565b6005546001600160a01b0316331461098b5760405162461bcd60e51b81526004016109829061289b565b60405180910390fd5b6011829055601281905561099f81836128e6565b6010819055601f10156109f45760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333125206f72206c6573730000006044820152606401610982565b5050565b606060038054610a07906128fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610a33906128fe565b8015610a805780601f10610a5557610100808354040283529160200191610a80565b820191906000526020600020905b815481529060010190602001808311610a6357829003601f168201915b5050505050905090565b6000610a973384846116fe565b50600192915050565b6005546001600160a01b03163314610aca5760405162461bcd60e51b81526004016109829061289b565b6006546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b515760405162461bcd60e51b81526004016109829061289b565b670de0b6b3a76400006103e8610b6660025490565b610b71906001612939565b610b7b9190612958565b610b859190612958565b811015610bec5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610982565b610bfe81670de0b6b3a7640000612939565b60075550565b6000610c11848484611822565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c965760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610982565b610ca385338584036116fe565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a97918590610ce59086906128e6565b6116fe565b6005546001600160a01b03163314610d145760405162461bcd60e51b81526004016109829061289b565b6001600160a01b038216610d6a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610982565b6001600160a01b038216301415610dc35760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610982565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610e0557600080fd5b505afa158015610e19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3d919061297a565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb90604401602060405180830381600087803b158015610e8b57600080fd5b505af1158015610e9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec39190612993565b50505050565b6005546001600160a01b03163314610ef35760405162461bcd60e51b81526004016109829061289b565b6040516370a0823160e01b815230600482018190526000916370a082319060240160206040518083038186803b158015610f2c57600080fd5b505afa158015610f40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f64919061297a565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb90604401602060405180830381600087803b158015610fa657600080fd5b505af1158015610fba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fde9190612993565b5060405133904780156108fc02916000818181858888f193505050501580156109f4573d6000803e3d6000fd5b6005546001600160a01b031633146110355760405162461bcd60e51b81526004016109829061289b565b600e829055600f81905561104981836128e6565b600d819055601f10156109f45760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333125206f72206c6573730000006044820152606401610982565b6005546001600160a01b031633146110c85760405162461bcd60e51b81526004016109829061289b565b6110d26000612027565b565b6005546000906001600160a01b031633146111015760405162461bcd60e51b81526004016109829061289b565b50600a805460ff19169055600190565b6005546001600160a01b0316331461113b5760405162461bcd60e51b81526004016109829061289b565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111905760405162461bcd60e51b81526004016109829061289b565b600a805462ffff00191662010100179055565b6005546001600160a01b031633146111cd5760405162461bcd60e51b81526004016109829061289b565b600a8054911515620100000262ff000019909216919091179055565b606060048054610a07906128fe565b6005546001600160a01b031633146112225760405162461bcd60e51b81526004016109829061289b565b7f000000000000000000000000a67c74cb4f803a09f2d2abb3ef4b76fa5d15ea306001600160a01b0316826001600160a01b031614156112ca5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610982565b6109f48282612079565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156113565760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610982565b61136333858584036116fe565b5060019392505050565b6000610a97338484611822565b6005546001600160a01b031633146113a45760405162461bcd60e51b81526004016109829061289b565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461142d5760405162461bcd60e51b81526004016109829061289b565b670de0b6b3a76400006103e861144260025490565b61144d906005612939565b6114579190612958565b6114619190612958565b8110156114bc5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610982565b6114ce81670de0b6b3a7640000612939565b60095550565b6005546000906001600160a01b031633146115015760405162461bcd60e51b81526004016109829061289b565b620186a061150e60025490565b611519906001612939565b6115239190612958565b8210156115905760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610982565b6103e861159c60025490565b6115a7906008612939565b6115b19190612958565b82111561161d5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171c12903a37ba30b61039bab838363c9760611b6064820152608401610982565b50600855600190565b6005546000906001600160a01b031633146116535760405162461bcd60e51b81526004016109829061289b565b50600c805460ff19169055600190565b6005546001600160a01b0316331461168d5760405162461bcd60e51b81526004016109829061289b565b6001600160a01b0381166116f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610982565b6116fb81612027565b50565b6001600160a01b0383166117605760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610982565b6001600160a01b0382166117c15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610982565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118485760405162461bcd60e51b8152600401610982906129b0565b6001600160a01b03821661186e5760405162461bcd60e51b8152600401610982906129f5565b806118845761187f838360006120cd565b505050565b600a5460ff1615611d52576005546001600160a01b038481169116148015906118bb57506005546001600160a01b03838116911614155b80156118cf57506001600160a01b03821615155b80156118e657506001600160a01b03821661dead14155b80156118fc5750600554600160a01b900460ff16155b15611d5257600a54610100900460ff16611994576001600160a01b03831660009081526015602052604090205460ff168061194f57506001600160a01b03821660009081526015602052604090205460ff165b6119945760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610982565b600c5460ff1615611aec576005546001600160a01b038381169116148015906119ef57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611a2d57507f000000000000000000000000a67c74cb4f803a09f2d2abb3ef4b76fa5d15ea306001600160a01b0316826001600160a01b031614155b15611aec57326000908152600b60205260409020544390611a4f9060016128e6565b10611ad95760405162461bcd60e51b815260206004820152604e60248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260648201526d3637b1b5b99030b63637bbb2b21760911b608482015260a401610982565b326000908152600b602052604090204390555b6001600160a01b03831660009081526017602052604090205460ff168015611b2d57506001600160a01b03821660009081526016602052604090205460ff16155b15611c1157600754811115611ba25760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610982565b6009546001600160a01b038316600090815260208190526040902054611bc890836128e6565b1115611c0c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610982565b611d52565b6001600160a01b03821660009081526017602052604090205460ff168015611c5257506001600160a01b03831660009081526016602052604090205460ff16155b15611cc857600754811115611c0c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610982565b6001600160a01b03821660009081526016602052604090205460ff16611d52576009546001600160a01b038316600090815260208190526040902054611d0e90836128e6565b1115611d525760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610982565b3060009081526020819052604090205460085481108015908190611d7e5750600a5462010000900460ff165b8015611d945750600554600160a01b900460ff16155b8015611db957506001600160a01b03851660009081526017602052604090205460ff16155b8015611dde57506001600160a01b03851660009081526015602052604090205460ff16155b8015611e0357506001600160a01b03841660009081526015602052604090205460ff16155b15611e31576005805460ff60a01b1916600160a01b179055611e23612221565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526015602052604090205460ff600160a01b909204821615911680611e7f57506001600160a01b03851660009081526015602052604090205460ff165b15611e88575060005b60008115612013576001600160a01b03861660009081526017602052604090205460ff168015611eba57506000601054115b15611f4857611edf6064611ed9601054886123cb90919063ffffffff16565b906123de565b905060105460115482611ef29190612939565b611efc9190612958565b60136000828254611f0d91906128e6565b9091555050601054601254611f229083612939565b611f2c9190612958565b60146000828254611f3d91906128e6565b90915550611ff59050565b6001600160a01b03871660009081526017602052604090205460ff168015611f7257506000600d54115b15611ff557611f916064611ed9600d54886123cb90919063ffffffff16565b9050600d54600e5482611fa49190612939565b611fae9190612958565b60136000828254611fbf91906128e6565b9091555050600d54600f54611fd49083612939565b611fde9190612958565b60146000828254611fef91906128e6565b90915550505b8015612006576120068730836120cd565b6120108186612a38565b94505b61201e8787876120cd565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166120f35760405162461bcd60e51b8152600401610982906129b0565b6001600160a01b0382166121195760405162461bcd60e51b8152600401610982906129f5565b6001600160a01b038316600090815260208190526040902054818110156121915760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610982565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906121c89084906128e6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161221491815260200190565b60405180910390a3610ec3565b306000908152602081905260408120549050600060145460135461224591906128e6565b90506000821580612254575081155b1561225e57505050565b60085461226c906014612939565b83111561228457600854612281906014612939565b92505b6000600283601354866122979190612939565b6122a19190612958565b6122ab9190612958565b905060006122b985836123ea565b9050476122c5826123f6565b60006122d147836123ea565b905060006122ee87611ed9601454856123cb90919063ffffffff16565b905060006122fc8284612a38565b6000601381905560148190556006546040519293506001600160a01b031691849181818185875af1925050503d8060008114612354576040519150601f19603f3d011682016040523d82523d6000602084013e612359565b606091505b5090975050851580159061236d5750600081115b156123c05761237c86826125c5565b601354604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b60006123d78284612939565b9392505050565b60006123d78284612958565b60006123d78284612a38565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061242b5761242b612a4f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156124a457600080fd5b505afa1580156124b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124dc9190612a65565b816001815181106124ef576124ef612a4f565b60200260200101906001600160a01b031690816001600160a01b03168152505061253a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116fe565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061258f908590600090869030904290600401612a82565b600060405180830381600087803b1580156125a957600080fd5b505af11580156125bd573d6000803e3d6000fd5b505050505050565b6125f0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116fe565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806126376005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561269a57600080fd5b505af11580156126ae573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126d39190612af3565b5050505050565b600080604083850312156126ed57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156127295785810183015185820160400152820161270d565b8181111561273b576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146116fb57600080fd5b6000806040838503121561277957600080fd5b823561278481612751565b946020939093013593505050565b6000602082840312156127a457600080fd5b81356123d781612751565b6000602082840312156127c157600080fd5b5035919050565b6000806000606084860312156127dd57600080fd5b83356127e881612751565b925060208401356127f881612751565b929592945050506040919091013590565b6000806040838503121561281c57600080fd5b823561282781612751565b9150602083013561283781612751565b809150509250929050565b80151581146116fb57600080fd5b6000806040838503121561286357600080fd5b823561286e81612751565b9150602083013561283781612842565b60006020828403121561289057600080fd5b81356123d781612842565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128f9576128f96128d0565b500190565b600181811c9082168061291257607f821691505b6020821081141561293357634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615612953576129536128d0565b500290565b60008261297557634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561298c57600080fd5b5051919050565b6000602082840312156129a557600080fd5b81516123d781612842565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612a4a57612a4a6128d0565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612a7757600080fd5b81516123d781612751565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612ad25784516001600160a01b031683529383019391830191600101612aad565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612b0857600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220e3f37f78efe0c66a722627e5f59295022144caaf9b927a25b507b6b1fc30636764736f6c63430008090033

Deployed Bytecode Sourcemap

30548:15611:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37046:342;;;;;;;;;;-1:-1:-1;37046:342:0;;;;;:::i;:::-;;:::i;:::-;;8507:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10674:169;;;;;;;;;;-1:-1:-1;10674:169:0;;;;;:::i;:::-;;:::i;:::-;;;1490:14:1;;1483:22;1465:41;;1453:2;1438:18;10674:169:0;1325:187:1;31754:63:0;;;;;;;;;;-1:-1:-1;31754:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30625:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1960:32:1;;;1942:51;;1930:2;1915:18;30625:51:0;1769:230:1;9627:108:0;;;;;;;;;;-1:-1:-1;9715:12:0;;9627:108;;;2150:25:1;;;2138:2;2123:18;9627:108:0;2004:177:1;38094:157:0;;;;;;;;;;-1:-1:-1;38094:157:0;;;;;:::i;:::-;;:::i;31538:33::-;;;;;;;;;;;;;;;;35785:275;;;;;;;;;;-1:-1:-1;35785:275:0;;;;;:::i;:::-;;:::i;11325:492::-;;;;;;;;;;-1:-1:-1;11325:492:0;;;;;:::i;:::-;;:::i;30728:53::-;;;;;;;;;;;;30774:6;30728:53;;9469:93;;;;;;;;;;-1:-1:-1;9469:93:0;;9552:2;3182:36:1;;3170:2;3155:18;9469:93:0;3040:184:1;12226:215:0;;;;;;;;;;-1:-1:-1;12226:215:0;;;;;:::i;:::-;;:::i;45796:358::-;;;;;;;;;;-1:-1:-1;45796:358:0;;;;;:::i;:::-;;:::i;45542:246::-;;;;;;;;;;;;;:::i;30683:38::-;;;;;;;;;;;;;;;30968:33;;;;;;;;;;-1:-1:-1;30968:33:0;;;;;;;;38259:126;;;;;;;;;;-1:-1:-1;38259:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38349:28:0;38325:4;38349:28;;;:19;:28;;;;;;;;;38259:126;36703:335;;;;;;;;;;-1:-1:-1;36703:335:0;;;;;:::i;:::-;;:::i;31425:28::-;;;;;;;;;;;;;;;;31048:31;;;;;;;;;;-1:-1:-1;31048:31:0;;;;;;;;;;;9798:127;;;;;;;;;;-1:-1:-1;9798:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9899:18:0;9872:7;9899:18;;;;;;;;;;;;9798:127;2024:103;;;;;;;;;;;;;:::i;34893:121::-;;;;;;;;;;;;;:::i;36332:167::-;;;;;;;;;;-1:-1:-1;36332:167:0;;;;;:::i;:::-;;:::i;31386:30::-;;;;;;;;;;;;;;;;34729:112;;;;;;;;;;;;;:::i;1373:87::-;;;;;;;;;;-1:-1:-1;1446:6:0;;-1:-1:-1;;;;;1446:6:0;1373:87;;30820:24;;;;;;;;;;-1:-1:-1;30820:24:0;;;;-1:-1:-1;;;;;30820:24:0;;;31498:31;;;;;;;;;;;;;;;;36595:100;;;;;;;;;;-1:-1:-1;36595:100:0;;;;;:::i;:::-;;:::i;8726:104::-;;;;;;;;;;;;;:::i;37586:304::-;;;;;;;;;;-1:-1:-1;37586:304:0;;;;;:::i;:::-;;:::i;31578:27::-;;;;;;;;;;;;;;;;12944:413;;;;;;;;;;-1:-1:-1;12944:413:0;;;;;:::i;:::-;;:::i;10138:175::-;;;;;;;;;;-1:-1:-1;10138:175:0;;;;;:::i;:::-;;:::i;31975:57::-;;;;;;;;;;-1:-1:-1;31975:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31008:33;;;;;;;;;;-1:-1:-1;31008:33:0;;;;;;;;;;;37396:182;;;;;;;;;;-1:-1:-1;37396:182:0;;;;;:::i;:::-;;:::i;36068:256::-;;;;;;;;;;-1:-1:-1;36068:256:0;;;;;:::i;:::-;;:::i;31266:40::-;;;;;;;;;;-1:-1:-1;31266:40:0;;;;;;;;30853:35;;;;;;;;;;;;;;;;35280:497;;;;;;;;;;-1:-1:-1;35280:497:0;;;;;:::i;:::-;;:::i;31315:27::-;;;;;;;;;;;;;;;;10376:151;;;;;;;;;;-1:-1:-1;10376:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10492:18:0;;;10465:7;10492:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10376:151;30895:33;;;;;;;;;;;;;;;;35075:135;;;;;;;;;;;;;:::i;31349:30::-;;;;;;;;;;;;;;;;2282:201;;;;;;;;;;-1:-1:-1;2282:201:0;;;;;:::i;:::-;;:::i;31460:31::-;;;;;;;;;;;;;;;;30935:24;;;;;;;;;;;;;;;;37046:342;1446:6;;-1:-1:-1;;;;;1446:6:0;320:10;1593:23;1585:68;;;;-1:-1:-1;;;1585:68:0;;;;;;;:::i;:::-;;;;;;;;;37171:16:::1;:32:::0;;;37214:16:::1;:32:::0;;;37273:35:::1;37233:13:::0;37190;37273:35:::1;:::i;:::-;37257:13;:51:::0;;;37344:2:::1;-1:-1:-1::0;37327:19:0::1;37319:61;;;::::0;-1:-1:-1;;;37319:61:0;;5206:2:1;37319:61:0::1;::::0;::::1;5188:21:1::0;5245:2;5225:18;;;5218:30;5284:31;5264:18;;;5257:59;5333:18;;37319:61:0::1;5004:353:1::0;37319:61:0::1;37046:342:::0;;:::o;8507:100::-;8561:13;8594:5;8587:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8507:100;:::o;10674:169::-;10757:4;10774:39;320:10;10797:7;10806:6;10774:8;:39::i;:::-;-1:-1:-1;10831:4:0;10674:169;;;;:::o;38094:157::-;1446:6;;-1:-1:-1;;;;;1446:6:0;320:10;1593:23;1585:68;;;;-1:-1:-1;;;1585:68:0;;;;;;;:::i;:::-;38201:9:::1;::::0;38173:38:::1;::::0;-1:-1:-1;;;;;38201:9:0;;::::1;::::0;38173:38;::::1;::::0;::::1;::::0;38201:9:::1;::::0;38173:38:::1;38222:9;:21:::0;;-1:-1:-1;;;;;;38222:21:0::1;-1:-1:-1::0;;;;;38222:21:0;;;::::1;::::0;;;::::1;::::0;;38094:157::o;35785:275::-;1446:6;;-1:-1:-1;;;;;1446:6:0;320:10;1593:23;1585:68;;;;-1:-1:-1;;;1585:68:0;;;;;;;:::i;:::-;35922:4:::1;35914;35893:13;9715:12:::0;;;9627:108;35893:13:::1;:17;::::0;35909:1:::1;35893:17;:::i;:::-;35892:26;;;;:::i;:::-;35891:35;;;;:::i;:::-;35881:6;:45;;35859:142;;;::::0;-1:-1:-1;;;35859:142:0;;6344:2:1;35859:142:0::1;::::0;::::1;6326:21:1::0;6383:2;6363:18;;;6356:30;6422:34;6402:18;;;6395:62;-1:-1:-1;;;6473:18:1;;;6466:45;6528:19;;35859:142:0::1;6142:411:1::0;35859:142:0::1;36035:17;:6:::0;36045::::1;36035:17;:::i;:::-;36012:20;:40:::0;-1:-1:-1;35785:275:0:o;11325:492::-;11465:4;11482:36;11492:6;11500:9;11511:6;11482:9;:36::i;:::-;-1:-1:-1;;;;;11558:19:0;;11531:24;11558:19;;;:11;:19;;;;;;;;320:10;11558:33;;;;;;;;11610:26;;;;11602:79;;;;-1:-1:-1;;;11602:79:0;;6760:2:1;11602:79:0;;;6742:21:1;6799:2;6779:18;;;6772:30;6838:34;6818:18;;;6811:62;-1:-1:-1;;;6889:18:1;;;6882:38;6937:19;;11602:79:0;6558:404:1;11602:79:0;11717:57;11726:6;320:10;11767:6;11748:16;:25;11717:8;:57::i;:::-;-1:-1:-1;11805:4:0;;11325:492;-1:-1:-1;;;;11325:492:0:o;12226:215::-;320:10;12314:4;12363:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12363:34:0;;;;;;;;;;12314:4;;12331:80;;12354:7;;12363:47;;12400:10;;12363:47;:::i;:::-;12331:8;:80::i;45796:358::-;1446:6;;-1:-1:-1;;;;;1446:6:0;320:10;1593:23;1585:68;;;;-1:-1:-1;;;1585:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45886:20:0;::::1;45878:59;;;::::0;-1:-1:-1;;;45878:59:0;;7169:2:1;45878:59:0::1;::::0;::::1;7151:21:1::0;7208:2;7188:18;;;7181:30;7247:28;7227:18;;;7220:56;7293:18;;45878:59:0::1;6967:350:1::0;45878:59:0::1;-1:-1:-1::0;;;;;45956:23:0;::::1;45974:4;45956:23;;45948:64;;;::::0;-1:-1:-1;;;45948:64:0;;7524:2:1;45948:64:0::1;::::0;::::1;7506:21:1::0;7563:2;7543:18;;;7536:30;7602;7582:18;;;7575:58;7650:18;;45948:64:0::1;7322:352:1::0;45948:64:0::1;46050:39;::::0;-1:-1:-1;;;46050:39:0;;46083:4:::1;46050:39;::::0;::::1;1942:51:1::0;46023:24:0::1;::::0;-1:-1:-1;;;;;46050:24:0;::::1;::::0;::::1;::::0;1915:18:1;;46050:39:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46100:46;::::0;-1:-1:-1;;;46100:46:0;;-1:-1:-1;;;;;8060:32:1;;;46100:46:0::1;::::0;::::1;8042:51:1::0;8109:18;;;8102:34;;;46023:66:0;;-1:-1:-1;46100:23:0;;::::1;::::0;::::1;::::0;8015:18:1;;46100:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45867:287;45796:358:::0;;:::o;45542:246::-;1446:6;;-1:-1:-1;;;;;1446:6:0;320:10;1593:23;1585:68;;;;-1:-1:-1;;;1585:68:0;;;;;;;:::i;:::-;45610:46:::1;::::0;-1:-1:-1;;;45610:46:0;;45625:4:::1;45610:46;::::0;::::1;1942:51:1::0;;;45592:15:0::1;::::0;45610:31:::1;::::0;1915:18:1;;45610:46:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45667:51;::::0;-1:-1:-1;;;45667:51:0;;45698:10:::1;45667:51;::::0;::::1;8042::1::0;8109:18;;;8102:34;;;45592:64:0;;-1:-1:-1;45682:4:0::1;::::0;45667:30:::1;::::0;8015:18:1;;45667:51:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;45729:51:0::1;::::0;45737:10:::1;::::0;45758:21:::1;45729:51:::0;::::1;;;::::0;::::1;::::0;;;45758:21;45737:10;45729:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;36703:335:::0;1446:6;;-1:-1:-1;;;;;1446:6:0;320:10;1593:23;1585:68;;;;-1:-1:-1;;;1585:68:0;;;;;;;:::i;:::-;36827:15:::1;:31:::0;;;36869:15:::1;:31:::0;;;36926:33:::1;36887:13:::0;36845;36926:33:::1;:::i;:::-;36911:12;:48:::0;;;36994:2:::1;-1:-1:-1::0;36978:18:0::1;36970:60;;;::::0;-1:-1:-1;;;36970:60:0;;5206:2:1;36970:60:0::1;::::0;::::1;5188:21:1::0;5245:2;5225:18;;;5218:30;5284:31;5264:18;;;5257:59;5333:18;;36970:60:0::1;5004:353:1::0;2024:103:0;1446:6;;-1:-1:-1;;;;;1446:6:0;320:10;1593:23;1585:68;;;;-1:-1:-1;;;1585:68:0;;;;;;;:::i;:::-;2089:30:::1;2116:1;2089:18;:30::i;:::-;2024:103::o:0;34893:121::-;1446:6;;34945:4;;-1:-1:-1;;;;;1446:6:0;320:10;1593:23;1585:68;;;;-1:-1:-1;;;1585:68:0;;;;;;;:::i;:::-;-1:-1:-1;34962:14:0::1;:22:::0;;-1:-1:-1;;34962:22:0::1;::::0;;;34893:121;:::o;36332:167::-;1446:6;;-1:-1:-1;;;;;1446:6:0;320:10;1593:23;1585:68;;;;-1:-1:-1;;;1585:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36445:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;36445:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36332:167::o;34729:112::-;1446:6;;-1:-1:-1;;;;;1446:6:0;320:10;1593:23;1585:68;;;;-1:-1:-1;;;1585:68:0;;;;;;;:::i;:::-;34784:13:::1;:20:::0;;-1:-1:-1;;34815:18:0;;;;;34729:112::o;36595:100::-;1446:6;;-1:-1:-1;;;;;1446:6:0;320:10;1593:23;1585:68;;;;-1:-1:-1;;;1585:68:0;;;;;;;:::i;:::-;36666:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;36666:21:0;;::::1;::::0;;;::::1;::::0;;36595:100::o;8726:104::-;8782:13;8815:7;8808:14;;;;;:::i;37586:304::-;1446:6;;-1:-1:-1;;;;;1446:6:0;320:10;1593:23;1585:68;;;;-1:-1:-1;;;1585:68:0;;;;;;;:::i;:::-;37730:13:::1;-1:-1:-1::0;;;;;37722:21:0::1;:4;-1:-1:-1::0;;;;;37722:21:0::1;;;37700:128;;;::::0;-1:-1:-1;;;37700:128:0;;8599:2:1;37700:128:0::1;::::0;::::1;8581:21:1::0;8638:2;8618:18;;;8611:30;8677:34;8657:18;;;8650:62;8748:27;8728:18;;;8721:55;8793:19;;37700:128:0::1;8397:421:1::0;37700:128:0::1;37841:41;37870:4;37876:5;37841:28;:41::i;12944:413::-:0;320:10;13037:4;13081:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13081:34:0;;;;;;;;;;13134:35;;;;13126:85;;;;-1:-1:-1;;;13126:85:0;;9025:2:1;13126:85:0;;;9007:21:1;9064:2;9044:18;;;9037:30;9103:34;9083:18;;;9076:62;-1:-1:-1;;;9154:18:1;;;9147:35;9199:19;;13126:85:0;8823:401:1;13126:85:0;13247:67;320:10;13270:7;13298:15;13279:16;:34;13247:8;:67::i;:::-;-1:-1:-1;13345:4:0;;12944:413;-1:-1:-1;;;12944:413:0:o;10138:175::-;10224:4;10241:42;320:10;10265:9;10276:6;10241:9;:42::i;37396:182::-;1446:6;;-1:-1:-1;;;;;1446:6:0;320:10;1593:23;1585:68;;;;-1:-1:-1;;;1585:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37481:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37481:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37536:34;;1465:41:1;;;37536:34:0::1;::::0;1438:18:1;37536:34:0::1;;;;;;;37396:182:::0;;:::o;36068:256::-;1446:6;;-1:-1:-1;;;;;1446:6:0;320:10;1593:23;1585:68;;;;-1:-1:-1;;;1585:68:0;;;;;;;:::i;:::-;36208:4:::1;36200;36179:13;9715:12:::0;;;9627:108;36179:13:::1;:17;::::0;36195:1:::1;36179:17;:::i;:::-;36178:26;;;;:::i;:::-;36177:35;;;;:::i;:::-;36167:6;:45;;36145:131;;;::::0;-1:-1:-1;;;36145:131:0;;9431:2:1;36145:131:0::1;::::0;::::1;9413:21:1::0;9470:2;9450:18;;;9443:30;9509:34;9489:18;;;9482:62;-1:-1:-1;;;9560:18:1;;;9553:34;9604:19;;36145:131:0::1;9229:400:1::0;36145:131:0::1;36299:17;:6:::0;36309::::1;36299:17;:::i;:::-;36287:9;:29:::0;-1:-1:-1;36068:256:0:o;35280:497::-;1446:6;;35388:4;;-1:-1:-1;;;;;1446:6:0;320:10;1593:23;1585:68;;;;-1:-1:-1;;;1585:68:0;;;;;;;:::i;:::-;35467:6:::1;35446:13;9715:12:::0;;;9627:108;35446:13:::1;:17;::::0;35462:1:::1;35446:17;:::i;:::-;35445:28;;;;:::i;:::-;35432:9;:41;;35410:144;;;::::0;-1:-1:-1;;;35410:144:0;;9836:2:1;35410:144:0::1;::::0;::::1;9818:21:1::0;9875:2;9855:18;;;9848:30;9914:34;9894:18;;;9887:62;-1:-1:-1;;;9965:18:1;;;9958:51;10026:19;;35410:144:0::1;9634:417:1::0;35410:144:0::1;35622:4;35601:13;9715:12:::0;;;9627:108;35601:13:::1;:17;::::0;35617:1:::1;35601:17;:::i;:::-;35600:26;;;;:::i;:::-;35587:9;:39;;35565:141;;;::::0;-1:-1:-1;;;35565:141:0;;10258:2:1;35565:141:0::1;::::0;::::1;10240:21:1::0;10297:2;10277:18;;;10270:30;10336:34;10316:18;;;10309:62;-1:-1:-1;;;10387:18:1;;;10380:50;10447:19;;35565:141:0::1;10056:416:1::0;35565:141:0::1;-1:-1:-1::0;35717:18:0::1;:30:::0;35765:4:::1;::::0;35280:497::o;35075:135::-;1446:6;;35135:4;;-1:-1:-1;;;;;1446:6:0;320:10;1593:23;1585:68;;;;-1:-1:-1;;;1585:68:0;;;;;;;:::i;:::-;-1:-1:-1;35152:20:0::1;:28:::0;;-1:-1:-1;;35152:28:0::1;::::0;;;35075:135;:::o;2282:201::-;1446:6;;-1:-1:-1;;;;;1446:6:0;320:10;1593:23;1585:68;;;;-1:-1:-1;;;1585:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2371:22:0;::::1;2363:73;;;::::0;-1:-1:-1;;;2363:73:0;;10679:2:1;2363:73:0::1;::::0;::::1;10661:21:1::0;10718:2;10698:18;;;10691:30;10757:34;10737:18;;;10730:62;-1:-1:-1;;;10808:18:1;;;10801:36;10854:19;;2363:73:0::1;10477:402:1::0;2363:73:0::1;2447:28;2466:8;2447:18;:28::i;:::-;2282:201:::0;:::o;16628:380::-;-1:-1:-1;;;;;16764:19:0;;16756:68;;;;-1:-1:-1;;;16756:68:0;;11086:2:1;16756:68:0;;;11068:21:1;11125:2;11105:18;;;11098:30;11164:34;11144:18;;;11137:62;-1:-1:-1;;;11215:18:1;;;11208:34;11259:19;;16756:68:0;10884:400:1;16756:68:0;-1:-1:-1;;;;;16843:21:0;;16835:68;;;;-1:-1:-1;;;16835:68:0;;11491:2:1;16835:68:0;;;11473:21:1;11530:2;11510:18;;;11503:30;11569:34;11549:18;;;11542:62;-1:-1:-1;;;11620:18:1;;;11613:32;11662:19;;16835:68:0;11289:398:1;16835:68:0;-1:-1:-1;;;;;16916:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16968:32;;2150:25:1;;;16968:32:0;;2123:18:1;16968:32:0;;;;;;;16628:380;;;:::o;38393:4576::-;-1:-1:-1;;;;;38525:18:0;;38517:68;;;;-1:-1:-1;;;38517:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38604:16:0;;38596:64;;;;-1:-1:-1;;;38596:64:0;;;;;;;:::i;:::-;38677:11;38673:93;;38705:28;38721:4;38727:2;38731:1;38705:15;:28::i;:::-;38393:4576;;;:::o;38673:93::-;38782:14;;;;38778:2496;;;1446:6;;-1:-1:-1;;;;;38835:15:0;;;1446:6;;38835:15;;;;:49;;-1:-1:-1;1446:6:0;;-1:-1:-1;;;;;38871:13:0;;;1446:6;;38871:13;;38835:49;:86;;;;-1:-1:-1;;;;;;38905:16:0;;;;38835:86;:128;;;;-1:-1:-1;;;;;;38942:21:0;;38956:6;38942:21;;38835:128;:158;;;;-1:-1:-1;38985:8:0;;-1:-1:-1;;;38985:8:0;;;;38984:9;38835:158;38813:2450;;;39033:13;;;;;;;39028:223;;-1:-1:-1;;;;;39105:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39134:23:0;;;;;;:19;:23;;;;;;;;39105:52;39071:160;;;;-1:-1:-1;;;39071:160:0;;12704:2:1;39071:160:0;;;12686:21:1;12743:2;12723:18;;;12716:30;-1:-1:-1;;;12762:18:1;;;12755:52;12824:18;;39071:160:0;12502:346:1;39071:160:0;39407:20;;;;39403:650;;;1446:6;;-1:-1:-1;;;;;39482:13:0;;;1446:6;;39482:13;;;;:72;;;39538:15;-1:-1:-1;;;;;39524:30:0;:2;-1:-1:-1;;;;;39524:30:0;;;39482:72;:129;;;;;39597:13;-1:-1:-1;;;;;39583:28:0;:2;-1:-1:-1;;;;;39583:28:0;;;39482:129;39452:582;;;39729:9;39700:39;;;;:28;:39;;;;;;39779:12;;39700:43;;39742:1;39700:43;:::i;:::-;:91;39662:267;;;;-1:-1:-1;;;39662:267:0;;13055:2:1;39662:267:0;;;13037:21:1;13094:2;13074:18;;;13067:30;13133:34;13113:18;;;13106:62;13204:34;13184:18;;;13177:62;-1:-1:-1;;;13255:19:1;;;13248:45;13310:19;;39662:267:0;12853:482:1;39662:267:0;39985:9;39956:39;;;;:28;:39;;;;;39998:12;39956:54;;39452:582;-1:-1:-1;;;;;40127:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40184:35:0;;;;;;:31;:35;;;;;;;;40183:36;40127:92;40101:1147;;;40306:20;;40296:6;:30;;40262:169;;;;-1:-1:-1;;;40262:169:0;;13542:2:1;40262:169:0;;;13524:21:1;13581:2;13561:18;;;13554:30;13620:34;13600:18;;;13593:62;-1:-1:-1;;;13671:18:1;;;13664:51;13732:19;;40262:169:0;13340:417:1;40262:169:0;40514:9;;-1:-1:-1;;;;;9899:18:0;;9872:7;9899:18;;;;;;;;;;;40488:22;;:6;:22;:::i;:::-;:35;;40454:140;;;;-1:-1:-1;;;40454:140:0;;13964:2:1;40454:140:0;;;13946:21:1;14003:2;13983:18;;;13976:30;-1:-1:-1;;;14022:18:1;;;14015:49;14081:18;;40454:140:0;13762:343:1;40454:140:0;40101:1147;;;-1:-1:-1;;;;;40692:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;40747:37:0;;;;;;:31;:37;;;;;;;;40746:38;40692:92;40666:582;;;40871:20;;40861:6;:30;;40827:170;;;;-1:-1:-1;;;40827:170:0;;14312:2:1;40827:170:0;;;14294:21:1;14351:2;14331:18;;;14324:30;14390:34;14370:18;;;14363:62;-1:-1:-1;;;14441:18:1;;;14434:52;14503:19;;40827:170:0;14110:418:1;40666:582:0;-1:-1:-1;;;;;41028:35:0;;;;;;:31;:35;;;;;;;;41023:225;;41148:9;;-1:-1:-1;;;;;9899:18:0;;9872:7;9899:18;;;;;;;;;;;41122:22;;:6;:22;:::i;:::-;:35;;41088:140;;;;-1:-1:-1;;;41088:140:0;;13964:2:1;41088:140:0;;;13946:21:1;14003:2;13983:18;;;13976:30;-1:-1:-1;;;14022:18:1;;;14015:49;14081:18;;41088:140:0;13762:343:1;41088:140:0;41335:4;41286:28;9899:18;;;;;;;;;;;41393;;41369:42;;;;;;;41442:35;;-1:-1:-1;41466:11:0;;;;;;;41442:35;:61;;;;-1:-1:-1;41495:8:0;;-1:-1:-1;;;41495:8:0;;;;41494:9;41442:61;:110;;;;-1:-1:-1;;;;;;41521:31:0;;;;;;:25;:31;;;;;;;;41520:32;41442:110;:153;;;;-1:-1:-1;;;;;;41570:25:0;;;;;;:19;:25;;;;;;;;41569:26;41442:153;:194;;;;-1:-1:-1;;;;;;41613:23:0;;;;;;:19;:23;;;;;;;;41612:24;41442:194;41424:326;;;41663:8;:15;;-1:-1:-1;;;;41663:15:0;-1:-1:-1;;;41663:15:0;;;41695:10;:8;:10::i;:::-;41722:8;:16;;-1:-1:-1;;;;41722:16:0;;;41424:326;41778:8;;-1:-1:-1;;;;;41888:25:0;;41762:12;41888:25;;;:19;:25;;;;;;41778:8;-1:-1:-1;;;41778:8:0;;;;;41777:9;;41888:25;;:52;;-1:-1:-1;;;;;;41917:23:0;;;;;;:19;:23;;;;;;;;41888:52;41884:100;;;-1:-1:-1;41967:5:0;41884:100;41996:12;42101:7;42097:819;;;-1:-1:-1;;;;;42153:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42202:1;42186:13;;:17;42153:50;42149:618;;;42231:34;42261:3;42231:25;42242:13;;42231:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;42224:41;;42334:13;;42314:16;;42307:4;:23;;;;:::i;:::-;42306:41;;;;:::i;:::-;42284:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42410:13:0;;42390:16;;42383:23;;:4;:23;:::i;:::-;42382:41;;;;:::i;:::-;42366:12;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;42149:618:0;;-1:-1:-1;42149:618:0;;-1:-1:-1;;;;;42485:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42535:1;42520:12;;:16;42485:51;42481:286;;;42564:33;42593:3;42564:24;42575:12;;42564:6;:10;;:24;;;;:::i;:33::-;42557:40;;42665:12;;42646:15;;42639:4;:22;;;;:::i;:::-;42638:39;;;;:::i;:::-;42616:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42739:12:0;;42720:15;;42713:22;;:4;:22;:::i;:::-;42712:39;;;;:::i;:::-;42696:12;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;42481:286:0;42787:8;;42783:91;;42816:42;42832:4;42846;42853;42816:15;:42::i;:::-;42890:14;42900:4;42890:14;;:::i;:::-;;;42097:819;42928:33;42944:4;42950:2;42954:6;42928:15;:33::i;:::-;38506:4463;;;;38393:4576;;;:::o;2643:191::-;2736:6;;;-1:-1:-1;;;;;2753:17:0;;;-1:-1:-1;;;;;;2753:17:0;;;;;;;2786:40;;2736:6;;;2753:17;2736:6;;2786:40;;2717:16;;2786:40;2706:128;2643:191;:::o;37898:188::-;-1:-1:-1;;;;;37981:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;37981:39:0;;;;;;;;;;38038:40;;37981:39;;:31;38038:40;;;37898:188;;:::o;13847:733::-;-1:-1:-1;;;;;13987:20:0;;13979:70;;;;-1:-1:-1;;;13979:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14068:23:0;;14060:71;;;;-1:-1:-1;;;14060:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14228:17:0;;14204:21;14228:17;;;;;;;;;;;14264:23;;;;14256:74;;;;-1:-1:-1;;;14256:74:0;;14865:2:1;14256:74:0;;;14847:21:1;14904:2;14884:18;;;14877:30;14943:34;14923:18;;;14916:62;-1:-1:-1;;;14994:18:1;;;14987:36;15040:19;;14256:74:0;14663:402:1;14256:74:0;-1:-1:-1;;;;;14366:17:0;;;:9;:17;;;;;;;;;;;14386:22;;;14366:42;;14430:20;;;;;;;;:30;;14402:6;;14366:9;14430:30;;14402:6;;14430:30;:::i;:::-;;;;;;;;14495:9;-1:-1:-1;;;;;14478:35:0;14487:6;-1:-1:-1;;;;;14478:35:0;;14506:6;14478:35;;;;2150:25:1;;2138:2;2123:18;;2004:177;14478:35:0;;;;;;;;14526:46;38393:4576;44095:1439;44178:4;44134:23;9899:18;;;;;;;;;;;44134:50;;44195:25;44257:12;;44223:18;;:46;;;;:::i;:::-;44195:74;-1:-1:-1;44280:12:0;44309:20;;;:46;;-1:-1:-1;44333:22:0;;44309:46;44305:85;;;44372:7;;;44095:1439::o;44305:85::-;44424:18;;:23;;44445:2;44424:23;:::i;:::-;44406:15;:41;44402:115;;;44482:18;;:23;;44503:2;44482:23;:::i;:::-;44464:41;;44402:115;44578:23;44691:1;44658:17;44623:18;;44605:15;:36;;;;:::i;:::-;44604:71;;;;:::i;:::-;:88;;;;:::i;:::-;44578:114;-1:-1:-1;44703:26:0;44732:36;:15;44578:114;44732:19;:36::i;:::-;44703:65;-1:-1:-1;44809:21:0;44843:36;44703:65;44843:16;:36::i;:::-;44892:18;44913:44;:21;44939:17;44913:25;:44::i;:::-;44892:65;;44970:17;44990:51;45023:17;44990:28;45005:12;;44990:10;:14;;:28;;;;:::i;:51::-;44970:71;-1:-1:-1;45054:23:0;45080:22;44970:71;45080:10;:22;:::i;:::-;45136:1;45115:18;:22;;;45148:12;:16;;;45199:9;;45191:45;;45054:48;;-1:-1:-1;;;;;;45199:9:0;;45222;;45191:45;45136:1;45191:45;45222:9;45199;45191:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45177:59:0;;-1:-1:-1;;45253:19:0;;;;;:42;;;45294:1;45276:15;:19;45253:42;45249:278;;;45312:46;45325:15;45342;45312:12;:46::i;:::-;45482:18;;45378:137;;;15482:25:1;;;15538:2;15523:18;;15516:34;;;15566:18;;;15559:34;;;;45378:137:0;;;;;;15470:2:1;45378:137:0;;;45249:278;44123:1411;;;;;;;;;44095:1439::o;21760:98::-;21818:7;21845:5;21849:1;21845;:5;:::i;:::-;21838:12;21760:98;-1:-1:-1;;;21760:98:0:o;22159:::-;22217:7;22244:5;22248:1;22244;:5;:::i;21403:98::-;21461:7;21488:5;21492:1;21488;:5;:::i;42977:589::-;43127:16;;;43141:1;43127:16;;;;;;;;43103:21;;43127:16;;;;;;;;;;-1:-1:-1;43127:16:0;43103:40;;43172:4;43154;43159:1;43154:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43154:23:0;;;-1:-1:-1;;;;;43154:23:0;;;;;43198:15;-1:-1:-1;;;;;43198:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43188:4;43193:1;43188:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;43188:32:0;;;-1:-1:-1;;;;;43188:32:0;;;;;43233:62;43250:4;43265:15;43283:11;43233:8;:62::i;:::-;43334:224;;-1:-1:-1;;;43334:224:0;;-1:-1:-1;;;;;43334:15:0;:66;;;;:224;;43415:11;;43441:1;;43485:4;;43512;;43532:15;;43334:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43032:534;42977:589;:::o;43574:513::-;43722:62;43739:4;43754:15;43772:11;43722:8;:62::i;:::-;43827:15;-1:-1:-1;;;;;43827:31:0;;43866:9;43899:4;43919:11;43945:1;43988;44031:7;1446:6;;-1:-1:-1;;;;;1446:6:0;;1373:87;44031:7;43827:252;;;;;;-1:-1:-1;;;;;;43827:252:0;;;-1:-1:-1;;;;;17468:15:1;;;43827:252:0;;;17450:34:1;17500:18;;;17493:34;;;;17543:18;;;17536:34;;;;17586:18;;;17579:34;17650:15;;;17629:19;;;17622:44;44053:15:0;17682:19:1;;;17675:35;17384:19;;43827:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43574:513;;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:597::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;705:6;702:1;699:13;696:91;;;775:1;770:2;761:6;750:9;746:22;742:31;735:42;696:91;-1:-1:-1;848:2:1;827:15;-1:-1:-1;;823:29:1;808:45;;;;855:2;804:54;;267:597;-1:-1:-1;;;267:597:1:o;869:131::-;-1:-1:-1;;;;;944:31:1;;934:42;;924:70;;990:1;987;980:12;1005:315;1073:6;1081;1134:2;1122:9;1113:7;1109:23;1105:32;1102:52;;;1150:1;1147;1140:12;1102:52;1189:9;1176:23;1208:31;1233:5;1208:31;:::i;:::-;1258:5;1310:2;1295:18;;;;1282:32;;-1:-1:-1;;;1005:315:1:o;1517:247::-;1576:6;1629:2;1617:9;1608:7;1604:23;1600:32;1597:52;;;1645:1;1642;1635:12;1597:52;1684:9;1671:23;1703:31;1728:5;1703:31;:::i;2186:180::-;2245:6;2298:2;2286:9;2277:7;2273:23;2269:32;2266:52;;;2314:1;2311;2304:12;2266:52;-1:-1:-1;2337:23:1;;2186:180;-1:-1:-1;2186:180:1:o;2371:456::-;2448:6;2456;2464;2517:2;2505:9;2496:7;2492:23;2488:32;2485:52;;;2533:1;2530;2523:12;2485:52;2572:9;2559:23;2591:31;2616:5;2591:31;:::i;:::-;2641:5;-1:-1:-1;2698:2:1;2683:18;;2670:32;2711:33;2670:32;2711:33;:::i;:::-;2371:456;;2763:7;;-1:-1:-1;;;2817:2:1;2802:18;;;;2789:32;;2371:456::o;3229:388::-;3297:6;3305;3358:2;3346:9;3337:7;3333:23;3329:32;3326:52;;;3374:1;3371;3364:12;3326:52;3413:9;3400:23;3432:31;3457:5;3432:31;:::i;:::-;3482:5;-1:-1:-1;3539:2:1;3524:18;;3511:32;3552:33;3511:32;3552:33;:::i;:::-;3604:7;3594:17;;;3229:388;;;;;:::o;3622:118::-;3708:5;3701:13;3694:21;3687:5;3684:32;3674:60;;3730:1;3727;3720:12;3745:382;3810:6;3818;3871:2;3859:9;3850:7;3846:23;3842:32;3839:52;;;3887:1;3884;3877:12;3839:52;3926:9;3913:23;3945:31;3970:5;3945:31;:::i;:::-;3995:5;-1:-1:-1;4052:2:1;4037:18;;4024:32;4065:30;4024:32;4065:30;:::i;4132:241::-;4188:6;4241:2;4229:9;4220:7;4216:23;4212:32;4209:52;;;4257:1;4254;4247:12;4209:52;4296:9;4283:23;4315:28;4337:5;4315:28;:::i;4378:356::-;4580:2;4562:21;;;4599:18;;;4592:30;4658:34;4653:2;4638:18;;4631:62;4725:2;4710:18;;4378:356::o;4739:127::-;4800:10;4795:3;4791:20;4788:1;4781:31;4831:4;4828:1;4821:15;4855:4;4852:1;4845:15;4871:128;4911:3;4942:1;4938:6;4935:1;4932:13;4929:39;;;4948:18;;:::i;:::-;-1:-1:-1;4984:9:1;;4871:128::o;5362:380::-;5441:1;5437:12;;;;5484;;;5505:61;;5559:4;5551:6;5547:17;5537:27;;5505:61;5612:2;5604:6;5601:14;5581:18;5578:38;5575:161;;;5658:10;5653:3;5649:20;5646:1;5639:31;5693:4;5690:1;5683:15;5721:4;5718:1;5711:15;5575:161;;5362:380;;;:::o;5747:168::-;5787:7;5853:1;5849;5845:6;5841:14;5838:1;5835:21;5830:1;5823:9;5816:17;5812:45;5809:71;;;5860:18;;:::i;:::-;-1:-1:-1;5900:9:1;;5747:168::o;5920:217::-;5960:1;5986;5976:132;;6030:10;6025:3;6021:20;6018:1;6011:31;6065:4;6062:1;6055:15;6093:4;6090:1;6083:15;5976:132;-1:-1:-1;6122:9:1;;5920:217::o;7679:184::-;7749:6;7802:2;7790:9;7781:7;7777:23;7773:32;7770:52;;;7818:1;7815;7808:12;7770:52;-1:-1:-1;7841:16:1;;7679:184;-1:-1:-1;7679:184:1:o;8147:245::-;8214:6;8267:2;8255:9;8246:7;8242:23;8238:32;8235:52;;;8283:1;8280;8273:12;8235:52;8315:9;8309:16;8334:28;8356:5;8334:28;:::i;11692:401::-;11894:2;11876:21;;;11933:2;11913:18;;;11906:30;11972:34;11967:2;11952:18;;11945:62;-1:-1:-1;;;12038:2:1;12023:18;;12016:35;12083:3;12068:19;;11692:401::o;12098:399::-;12300:2;12282:21;;;12339:2;12319:18;;;12312:30;12378:34;12373:2;12358:18;;12351:62;-1:-1:-1;;;12444:2:1;12429:18;;12422:33;12487:3;12472:19;;12098:399::o;14533:125::-;14573:4;14601:1;14598;14595:8;14592:34;;;14606:18;;:::i;:::-;-1:-1:-1;14643:9:1;;14533:125::o;15736:127::-;15797:10;15792:3;15788:20;15785:1;15778:31;15828:4;15825:1;15818:15;15852:4;15849:1;15842:15;15868:251;15938:6;15991:2;15979:9;15970:7;15966:23;15962:32;15959:52;;;16007:1;16004;15997:12;15959:52;16039:9;16033:16;16058:31;16083:5;16058:31;:::i;16124:980::-;16386:4;16434:3;16423:9;16419:19;16465:6;16454:9;16447:25;16491:2;16529:6;16524:2;16513:9;16509:18;16502:34;16572:3;16567:2;16556:9;16552:18;16545:31;16596:6;16631;16625:13;16662:6;16654;16647:22;16700:3;16689:9;16685:19;16678:26;;16739:2;16731:6;16727:15;16713:29;;16760:1;16770:195;16784:6;16781:1;16778:13;16770:195;;;16849:13;;-1:-1:-1;;;;;16845:39:1;16833:52;;16940:15;;;;16905:12;;;;16881:1;16799:9;16770:195;;;-1:-1:-1;;;;;;;17021:32:1;;;;17016:2;17001:18;;16994:60;-1:-1:-1;;;17085:3:1;17070:19;17063:35;16982:3;16124:980;-1:-1:-1;;;16124:980:1:o;17721:306::-;17809:6;17817;17825;17878:2;17866:9;17857:7;17853:23;17849:32;17846:52;;;17894:1;17891;17884:12;17846:52;17923:9;17917:16;17907:26;;17973:2;17962:9;17958:18;17952:25;17942:35;;18017:2;18006:9;18002:18;17996:25;17986:35;;17721:306;;;;;:::o

Swarm Source

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