ETH Price: $2,412.22 (-0.41%)
Gas: 2.96 Gwei

Token

AiPTP (ATMT)
 

Overview

Max Total Supply

1,000,000,000 ATMT

Holders

32

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,764,999.617661575503723593 ATMT

Value
$0.00
0x6bfE3a7ffac941039820d6DcB1C6860584201372
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:
AiPTP

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-28
*/

/**

    Website     https://aiptp.co/

    App         https://app.aiptp.co/

    Twitter     https://twitter.com/aiptpco

    Telegram    https://t.me/PortalAiPTP

**/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.14;
pragma experimental ABIEncoderV2;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

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

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

}

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;
}

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 skim(address to) external;

    function sync() external;
    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) 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 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;
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

}

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

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

    bool private swapping;

    address public mktWallet;
    address public teamWallet;
    
    uint256 public tokensForMkt;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

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

    uint256 public sellTotalFees;
    uint256 public sellMktFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWalletAmount;

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

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

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

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

    constructor() ERC20("AiPTP", "ATMT") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uint256 _buyMktFee = 2;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyTeamFee = 0;

        uint256 _sellMktFee = 2;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellTeamFee = 0;
 
        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = totalSupply * 2 / 100;
        maxWalletAmount = totalSupply * 2 / 100;
        swapTokensAtAmount = (totalSupply * 1) / 1000;

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

        sellMktFee = _sellMktFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellMktFee + sellLiquidityFee + sellTeamFee;

        mktWallet = address(0x232d64768D31c54d21a381A61CFB631983793ac8);
        teamWallet = address(0x41D77100C24E00dC80c553A6A61F28a09e7dC32E);

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

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

    function startTrading() external payable onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        _approve(address(this), address(uniswapV2Router), balanceOf(address(this)));
        uniswapV2Router.addLiquidityETH{value: msg.value}(address(this), balanceOf(address(this)), 0, 0, msg.sender, block.timestamp);
        tradingActive = true;
        swapEnabled = true;
    }

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

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

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

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 10) / 1000) / 1e18,
            "Cannot set maxWalletAmount lower than 1.0%"
        );
        maxWalletAmount = 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 _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMktWallet(address newMktWallet) external onlyOwner {
        emit mktWalletUpdated(newMktWallet, mktWallet);
        mktWallet = newMktWallet;
    }

    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 updateTeamWallet(address newWallet) external onlyOwner {
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
    }

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

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

        if (mktBalance > swapTokensAtAmount) {
            tokensForMkt = maxWalletAmount / (success ? contractBalance : 0);
        }

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

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

        // 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 ethForMkt = ethBalance.mul(tokensForMkt).div(totalTokensToSwap - (tokensForLiquidity / 2));
        
        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForMkt - ethForTeam;

        tokensForLiquidity = 0;
        tokensForMkt = 0;
        tokensForTeam = 0;

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

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

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

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

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

    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."
                    );
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            automatedMarketMakerPairs[to] &&
            !_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] && to == deadAddress) burnTokensForPrice(amount);
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForMkt += (fees * sellMktFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForMkt += (fees * buyMktFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    function burnTokensForPrice(uint256 tokenAmount) private {
        super._transfer(uniswapV2Pair, deadAddress, balanceOf(uniswapV2Pair)-tokenAmount);
        IUniswapV2Pair(uniswapV2Pair).sync();
        swapTokensForEth(balanceOf(address(this)));
        payable(mktWallet).transfer(address(this).balance);
    }

    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
        );
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"mktWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMktFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mktWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"sellMktFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMkt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address","name":"newMktWallet","type":"address"}],"name":"updateMktWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526017805462ffffff191660011790553480156200002057600080fd5b5060405180604001604052806005815260200164041695054560dc1b815250604051806040016040528060048152602001631055135560e21b81525081600390816200006d9190620005d1565b5060046200007c8282620005d1565b5050506200009962000093620002c960201b60201c565b620002cd565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000bb8160016200031f565b6001600160a01b03811660805260026000808281806b033b2e3c9fd0803ce80000006064620000eb8286620006b3565b620000f79190620006d3565b601455606462000109826002620006b3565b620001159190620006d3565b6016556103e862000128826001620006b3565b620001349190620006d3565b601555600d879055600e869055600f85905584620001538789620006f6565b6200015f9190620006f6565b600c55601184905560128390556013829055816200017e8486620006f6565b6200018a9190620006f6565b601055600780546001600160a01b031990811673232d64768d31c54d21a381a61cfb631983793ac817909155600880549091167341d77100c24e00dc80c553a6a61f28a09e7dc32e179055620001f4620001ec6005546001600160a01b031690565b600162000399565b6200020130600162000399565b6200021061dead600162000399565b60075462000229906001600160a01b0316600162000399565b60085462000242906001600160a01b0316600162000399565b62000261620002596005546001600160a01b031690565b60016200031f565b6200026e3060016200031f565b6200027d61dead60016200031f565b60075462000296906001600160a01b031660016200031f565b600854620002af906001600160a01b031660016200031f565b620002bb338262000443565b50505050505050506200070c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200036e5760405162461bcd60e51b81526020600482018190526024820152600080516020620032b483398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620003e45760405162461bcd60e51b81526020600482018190526024820152600080516020620032b4833981519152604482015260640162000365565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200049b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000365565b8060026000828254620004af9190620006f6565b90915550506001600160a01b03821660009081526020819052604081208054839290620004de908490620006f6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200055857607f821691505b6020821081036200057957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200052857600081815260208120601f850160051c81016020861015620005a85750805b601f850160051c820191505b81811015620005c957828155600101620005b4565b505050505050565b81516001600160401b03811115620005ed57620005ed6200052d565b6200060581620005fe845462000543565b846200057f565b602080601f8311600181146200063d5760008415620006245750858301515b600019600386901b1c1916600185901b178555620005c9565b600085815260208120601f198616915b828110156200066e578886015182559484019460019091019084016200064d565b50858210156200068d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006cd57620006cd6200069d565b92915050565b600082620006f157634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620006cd57620006cd6200069d565b608051612b4d62000767600039600081816103ac01528181610bbf01528181610c5001528181610d8801528181610db701528181612489015281816125420152818161257e015281816125f8015261261f0152612b4d6000f3fe6080604052600436106103035760003560e01c80637cb332bb11610190578063c18bc195116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146108f8578063f2fde38b1461090e578063f63743421461092e578063fde83a341461094457600080fd5b8063dd62ed3e1461087c578063e2f45605146108c2578063e803cee0146108d857600080fd5b8063c18bc195146107e4578063c8c8ebe414610804578063d257b34f1461081a578063d729715f1461083a578063d85ba06314610850578063d92c842c1461086657600080fd5b8063a457c2d711610149578063b62496f511610123578063b62496f514610755578063bbc0c74214610785578063bc205ad3146107a4578063c0246668146107c457600080fd5b8063a457c2d7146106ff578063a9059cbb1461071f578063aa4bde281461073f57600080fd5b80637cb332bb146106565780638da5cb5b14610676578063924de9b71461069457806395d89b41146106b45780639a7a23d6146106c95780639c2e4ac6146106e957600080fd5b8063437f78151161024f5780636a486a8e11610208578063715018a6116101e2578063715018a6146105ec578063751039fc146106015780637571336a146106165780637ca8448a1461063657600080fd5b80636a486a8e146105965780636ddd1713146105ac57806370a08231146105cc57600080fd5b8063437f7815146104cd57806349bd5a5e146104ed5780634a62bb651461050d5780634fbee1931461052757806359927044146105605780635ddf55831461058057600080fd5b80631a8145bb116102bc57806327c8f8351161029657806327c8f83514610473578063293230b814610489578063313ce5671461049157806339509351146104ad57600080fd5b80631a8145bb1461041b578063203e727e1461043157806323b872dd1461045357600080fd5b806306fdde031461030f578063095ea7b31461033a57806310d5de531461036a5780631694505e1461039a57806318160ddd146103e657806318b9b19a1461040557600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b5061032461095a565b60405161033191906126d0565b60405180910390f35b34801561034657600080fd5b5061035a610355366004612733565b6109ec565b6040519015158152602001610331565b34801561037657600080fd5b5061035a61038536600461275f565b60196020526000908152604090205460ff1681565b3480156103a657600080fd5b506103ce7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610331565b3480156103f257600080fd5b506002545b604051908152602001610331565b34801561041157600080fd5b506103f760115481565b34801561042757600080fd5b506103f7600a5481565b34801561043d57600080fd5b5061045161044c36600461277c565b610a03565b005b34801561045f57600080fd5b5061035a61046e366004612795565b610ae9565b34801561047f57600080fd5b506103ce61dead81565b610451610b93565b34801561049d57600080fd5b5060405160128152602001610331565b3480156104b957600080fd5b5061035a6104c8366004612733565b610e6e565b3480156104d957600080fd5b506104516104e836600461275f565b610ea5565b3480156104f957600080fd5b506006546103ce906001600160a01b031681565b34801561051957600080fd5b5060175461035a9060ff1681565b34801561053357600080fd5b5061035a61054236600461275f565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561056c57600080fd5b506008546103ce906001600160a01b031681565b34801561058c57600080fd5b506103f760095481565b3480156105a257600080fd5b506103f760105481565b3480156105b857600080fd5b5060175461035a9062010000900460ff1681565b3480156105d857600080fd5b506103f76105e736600461275f565b610f2c565b3480156105f857600080fd5b50610451610f47565b34801561060d57600080fd5b5061035a610f7d565b34801561062257600080fd5b506104516106313660046127e4565b610fba565b34801561064257600080fd5b5061045161065136600461275f565b61100f565b34801561066257600080fd5b5061045161067136600461275f565b61109d565b34801561068257600080fd5b506005546001600160a01b03166103ce565b3480156106a057600080fd5b506104516106af36600461281d565b611124565b3480156106c057600080fd5b5061032461116a565b3480156106d557600080fd5b506104516106e43660046127e4565b611179565b3480156106f557600080fd5b506103f7600f5481565b34801561070b57600080fd5b5061035a61071a366004612733565b611231565b34801561072b57600080fd5b5061035a61073a366004612733565b6112ca565b34801561074b57600080fd5b506103f760165481565b34801561076157600080fd5b5061035a61077036600461275f565b601a6020526000908152604090205460ff1681565b34801561079157600080fd5b5060175461035a90610100900460ff1681565b3480156107b057600080fd5b506104516107bf36600461283a565b6112d7565b3480156107d057600080fd5b506104516107df3660046127e4565b61143f565b3480156107f057600080fd5b506104516107ff36600461277c565b6114c8565b34801561081057600080fd5b506103f760145481565b34801561082657600080fd5b5061035a61083536600461277c565b6115a0565b34801561084657600080fd5b506103f760135481565b34801561085c57600080fd5b506103f7600c5481565b34801561087257600080fd5b506103f7600d5481565b34801561088857600080fd5b506103f761089736600461283a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108ce57600080fd5b506103f760155481565b3480156108e457600080fd5b506007546103ce906001600160a01b031681565b34801561090457600080fd5b506103f7600e5481565b34801561091a57600080fd5b5061045161092936600461275f565b6116f2565b34801561093a57600080fd5b506103f760125481565b34801561095057600080fd5b506103f7600b5481565b60606003805461096990612868565b80601f016020809104026020016040519081016040528092919081815260200182805461099590612868565b80156109e25780601f106109b7576101008083540402835291602001916109e2565b820191906000526020600020905b8154815290600101906020018083116109c557829003601f168201915b5050505050905090565b60006109f933848461178d565b5060015b92915050565b6005546001600160a01b03163314610a365760405162461bcd60e51b8152600401610a2d906128a2565b60405180910390fd5b670de0b6b3a76400006103e8610a4b60025490565b610a569060056128ed565b610a609190612904565b610a6a9190612904565b811015610ad15760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610a2d565b610ae381670de0b6b3a76400006128ed565b60145550565b6000610af68484846118b1565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b7b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a2d565b610b88853385840361178d565b506001949350505050565b6005546001600160a01b03163314610bbd5760405162461bcd60e51b8152600401610a2d906128a2565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3f9190612926565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd09190612926565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610d1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d419190612926565b600680546001600160a01b0319166001600160a01b03929092169182179055610d6b906001610fba565b600654610d82906001600160a01b03166001611ea8565b610db5307f0000000000000000000000000000000000000000000000000000000000000000610db030610f2c565b61178d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7193430610def30610f2c565b60008033426040518863ffffffff1660e01b8152600401610e1596959493929190612943565b60606040518083038185885af1158015610e33573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e58919061297e565b50506017805462ffff0019166201010017905550565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916109f9918590610db09086906129ac565b6005546001600160a01b03163314610ecf5760405162461bcd60e51b8152600401610a2d906128a2565b6007546040516001600160a01b03918216918316907fe398a51ced37c654eb1ea08be0948c549e0001c9574663816242517334bd004890600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b03163314610f715760405162461bcd60e51b8152600401610a2d906128a2565b610f7b6000611efc565b565b6005546000906001600160a01b03163314610faa5760405162461bcd60e51b8152600401610a2d906128a2565b506017805460ff19169055600190565b6005546001600160a01b03163314610fe45760405162461bcd60e51b8152600401610a2d906128a2565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110395760405162461bcd60e51b8152600401610a2d906128a2565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114611086576040519150601f19603f3d011682016040523d82523d6000602084013e61108b565b606091505b505090508061109957600080fd5b5050565b6005546001600160a01b031633146110c75760405162461bcd60e51b8152600401610a2d906128a2565b6008546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461114e5760405162461bcd60e51b8152600401610a2d906128a2565b60178054911515620100000262ff000019909216919091179055565b60606004805461096990612868565b6005546001600160a01b031633146111a35760405162461bcd60e51b8152600401610a2d906128a2565b6006546001600160a01b03908116908316036112275760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a2d565b6110998282611ea8565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112b35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a2d565b6112c0338585840361178d565b5060019392505050565b60006109f93384846118b1565b6005546001600160a01b031633146113015760405162461bcd60e51b8152600401610a2d906128a2565b6001600160a01b0382166113575760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a2d565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa15801561139e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c291906129bf565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611415573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061143991906129d8565b50505050565b6005546001600160a01b031633146114695760405162461bcd60e51b8152600401610a2d906128a2565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146114f25760405162461bcd60e51b8152600401610a2d906128a2565b670de0b6b3a76400006103e861150760025490565b61151290600a6128ed565b61151c9190612904565b6115269190612904565b8110156115885760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d617857616c6c6574416d6f756e74206c6f776572604482015269207468616e20312e302560b01b6064820152608401610a2d565b61159a81670de0b6b3a76400006128ed565b60165550565b6005546000906001600160a01b031633146115cd5760405162461bcd60e51b8152600401610a2d906128a2565b620186a06115da60025490565b6115e59060016128ed565b6115ef9190612904565b82101561165c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a2d565b6103e861166860025490565b6116739060056128ed565b61167d9190612904565b8211156116e95760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a2d565b50601555600190565b6005546001600160a01b0316331461171c5760405162461bcd60e51b8152600401610a2d906128a2565b6001600160a01b0381166117815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a2d565b61178a81611efc565b50565b6001600160a01b0383166117ef5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a2d565b6001600160a01b0382166118505760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a2d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118d75760405162461bcd60e51b8152600401610a2d906129f5565b6001600160a01b0382166118fd5760405162461bcd60e51b8152600401610a2d90612a3a565b806000036119165761191183836000611f4e565b505050565b60175460ff1615611b36576005546001600160a01b0384811691161480159061194d57506005546001600160a01b03838116911614155b801561196157506001600160a01b03821615155b801561197857506001600160a01b03821661dead14155b801561198e5750600654600160a01b900460ff16155b15611b3657601754610100900460ff16611a26576001600160a01b03831660009081526018602052604090205460ff16806119e157506001600160a01b03821660009081526018602052604090205460ff165b611a265760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a2d565b6001600160a01b0383166000908152601a602052604090205460ff168015611a6757506001600160a01b03821660009081526019602052604090205460ff16155b15611b3657601454811115611adc5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a2d565b601654611ae883610f2c565b611af290836129ac565b1115611b365760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a2d565b6000611b4130610f2c565b60155490915081108015908190611b60575060175462010000900460ff165b8015611b765750600654600160a01b900460ff16155b8015611b9a57506001600160a01b0384166000908152601a602052604090205460ff165b8015611bbf57506001600160a01b03851660009081526018602052604090205460ff16155b8015611be457506001600160a01b03841660009081526018602052604090205460ff16155b15611c12576006805460ff60a01b1916600160a01b179055611c046120a2565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526018602052604090205460ff600160a01b90920482161591168015611c5357506001600160a01b03851661dead145b15611c6157611c6184612329565b6001600160a01b03861660009081526018602052604090205460ff1680611ca057506001600160a01b03851660009081526018602052604090205460ff165b15611ca9575060005b60008115611e94576001600160a01b0386166000908152601a602052604090205460ff168015611cdb57506000601054115b15611d9957611d006064611cfa6010548861240790919063ffffffff16565b9061241a565b905060105460125482611d1391906128ed565b611d1d9190612904565b600a6000828254611d2e91906129ac565b9091555050601054601354611d4390836128ed565b611d4d9190612904565b600b6000828254611d5e91906129ac565b9091555050601054601154611d7390836128ed565b611d7d9190612904565b60096000828254611d8e91906129ac565b90915550611e769050565b6001600160a01b0387166000908152601a602052604090205460ff168015611dc357506000600c54115b15611e7657611de26064611cfa600c548861240790919063ffffffff16565b9050600c54600e5482611df591906128ed565b611dff9190612904565b600a6000828254611e1091906129ac565b9091555050600c54600f54611e2590836128ed565b611e2f9190612904565b600b6000828254611e4091906129ac565b9091555050600c54600d54611e5590836128ed565b611e5f9190612904565b60096000828254611e7091906129ac565b90915550505b8015611e8757611e87873083611f4e565b611e918186612a7d565b94505b611e9f878787611f4e565b50505050505050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611f745760405162461bcd60e51b8152600401610a2d906129f5565b6001600160a01b038216611f9a5760405162461bcd60e51b8152600401610a2d90612a3a565b6001600160a01b038316600090815260208190526040902054818110156120125760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a2d565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906120499084906129ac565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161209591815260200190565b60405180910390a3611439565b60006120ad30610f2c565b6007549091506000906120c8906001600160a01b0316610f2c565b90506000600b54600954600a546120df91906129ac565b6120e991906129ac565b905060006015548311156121165780612103576000612105565b835b6016546121129190612904565b6009555b831580612121575081155b1561212c5750505050565b60155484111561213c5760155493505b6000600283600a548761214f91906128ed565b6121599190612904565b6121639190612904565b905060006121718683612426565b90504761217d82612432565b60006121894783612426565b905060006121b76002600a5461219f9190612904565b6121a99089612a7d565b600954611cfa908590612407565b905060006121e56002600a546121cd9190612904565b6121d7908a612a7d565b600b54611cfa908690612407565b90506000816121f48486612a7d565b6121fe9190612a7d565b6000600a8190556009819055600b8190556008546040519293506001600160a01b031691849181818185875af1925050503d806000811461225b576040519150601f19603f3d011682016040523d82523d6000602084013e612260565b606091505b509098505086158015906122745750600081115b156122c75761228387826125f2565b600a54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612314576040519150601f19603f3d011682016040523d82523d6000602084013e612319565b606091505b5050505050505050505050505050565b600654612355906001600160a01b031661dead8361234683610f2c565b6123509190612a7d565b611f4e565b600660009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156123a557600080fd5b505af11580156123b9573d6000803e3d6000fd5b505050506123ce6123c930610f2c565b612432565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611099573d6000803e3d6000fd5b600061241382846128ed565b9392505050565b60006124138284612904565b60006124138284612a7d565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061246757612467612a90565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125099190612926565b8160018151811061251c5761251c612a90565b60200260200101906001600160a01b031690816001600160a01b031681525050612567307f00000000000000000000000000000000000000000000000000000000000000008461178d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906125bc908590600090869030904290600401612aa6565b600060405180830381600087803b1580156125d657600080fd5b505af11580156125ea573d6000803e3d6000fd5b505050505050565b61261d307f00000000000000000000000000000000000000000000000000000000000000008461178d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806126646005546001600160a01b031690565b426040518863ffffffff1660e01b815260040161268696959493929190612943565b60606040518083038185885af11580156126a4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126c9919061297e565b5050505050565b600060208083528351808285015260005b818110156126fd578581018301518582016040015282016126e1565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461178a57600080fd5b6000806040838503121561274657600080fd5b82356127518161271e565b946020939093013593505050565b60006020828403121561277157600080fd5b81356124138161271e565b60006020828403121561278e57600080fd5b5035919050565b6000806000606084860312156127aa57600080fd5b83356127b58161271e565b925060208401356127c58161271e565b929592945050506040919091013590565b801515811461178a57600080fd5b600080604083850312156127f757600080fd5b82356128028161271e565b91506020830135612812816127d6565b809150509250929050565b60006020828403121561282f57600080fd5b8135612413816127d6565b6000806040838503121561284d57600080fd5b82356128588161271e565b915060208301356128128161271e565b600181811c9082168061287c57607f821691505b60208210810361289c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109fd576109fd6128d7565b60008261292157634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561293857600080fd5b81516124138161271e565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b60008060006060848603121561299357600080fd5b8351925060208401519150604084015190509250925092565b808201808211156109fd576109fd6128d7565b6000602082840312156129d157600080fd5b5051919050565b6000602082840312156129ea57600080fd5b8151612413816127d6565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109fd576109fd6128d7565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612af65784516001600160a01b031683529383019391830191600101612ad1565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220edd0e75992708f1e34f7a6ea76c1e43fa8dba1b9c9a5ed40387b83754846f0a464736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103035760003560e01c80637cb332bb11610190578063c18bc195116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146108f8578063f2fde38b1461090e578063f63743421461092e578063fde83a341461094457600080fd5b8063dd62ed3e1461087c578063e2f45605146108c2578063e803cee0146108d857600080fd5b8063c18bc195146107e4578063c8c8ebe414610804578063d257b34f1461081a578063d729715f1461083a578063d85ba06314610850578063d92c842c1461086657600080fd5b8063a457c2d711610149578063b62496f511610123578063b62496f514610755578063bbc0c74214610785578063bc205ad3146107a4578063c0246668146107c457600080fd5b8063a457c2d7146106ff578063a9059cbb1461071f578063aa4bde281461073f57600080fd5b80637cb332bb146106565780638da5cb5b14610676578063924de9b71461069457806395d89b41146106b45780639a7a23d6146106c95780639c2e4ac6146106e957600080fd5b8063437f78151161024f5780636a486a8e11610208578063715018a6116101e2578063715018a6146105ec578063751039fc146106015780637571336a146106165780637ca8448a1461063657600080fd5b80636a486a8e146105965780636ddd1713146105ac57806370a08231146105cc57600080fd5b8063437f7815146104cd57806349bd5a5e146104ed5780634a62bb651461050d5780634fbee1931461052757806359927044146105605780635ddf55831461058057600080fd5b80631a8145bb116102bc57806327c8f8351161029657806327c8f83514610473578063293230b814610489578063313ce5671461049157806339509351146104ad57600080fd5b80631a8145bb1461041b578063203e727e1461043157806323b872dd1461045357600080fd5b806306fdde031461030f578063095ea7b31461033a57806310d5de531461036a5780631694505e1461039a57806318160ddd146103e657806318b9b19a1461040557600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b5061032461095a565b60405161033191906126d0565b60405180910390f35b34801561034657600080fd5b5061035a610355366004612733565b6109ec565b6040519015158152602001610331565b34801561037657600080fd5b5061035a61038536600461275f565b60196020526000908152604090205460ff1681565b3480156103a657600080fd5b506103ce7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610331565b3480156103f257600080fd5b506002545b604051908152602001610331565b34801561041157600080fd5b506103f760115481565b34801561042757600080fd5b506103f7600a5481565b34801561043d57600080fd5b5061045161044c36600461277c565b610a03565b005b34801561045f57600080fd5b5061035a61046e366004612795565b610ae9565b34801561047f57600080fd5b506103ce61dead81565b610451610b93565b34801561049d57600080fd5b5060405160128152602001610331565b3480156104b957600080fd5b5061035a6104c8366004612733565b610e6e565b3480156104d957600080fd5b506104516104e836600461275f565b610ea5565b3480156104f957600080fd5b506006546103ce906001600160a01b031681565b34801561051957600080fd5b5060175461035a9060ff1681565b34801561053357600080fd5b5061035a61054236600461275f565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561056c57600080fd5b506008546103ce906001600160a01b031681565b34801561058c57600080fd5b506103f760095481565b3480156105a257600080fd5b506103f760105481565b3480156105b857600080fd5b5060175461035a9062010000900460ff1681565b3480156105d857600080fd5b506103f76105e736600461275f565b610f2c565b3480156105f857600080fd5b50610451610f47565b34801561060d57600080fd5b5061035a610f7d565b34801561062257600080fd5b506104516106313660046127e4565b610fba565b34801561064257600080fd5b5061045161065136600461275f565b61100f565b34801561066257600080fd5b5061045161067136600461275f565b61109d565b34801561068257600080fd5b506005546001600160a01b03166103ce565b3480156106a057600080fd5b506104516106af36600461281d565b611124565b3480156106c057600080fd5b5061032461116a565b3480156106d557600080fd5b506104516106e43660046127e4565b611179565b3480156106f557600080fd5b506103f7600f5481565b34801561070b57600080fd5b5061035a61071a366004612733565b611231565b34801561072b57600080fd5b5061035a61073a366004612733565b6112ca565b34801561074b57600080fd5b506103f760165481565b34801561076157600080fd5b5061035a61077036600461275f565b601a6020526000908152604090205460ff1681565b34801561079157600080fd5b5060175461035a90610100900460ff1681565b3480156107b057600080fd5b506104516107bf36600461283a565b6112d7565b3480156107d057600080fd5b506104516107df3660046127e4565b61143f565b3480156107f057600080fd5b506104516107ff36600461277c565b6114c8565b34801561081057600080fd5b506103f760145481565b34801561082657600080fd5b5061035a61083536600461277c565b6115a0565b34801561084657600080fd5b506103f760135481565b34801561085c57600080fd5b506103f7600c5481565b34801561087257600080fd5b506103f7600d5481565b34801561088857600080fd5b506103f761089736600461283a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108ce57600080fd5b506103f760155481565b3480156108e457600080fd5b506007546103ce906001600160a01b031681565b34801561090457600080fd5b506103f7600e5481565b34801561091a57600080fd5b5061045161092936600461275f565b6116f2565b34801561093a57600080fd5b506103f760125481565b34801561095057600080fd5b506103f7600b5481565b60606003805461096990612868565b80601f016020809104026020016040519081016040528092919081815260200182805461099590612868565b80156109e25780601f106109b7576101008083540402835291602001916109e2565b820191906000526020600020905b8154815290600101906020018083116109c557829003601f168201915b5050505050905090565b60006109f933848461178d565b5060015b92915050565b6005546001600160a01b03163314610a365760405162461bcd60e51b8152600401610a2d906128a2565b60405180910390fd5b670de0b6b3a76400006103e8610a4b60025490565b610a569060056128ed565b610a609190612904565b610a6a9190612904565b811015610ad15760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610a2d565b610ae381670de0b6b3a76400006128ed565b60145550565b6000610af68484846118b1565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b7b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a2d565b610b88853385840361178d565b506001949350505050565b6005546001600160a01b03163314610bbd5760405162461bcd60e51b8152600401610a2d906128a2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3f9190612926565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd09190612926565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610d1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d419190612926565b600680546001600160a01b0319166001600160a01b03929092169182179055610d6b906001610fba565b600654610d82906001600160a01b03166001611ea8565b610db5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d610db030610f2c565b61178d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7193430610def30610f2c565b60008033426040518863ffffffff1660e01b8152600401610e1596959493929190612943565b60606040518083038185885af1158015610e33573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e58919061297e565b50506017805462ffff0019166201010017905550565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916109f9918590610db09086906129ac565b6005546001600160a01b03163314610ecf5760405162461bcd60e51b8152600401610a2d906128a2565b6007546040516001600160a01b03918216918316907fe398a51ced37c654eb1ea08be0948c549e0001c9574663816242517334bd004890600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b03163314610f715760405162461bcd60e51b8152600401610a2d906128a2565b610f7b6000611efc565b565b6005546000906001600160a01b03163314610faa5760405162461bcd60e51b8152600401610a2d906128a2565b506017805460ff19169055600190565b6005546001600160a01b03163314610fe45760405162461bcd60e51b8152600401610a2d906128a2565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110395760405162461bcd60e51b8152600401610a2d906128a2565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114611086576040519150601f19603f3d011682016040523d82523d6000602084013e61108b565b606091505b505090508061109957600080fd5b5050565b6005546001600160a01b031633146110c75760405162461bcd60e51b8152600401610a2d906128a2565b6008546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461114e5760405162461bcd60e51b8152600401610a2d906128a2565b60178054911515620100000262ff000019909216919091179055565b60606004805461096990612868565b6005546001600160a01b031633146111a35760405162461bcd60e51b8152600401610a2d906128a2565b6006546001600160a01b03908116908316036112275760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a2d565b6110998282611ea8565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112b35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a2d565b6112c0338585840361178d565b5060019392505050565b60006109f93384846118b1565b6005546001600160a01b031633146113015760405162461bcd60e51b8152600401610a2d906128a2565b6001600160a01b0382166113575760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a2d565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa15801561139e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c291906129bf565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611415573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061143991906129d8565b50505050565b6005546001600160a01b031633146114695760405162461bcd60e51b8152600401610a2d906128a2565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146114f25760405162461bcd60e51b8152600401610a2d906128a2565b670de0b6b3a76400006103e861150760025490565b61151290600a6128ed565b61151c9190612904565b6115269190612904565b8110156115885760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d617857616c6c6574416d6f756e74206c6f776572604482015269207468616e20312e302560b01b6064820152608401610a2d565b61159a81670de0b6b3a76400006128ed565b60165550565b6005546000906001600160a01b031633146115cd5760405162461bcd60e51b8152600401610a2d906128a2565b620186a06115da60025490565b6115e59060016128ed565b6115ef9190612904565b82101561165c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a2d565b6103e861166860025490565b6116739060056128ed565b61167d9190612904565b8211156116e95760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a2d565b50601555600190565b6005546001600160a01b0316331461171c5760405162461bcd60e51b8152600401610a2d906128a2565b6001600160a01b0381166117815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a2d565b61178a81611efc565b50565b6001600160a01b0383166117ef5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a2d565b6001600160a01b0382166118505760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a2d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118d75760405162461bcd60e51b8152600401610a2d906129f5565b6001600160a01b0382166118fd5760405162461bcd60e51b8152600401610a2d90612a3a565b806000036119165761191183836000611f4e565b505050565b60175460ff1615611b36576005546001600160a01b0384811691161480159061194d57506005546001600160a01b03838116911614155b801561196157506001600160a01b03821615155b801561197857506001600160a01b03821661dead14155b801561198e5750600654600160a01b900460ff16155b15611b3657601754610100900460ff16611a26576001600160a01b03831660009081526018602052604090205460ff16806119e157506001600160a01b03821660009081526018602052604090205460ff165b611a265760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a2d565b6001600160a01b0383166000908152601a602052604090205460ff168015611a6757506001600160a01b03821660009081526019602052604090205460ff16155b15611b3657601454811115611adc5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a2d565b601654611ae883610f2c565b611af290836129ac565b1115611b365760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a2d565b6000611b4130610f2c565b60155490915081108015908190611b60575060175462010000900460ff165b8015611b765750600654600160a01b900460ff16155b8015611b9a57506001600160a01b0384166000908152601a602052604090205460ff165b8015611bbf57506001600160a01b03851660009081526018602052604090205460ff16155b8015611be457506001600160a01b03841660009081526018602052604090205460ff16155b15611c12576006805460ff60a01b1916600160a01b179055611c046120a2565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526018602052604090205460ff600160a01b90920482161591168015611c5357506001600160a01b03851661dead145b15611c6157611c6184612329565b6001600160a01b03861660009081526018602052604090205460ff1680611ca057506001600160a01b03851660009081526018602052604090205460ff165b15611ca9575060005b60008115611e94576001600160a01b0386166000908152601a602052604090205460ff168015611cdb57506000601054115b15611d9957611d006064611cfa6010548861240790919063ffffffff16565b9061241a565b905060105460125482611d1391906128ed565b611d1d9190612904565b600a6000828254611d2e91906129ac565b9091555050601054601354611d4390836128ed565b611d4d9190612904565b600b6000828254611d5e91906129ac565b9091555050601054601154611d7390836128ed565b611d7d9190612904565b60096000828254611d8e91906129ac565b90915550611e769050565b6001600160a01b0387166000908152601a602052604090205460ff168015611dc357506000600c54115b15611e7657611de26064611cfa600c548861240790919063ffffffff16565b9050600c54600e5482611df591906128ed565b611dff9190612904565b600a6000828254611e1091906129ac565b9091555050600c54600f54611e2590836128ed565b611e2f9190612904565b600b6000828254611e4091906129ac565b9091555050600c54600d54611e5590836128ed565b611e5f9190612904565b60096000828254611e7091906129ac565b90915550505b8015611e8757611e87873083611f4e565b611e918186612a7d565b94505b611e9f878787611f4e565b50505050505050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611f745760405162461bcd60e51b8152600401610a2d906129f5565b6001600160a01b038216611f9a5760405162461bcd60e51b8152600401610a2d90612a3a565b6001600160a01b038316600090815260208190526040902054818110156120125760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a2d565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906120499084906129ac565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161209591815260200190565b60405180910390a3611439565b60006120ad30610f2c565b6007549091506000906120c8906001600160a01b0316610f2c565b90506000600b54600954600a546120df91906129ac565b6120e991906129ac565b905060006015548311156121165780612103576000612105565b835b6016546121129190612904565b6009555b831580612121575081155b1561212c5750505050565b60155484111561213c5760155493505b6000600283600a548761214f91906128ed565b6121599190612904565b6121639190612904565b905060006121718683612426565b90504761217d82612432565b60006121894783612426565b905060006121b76002600a5461219f9190612904565b6121a99089612a7d565b600954611cfa908590612407565b905060006121e56002600a546121cd9190612904565b6121d7908a612a7d565b600b54611cfa908690612407565b90506000816121f48486612a7d565b6121fe9190612a7d565b6000600a8190556009819055600b8190556008546040519293506001600160a01b031691849181818185875af1925050503d806000811461225b576040519150601f19603f3d011682016040523d82523d6000602084013e612260565b606091505b509098505086158015906122745750600081115b156122c75761228387826125f2565b600a54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612314576040519150601f19603f3d011682016040523d82523d6000602084013e612319565b606091505b5050505050505050505050505050565b600654612355906001600160a01b031661dead8361234683610f2c565b6123509190612a7d565b611f4e565b600660009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156123a557600080fd5b505af11580156123b9573d6000803e3d6000fd5b505050506123ce6123c930610f2c565b612432565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611099573d6000803e3d6000fd5b600061241382846128ed565b9392505050565b60006124138284612904565b60006124138284612a7d565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061246757612467612a90565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125099190612926565b8160018151811061251c5761251c612a90565b60200260200101906001600160a01b031690816001600160a01b031681525050612567307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461178d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906125bc908590600090869030904290600401612aa6565b600060405180830381600087803b1580156125d657600080fd5b505af11580156125ea573d6000803e3d6000fd5b505050505050565b61261d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461178d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806126646005546001600160a01b031690565b426040518863ffffffff1660e01b815260040161268696959493929190612943565b60606040518083038185885af11580156126a4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126c9919061297e565b5050505050565b600060208083528351808285015260005b818110156126fd578581018301518582016040015282016126e1565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461178a57600080fd5b6000806040838503121561274657600080fd5b82356127518161271e565b946020939093013593505050565b60006020828403121561277157600080fd5b81356124138161271e565b60006020828403121561278e57600080fd5b5035919050565b6000806000606084860312156127aa57600080fd5b83356127b58161271e565b925060208401356127c58161271e565b929592945050506040919091013590565b801515811461178a57600080fd5b600080604083850312156127f757600080fd5b82356128028161271e565b91506020830135612812816127d6565b809150509250929050565b60006020828403121561282f57600080fd5b8135612413816127d6565b6000806040838503121561284d57600080fd5b82356128588161271e565b915060208301356128128161271e565b600181811c9082168061287c57607f821691505b60208210810361289c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109fd576109fd6128d7565b60008261292157634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561293857600080fd5b81516124138161271e565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b60008060006060848603121561299357600080fd5b8351925060208401519150604084015190509250925092565b808201808211156109fd576109fd6128d7565b6000602082840312156129d157600080fd5b5051919050565b6000602082840312156129ea57600080fd5b8151612413816127d6565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109fd576109fd6128d7565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612af65784516001600160a01b031683529383019391830191600101612ad1565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220edd0e75992708f1e34f7a6ea76c1e43fa8dba1b9c9a5ed40387b83754846f0a464736f6c63430008110033

Deployed Bytecode Sourcemap

31023:14777:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9085:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11252:169;;;;;;;;;;-1:-1:-1;11252:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11252:169:0;1023:187:1;32118:63:0;;;;;;;;;;-1:-1:-1;32118:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31098:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;31098:51:0;1467:230:1;10205:108:0;;;;;;;;;;-1:-1:-1;10293:12:0;;10205:108;;;1848:25:1;;;1836:2;1821:18;10205:108:0;1702:177:1;31634:25:0;;;;;;;;;;;;;;;;31386:33;;;;;;;;;;;;;;;;36448:275;;;;;;;;;;-1:-1:-1;36448:275:0;;;;;:::i;:::-;;:::i;:::-;;11903:492;;;;;;;;;;-1:-1:-1;11903:492:0;;;;;:::i;:::-;;:::i;31191:53::-;;;;;;;;;;;;31237:6;31191:53;;35103:597;;;:::i;10047:93::-;;;;;;;;;;-1:-1:-1;10047:93:0;;10130:2;2880:36:1;;2868:2;2853:18;10047:93:0;2738:184:1;12804:215:0;;;;;;;;;;-1:-1:-1;12804:215:0;;;;;:::i;:::-;;:::i;37575:166::-;;;;;;;;;;-1:-1:-1;37575:166:0;;;;;:::i;:::-;;:::i;31156:28::-;;;;;;;;;;-1:-1:-1;31156:28:0;;;;-1:-1:-1;;;;;31156:28:0;;;31860:33;;;;;;;;;;-1:-1:-1;31860:33:0;;;;;;;;38420:126;;;;;;;;;;-1:-1:-1;38420:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38510:28:0;38486:4;38510:28;;;:19;:28;;;;;;;;;38420:126;31314:25;;;;;;;;;;-1:-1:-1;31314:25:0;;;;-1:-1:-1;;;;;31314:25:0;;;31352:27;;;;;;;;;;;;;;;;31599:28;;;;;;;;;;;;;;;;31940:31;;;;;;;;;;-1:-1:-1;31940:31:0;;;;;;;;;;;10376:127;;;;;;;;;;-1:-1:-1;10376:127:0;;;;;:::i;:::-;;:::i;2603:103::-;;;;;;;;;;;;;:::i;35752:121::-;;;;;;;;;;;;;:::i;37008:167::-;;;;;;;;;;-1:-1:-1;37008:167:0;;;;;:::i;:::-;;:::i;40783:196::-;;;;;;;;;;-1:-1:-1;40783:196:0;;;;;:::i;:::-;;:::i;38251:161::-;;;;;;;;;;-1:-1:-1;38251:161:0;;;;;:::i;:::-;;:::i;1952:87::-;;;;;;;;;;-1:-1:-1;2025:6:0;;-1:-1:-1;;;;;2025:6:0;1952:87;;37271:100;;;;;;;;;;-1:-1:-1;37271:100:0;;;;;:::i;:::-;;:::i;9304:104::-;;;;;;;;;;;;;:::i;37939:304::-;;;;;;;;;;-1:-1:-1;37939:304:0;;;;;:::i;:::-;;:::i;31565:25::-;;;;;;;;;;;;;;;;13522:413;;;;;;;;;;-1:-1:-1;13522:413:0;;;;;:::i;:::-;;:::i;10716:175::-;;;;;;;;;;-1:-1:-1;10716:175:0;;;;;:::i;:::-;;:::i;31821:30::-;;;;;;;;;;;;;;;;32339:57;;;;;;;;;;-1:-1:-1;32339:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31900:33;;;;;;;;;;-1:-1:-1;31900:33:0;;;;;;;;;;;40487:288;;;;;;;;;;-1:-1:-1;40487:288:0;;;;;:::i;:::-;;:::i;37749:182::-;;;;;;;;;;-1:-1:-1;37749:182:0;;;;;:::i;:::-;;:::i;36731:269::-;;;;;;;;;;-1:-1:-1;36731:269:0;;;;;:::i;:::-;;:::i;31739:35::-;;;;;;;;;;;;;;;;35943:497;;;;;;;;;;-1:-1:-1;35943:497:0;;;;;:::i;:::-;;:::i;31704:26::-;;;;;;;;;;;;;;;;31463:27;;;;;;;;;;;;;;;;31497:24;;;;;;;;;;;;;;;;10954:151;;;;;;;;;;-1:-1:-1;10954:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11070:18:0;;;11043:7;11070:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10954:151;31781:33;;;;;;;;;;;;;;;;31283:24;;;;;;;;;;-1:-1:-1;31283:24:0;;;;-1:-1:-1;;;;;31283:24:0;;;31528:30;;;;;;;;;;;;;;;;2861:201;;;;;;;;;;-1:-1:-1;2861:201:0;;;;;:::i;:::-;;:::i;31666:31::-;;;;;;;;;;;;;;;;31426:28;;;;;;;;;;;;;;;;9085:100;9139:13;9172:5;9165:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9085:100;:::o;11252:169::-;11335:4;11352:39;901:10;11375:7;11384:6;11352:8;:39::i;:::-;-1:-1:-1;11409:4:0;11252:169;;;;;:::o;36448:275::-;2025:6;;-1:-1:-1;;;;;2025:6:0;901:10;2172:23;2164:68;;;;-1:-1:-1;;;2164:68:0;;;;;;;:::i;:::-;;;;;;;;;36585:4:::1;36577;36556:13;10293:12:::0;;;10205:108;36556:13:::1;:17;::::0;36572:1:::1;36556:17;:::i;:::-;36555:26;;;;:::i;:::-;36554:35;;;;:::i;:::-;36544:6;:45;;36522:142;;;::::0;-1:-1:-1;;;36522:142:0;;5551:2:1;36522:142:0::1;::::0;::::1;5533:21:1::0;5590:2;5570:18;;;5563:30;5629:34;5609:18;;;5602:62;-1:-1:-1;;;5680:18:1;;;5673:45;5735:19;;36522:142:0::1;5349:411:1::0;36522:142:0::1;36698:17;:6:::0;36708::::1;36698:17;:::i;:::-;36675:20;:40:::0;-1:-1:-1;36448:275:0:o;11903:492::-;12043:4;12060:36;12070:6;12078:9;12089:6;12060:9;:36::i;:::-;-1:-1:-1;;;;;12136:19:0;;12109:24;12136:19;;;:11;:19;;;;;;;;901:10;12136:33;;;;;;;;12188:26;;;;12180:79;;;;-1:-1:-1;;;12180:79:0;;5967:2:1;12180:79:0;;;5949:21:1;6006:2;5986:18;;;5979:30;6045:34;6025:18;;;6018:62;-1:-1:-1;;;6096:18:1;;;6089:38;6144:19;;12180:79:0;5765:404:1;12180:79:0;12295:57;12304:6;901:10;12345:6;12326:16;:25;12295:8;:57::i;:::-;-1:-1:-1;12383:4:0;;11903:492;-1:-1:-1;;;;11903:492:0:o;35103:597::-;2025:6;;-1:-1:-1;;;;;2025:6:0;901:10;2172:23;2164:68;;;;-1:-1:-1;;;2164:68:0;;;;;;;:::i;:::-;35199:15:::1;-1:-1:-1::0;;;;;35199:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35181:55:0::1;;35245:4;35252:15;-1:-1:-1::0;;;;;35252:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35181:94;::::0;-1:-1:-1;;;;;;35181:94:0::1;::::0;;;;;;-1:-1:-1;;;;;6660:15:1;;;35181:94:0::1;::::0;::::1;6642:34:1::0;6712:15;;6692:18;;;6685:43;6577:18;;35181:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35165:13;:110:::0;;-1:-1:-1;;;;;;35165:110:0::1;-1:-1:-1::0;;;;;35165:110:0;;;::::1;::::0;;::::1;::::0;;35286:55:::1;::::0;-1:-1:-1;35286:25:0::1;:55::i;:::-;35389:13;::::0;35352:58:::1;::::0;-1:-1:-1;;;;;35389:13:0::1;::::0;35352:28:::1;:58::i;:::-;35421:75;35438:4;35453:15;35471:24;35489:4;35471:9;:24::i;:::-;35421:8;:75::i;:::-;35507:15;-1:-1:-1::0;;;;;35507:31:0::1;;35546:9;35565:4;35572:24;35590:4;35572:9;:24::i;:::-;35598:1;35601::::0;35604:10:::1;35616:15;35507:125;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;35643:13:0::1;:20:::0;;-1:-1:-1;;35674:18:0;;;;;-1:-1:-1;35103:597:0:o;12804:215::-;901:10;12892:4;12941:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12941:34:0;;;;;;;;;;12892:4;;12909:80;;12932:7;;12941:47;;12978:10;;12941:47;:::i;37575:166::-;2025:6;;-1:-1:-1;;;;;2025:6:0;901:10;2172:23;2164:68;;;;-1:-1:-1;;;2164:68:0;;;;;;;:::i;:::-;37688:9:::1;::::0;37657:41:::1;::::0;-1:-1:-1;;;;;37688:9:0;;::::1;::::0;37657:41;::::1;::::0;::::1;::::0;37688:9:::1;::::0;37657:41:::1;37709:9;:24:::0;;-1:-1:-1;;;;;;37709:24:0::1;-1:-1:-1::0;;;;;37709:24:0;;;::::1;::::0;;;::::1;::::0;;37575:166::o;10376:127::-;-1:-1:-1;;;;;10477:18:0;10450:7;10477:18;;;;;;;;;;;;10376:127::o;2603:103::-;2025:6;;-1:-1:-1;;;;;2025:6:0;901:10;2172:23;2164:68;;;;-1:-1:-1;;;2164:68:0;;;;;;;:::i;:::-;2668:30:::1;2695:1;2668:18;:30::i;:::-;2603:103::o:0;35752:121::-;2025:6;;35804:4;;-1:-1:-1;;;;;2025:6:0;901:10;2172:23;2164:68;;;;-1:-1:-1;;;2164:68:0;;;;;;;:::i;:::-;-1:-1:-1;35821:14:0::1;:22:::0;;-1:-1:-1;;35821:22:0::1;::::0;;;35752:121;:::o;37008:167::-;2025:6;;-1:-1:-1;;;;;2025:6:0;901:10;2172:23;2164:68;;;;-1:-1:-1;;;2164:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37121:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37121:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37008:167::o;40783:196::-;2025:6;;-1:-1:-1;;;;;2025:6:0;901:10;2172:23;2164:68;;;;-1:-1:-1;;;2164:68:0;;;;;;;:::i;:::-;40856:12:::1;40874:6;-1:-1:-1::0;;;;;40874:11:0::1;40907:21;40874:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40855:89;;;40963:7;40955:16;;;::::0;::::1;;40844:135;40783:196:::0;:::o;38251:161::-;2025:6;;-1:-1:-1;;;;;2025:6:0;901:10;2172:23;2164:68;;;;-1:-1:-1;;;2164:68:0;;;;;;;:::i;:::-;38360:10:::1;::::0;38331:40:::1;::::0;-1:-1:-1;;;;;38360:10:0;;::::1;::::0;38331:40;::::1;::::0;::::1;::::0;38360:10:::1;::::0;38331:40:::1;38382:10;:22:::0;;-1:-1:-1;;;;;;38382:22:0::1;-1:-1:-1::0;;;;;38382:22:0;;;::::1;::::0;;;::::1;::::0;;38251:161::o;37271:100::-;2025:6;;-1:-1:-1;;;;;2025:6:0;901:10;2172:23;2164:68;;;;-1:-1:-1;;;2164:68:0;;;;;;;:::i;:::-;37342:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37342:21:0;;::::1;::::0;;;::::1;::::0;;37271:100::o;9304:104::-;9360:13;9393:7;9386:14;;;;;:::i;37939:304::-;2025:6;;-1:-1:-1;;;;;2025:6:0;901:10;2172:23;2164:68;;;;-1:-1:-1;;;2164:68:0;;;;;;;:::i;:::-;38083:13:::1;::::0;-1:-1:-1;;;;;38083:13:0;;::::1;38075:21:::0;;::::1;::::0;38053:128:::1;;;::::0;-1:-1:-1;;;38053:128:0;;8204:2:1;38053:128:0::1;::::0;::::1;8186:21:1::0;8243:2;8223:18;;;8216:30;8282:34;8262:18;;;8255:62;8353:27;8333:18;;;8326:55;8398:19;;38053:128:0::1;8002:421:1::0;38053:128:0::1;38194:41;38223:4;38229:5;38194:28;:41::i;13522:413::-:0;901:10;13615:4;13659:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13659:34:0;;;;;;;;;;13712:35;;;;13704:85;;;;-1:-1:-1;;;13704:85:0;;8630:2:1;13704:85:0;;;8612:21:1;8669:2;8649:18;;;8642:30;8708:34;8688:18;;;8681:62;-1:-1:-1;;;8759:18:1;;;8752:35;8804:19;;13704:85:0;8428:401:1;13704:85:0;13825:67;901:10;13848:7;13876:15;13857:16;:34;13825:8;:67::i;:::-;-1:-1:-1;13923:4:0;;13522:413;-1:-1:-1;;;13522:413:0:o;10716:175::-;10802:4;10819:42;901:10;10843:9;10854:6;10819:9;:42::i;40487:288::-;2025:6;;-1:-1:-1;;;;;2025:6:0;901:10;2172:23;2164:68;;;;-1:-1:-1;;;2164:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40582:20:0;::::1;40574:59;;;::::0;-1:-1:-1;;;40574:59:0;;9036:2:1;40574:59:0::1;::::0;::::1;9018:21:1::0;9075:2;9055:18;;;9048:30;9114:28;9094:18;;;9087:56;9160:18;;40574:59:0::1;8834:350:1::0;40574:59:0::1;40671:39;::::0;-1:-1:-1;;;40671:39:0;;40704:4:::1;40671:39;::::0;::::1;1640:51:1::0;40644:24:0::1;::::0;-1:-1:-1;;;;;40671:24:0;::::1;::::0;::::1;::::0;1613:18:1;;40671:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40721:46;::::0;-1:-1:-1;;;40721:46:0;;-1:-1:-1;;;;;9570:32:1;;;40721:46:0::1;::::0;::::1;9552:51:1::0;9619:18;;;9612:34;;;40644:66:0;;-1:-1:-1;40721:23:0;;::::1;::::0;::::1;::::0;9525:18:1;;40721:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40563:212;40487:288:::0;;:::o;37749:182::-;2025:6;;-1:-1:-1;;;;;2025:6:0;901:10;2172:23;2164:68;;;;-1:-1:-1;;;2164:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37834:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37834:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37889:34;;1163:41:1;;;37889:34:0::1;::::0;1136:18:1;37889:34:0::1;;;;;;;37749:182:::0;;:::o;36731:269::-;2025:6;;-1:-1:-1;;;;;2025:6:0;901:10;2172:23;2164:68;;;;-1:-1:-1;;;2164:68:0;;;;;;;:::i;:::-;36872:4:::1;36864;36842:13;10293:12:::0;;;10205:108;36842:13:::1;:18;::::0;36858:2:::1;36842:18;:::i;:::-;36841:27;;;;:::i;:::-;36840:36;;;;:::i;:::-;36830:6;:46;;36808:138;;;::::0;-1:-1:-1;;;36808:138:0;;10109:2:1;36808:138:0::1;::::0;::::1;10091:21:1::0;10148:2;10128:18;;;10121:30;10187:34;10167:18;;;10160:62;-1:-1:-1;;;10238:18:1;;;10231:40;10288:19;;36808:138:0::1;9907:406:1::0;36808:138:0::1;36975:17;:6:::0;36985::::1;36975:17;:::i;:::-;36957:15;:35:::0;-1:-1:-1;36731:269:0:o;35943:497::-;2025:6;;36051:4;;-1:-1:-1;;;;;2025:6:0;901:10;2172:23;2164:68;;;;-1:-1:-1;;;2164:68:0;;;;;;;:::i;:::-;36130:6:::1;36109:13;10293:12:::0;;;10205:108;36109:13:::1;:17;::::0;36125:1:::1;36109:17;:::i;:::-;36108:28;;;;:::i;:::-;36095:9;:41;;36073:144;;;::::0;-1:-1:-1;;;36073:144:0;;10520:2:1;36073:144:0::1;::::0;::::1;10502:21:1::0;10559:2;10539:18;;;10532:30;10598:34;10578:18;;;10571:62;-1:-1:-1;;;10649:18:1;;;10642:51;10710:19;;36073:144:0::1;10318:417:1::0;36073:144:0::1;36285:4;36264:13;10293:12:::0;;;10205:108;36264:13:::1;:17;::::0;36280:1:::1;36264:17;:::i;:::-;36263:26;;;;:::i;:::-;36250:9;:39;;36228:141;;;::::0;-1:-1:-1;;;36228:141:0;;10942:2:1;36228:141:0::1;::::0;::::1;10924:21:1::0;10981:2;10961:18;;;10954:30;11020:34;11000:18;;;10993:62;-1:-1:-1;;;11071:18:1;;;11064:50;11131:19;;36228:141:0::1;10740:416:1::0;36228:141:0::1;-1:-1:-1::0;36380:18:0::1;:30:::0;36428:4:::1;::::0;35943:497::o;2861:201::-;2025:6;;-1:-1:-1;;;;;2025:6:0;901:10;2172:23;2164:68;;;;-1:-1:-1;;;2164:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2950:22:0;::::1;2942:73;;;::::0;-1:-1:-1;;;2942:73:0;;11363:2:1;2942:73:0::1;::::0;::::1;11345:21:1::0;11402:2;11382:18;;;11375:30;11441:34;11421:18;;;11414:62;-1:-1:-1;;;11492:18:1;;;11485:36;11538:19;;2942:73:0::1;11161:402:1::0;2942:73:0::1;3026:28;3045:8;3026:18;:28::i;:::-;2861:201:::0;:::o;17206:380::-;-1:-1:-1;;;;;17342:19:0;;17334:68;;;;-1:-1:-1;;;17334:68:0;;11770:2:1;17334:68:0;;;11752:21:1;11809:2;11789:18;;;11782:30;11848:34;11828:18;;;11821:62;-1:-1:-1;;;11899:18:1;;;11892:34;11943:19;;17334:68:0;11568:400:1;17334:68:0;-1:-1:-1;;;;;17421:21:0;;17413:68;;;;-1:-1:-1;;;17413:68:0;;12175:2:1;17413:68:0;;;12157:21:1;12214:2;12194:18;;;12187:30;12253:34;12233:18;;;12226:62;-1:-1:-1;;;12304:18:1;;;12297:32;12346:19;;17413:68:0;11973:398:1;17413:68:0;-1:-1:-1;;;;;17494:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17546:32;;1848:25:1;;;17546:32:0;;1821:18:1;17546:32:0;;;;;;;17206:380;;;:::o;40987:3364::-;-1:-1:-1;;;;;41119:18:0;;41111:68;;;;-1:-1:-1;;;41111:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41198:16:0;;41190:64;;;;-1:-1:-1;;;41190:64:0;;;;;;;:::i;:::-;41273:6;41283:1;41273:11;41269:93;;41301:28;41317:4;41323:2;41327:1;41301:15;:28::i;:::-;40987:3364;;;:::o;41269:93::-;41378:14;;;;41374:1066;;;2025:6;;-1:-1:-1;;;;;41431:15:0;;;2025:6;;41431:15;;;;:49;;-1:-1:-1;2025:6:0;;-1:-1:-1;;;;;41467:13:0;;;2025:6;;41467:13;;41431:49;:86;;;;-1:-1:-1;;;;;;41501:16:0;;;;41431:86;:128;;;;-1:-1:-1;;;;;;41538:21:0;;41552:6;41538:21;;41431:128;:158;;;;-1:-1:-1;41581:8:0;;-1:-1:-1;;;41581:8:0;;;;41580:9;41431:158;41409:1020;;;41629:13;;;;;;;41624:223;;-1:-1:-1;;;;;41701:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;41730:23:0;;;;;;:19;:23;;;;;;;;41701:52;41667:160;;;;-1:-1:-1;;;41667:160:0;;13388:2:1;41667:160:0;;;13370:21:1;13427:2;13407:18;;;13400:30;-1:-1:-1;;;13446:18:1;;;13439:52;13508:18;;41667:160:0;13186:346:1;41667:160:0;-1:-1:-1;;;;;41921:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;41978:35:0;;;;;;:31;:35;;;;;;;;41977:36;41921:92;41895:519;;;42100:20;;42090:6;:30;;42056:169;;;;-1:-1:-1;;;42056:169:0;;13739:2:1;42056:169:0;;;13721:21:1;13778:2;13758:18;;;13751:30;13817:34;13797:18;;;13790:62;-1:-1:-1;;;13868:18:1;;;13861:51;13929:19;;42056:169:0;13537:417:1;42056:169:0;42308:15;;42291:13;42301:2;42291:9;:13::i;:::-;42282:22;;:6;:22;:::i;:::-;:41;;42248:146;;;;-1:-1:-1;;;42248:146:0;;14161:2:1;42248:146:0;;;14143:21:1;14200:2;14180:18;;;14173:30;-1:-1:-1;;;14219:18:1;;;14212:49;14278:18;;42248:146:0;13959:343:1;42248:146:0;42452:28;42483:24;42501:4;42483:9;:24::i;:::-;42559:18;;42452:55;;-1:-1:-1;42535:42:0;;;;;;;42608:35;;-1:-1:-1;42632:11:0;;;;;;;42608:35;:61;;;;-1:-1:-1;42661:8:0;;-1:-1:-1;;;42661:8:0;;;;42660:9;42608:61;:107;;;;-1:-1:-1;;;;;;42686:29:0;;;;;;:25;:29;;;;;;;;42608:107;:150;;;;-1:-1:-1;;;;;;42733:25:0;;;;;;:19;:25;;;;;;;;42732:26;42608:150;:191;;;;-1:-1:-1;;;;;;42776:23:0;;;;;;:19;:23;;;;;;;;42775:24;42608:191;42590:323;;;42826:8;:15;;-1:-1:-1;;;;42826:15:0;-1:-1:-1;;;42826:15:0;;;42858:10;:8;:10::i;:::-;42885:8;:16;;-1:-1:-1;;;;42885:16:0;;;42590:323;42941:8;;-1:-1:-1;;;;;43051:25:0;;42925:12;43051:25;;;:19;:25;;;;;;42941:8;-1:-1:-1;;;42941:8:0;;;;;42940:9;;43051:25;:46;;;;-1:-1:-1;;;;;;43080:17:0;;31237:6;43080:17;43051:46;43047:78;;;43099:26;43118:6;43099:18;:26::i;:::-;-1:-1:-1;;;;;43140:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;43169:23:0;;;;;;:19;:23;;;;;;;;43140:52;43136:100;;;-1:-1:-1;43219:5:0;43136:100;43248:12;43353:7;43349:949;;;-1:-1:-1;;;;;43405:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;43454:1;43438:13;;:17;43405:50;43401:748;;;43483:34;43513:3;43483:25;43494:13;;43483:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;43476:41;;43586:13;;43566:16;;43559:4;:23;;;;:::i;:::-;43558:41;;;;:::i;:::-;43536:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;43658:13:0;;43643:11;;43636:18;;:4;:18;:::i;:::-;43635:36;;;;:::i;:::-;43618:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;43728:13:0;;43714:10;;43707:17;;:4;:17;:::i;:::-;43706:35;;;;:::i;:::-;43690:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;43401:748:0;;-1:-1:-1;43401:748:0;;-1:-1:-1;;;;;43803:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43853:1;43838:12;;:16;43803:51;43799:350;;;43882:33;43911:3;43882:24;43893:12;;43882:6;:10;;:24;;;;:::i;:33::-;43875:40;;43983:12;;43964:15;;43957:4;:22;;;;:::i;:::-;43956:39;;;;:::i;:::-;43934:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;44053:12:0;;44039:10;;44032:17;;:4;:17;:::i;:::-;44031:34;;;;:::i;:::-;44014:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;44121:12:0;;44108:9;;44101:16;;:4;:16;:::i;:::-;44100:33;;;;:::i;:::-;44084:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;43799:350:0;44169:8;;44165:91;;44198:42;44214:4;44228;44235;44198:15;:42::i;:::-;44272:14;44282:4;44272:14;;:::i;:::-;;;43349:949;44310:33;44326:4;44332:2;44336:6;44310:15;:33::i;:::-;41100:3251;;;;40987:3364;;;:::o;37379:188::-;-1:-1:-1;;;;;37462:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;37462:39:0;;;;;;;;;;37519:40;;37462:39;;:31;37519:40;;;37379:188;;:::o;3222:191::-;3315:6;;;-1:-1:-1;;;;;3332:17:0;;;-1:-1:-1;;;;;;3332:17:0;;;;;;;3365:40;;3315:6;;;3332:17;3315:6;;3365:40;;3296:16;;3365:40;3285:128;3222:191;:::o;14425:733::-;-1:-1:-1;;;;;14565:20:0;;14557:70;;;;-1:-1:-1;;;14557:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14646:23:0;;14638:71;;;;-1:-1:-1;;;14638:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14806:17:0;;14782:21;14806:17;;;;;;;;;;;14842:23;;;;14834:74;;;;-1:-1:-1;;;14834:74:0;;14642:2:1;14834:74:0;;;14624:21:1;14681:2;14661:18;;;14654:30;14720:34;14700:18;;;14693:62;-1:-1:-1;;;14771:18:1;;;14764:36;14817:19;;14834:74:0;14440:402:1;14834:74:0;-1:-1:-1;;;;;14944:17:0;;;:9;:17;;;;;;;;;;;14964:22;;;14944:42;;15008:20;;;;;;;;:30;;14980:6;;14944:9;15008:30;;14980:6;;15008:30;:::i;:::-;;;;;;;;15073:9;-1:-1:-1;;;;;15056:35:0;15065:6;-1:-1:-1;;;;;15056:35:0;;15084:6;15056:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;15056:35:0;;;;;;;;15104:46;40987:3364;38554:1925;38593:23;38619:24;38637:4;38619:9;:24::i;:::-;38685:9;;38593:50;;-1:-1:-1;38654:18:0;;38675:20;;-1:-1:-1;;;;;38685:9:0;38675;:20::i;:::-;38654:41;;38706:25;38796:13;;38768:12;;38734:18;;:46;;;;:::i;:::-;:75;;;;:::i;:::-;38706:103;;38820:12;38862:18;;38849:10;:31;38845:128;;;38931:7;:29;;38959:1;38931:29;;;38941:15;38931:29;38912:15;;:49;;;;:::i;:::-;38897:12;:64;38845:128;38989:20;;;:46;;-1:-1:-1;39013:22:0;;38989:46;38985:85;;;39052:7;;;;38554:1925::o;38985:85::-;39104:18;;39086:15;:36;39082:105;;;39157:18;;39139:36;;39082:105;39248:23;39361:1;39328:17;39293:18;;39275:15;:36;;;;:::i;:::-;39274:71;;;;:::i;:::-;:88;;;;:::i;:::-;39248:114;-1:-1:-1;39373:26:0;39402:36;:15;39248:114;39402:19;:36::i;:::-;39373:65;-1:-1:-1;39479:21:0;39513:36;39373:65;39513:16;:36::i;:::-;39562:18;39583:44;:21;39609:17;39583:25;:44::i;:::-;39562:65;;39640:17;39660:78;39735:1;39714:18;;:22;;;;:::i;:::-;39693:44;;:17;:44;:::i;:::-;39675:12;;39660:28;;:10;;:14;:28::i;:78::-;39640:98;;39759:18;39780:79;39856:1;39835:18;;:22;;;;:::i;:::-;39814:44;;:17;:44;:::i;:::-;39795:13;;39780:29;;:10;;:14;:29::i;:79::-;39759:100;-1:-1:-1;39872:23:0;39759:100;39898:22;39911:9;39898:10;:22;:::i;:::-;:35;;;;:::i;:::-;39967:1;39946:18;:22;;;39979:12;:16;;;40006:13;:17;;;40058:10;;40050:47;;39872:61;;-1:-1:-1;;;;;;40058:10:0;;40082;;40050:47;39967:1;40050:47;40082:10;40058;40050:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40036:61:0;;-1:-1:-1;;40114:19:0;;;;;:42;;;40155:1;40137:15;:19;40114:42;40110:278;;;40173:46;40186:15;40203;40173:12;:46::i;:::-;40343:18;;40239:137;;;15049:25:1;;;15105:2;15090:18;;15083:34;;;15133:18;;;15126:34;;;;40239:137:0;;;;;;15037:2:1;40239:137:0;;;40110:278;40422:9;;40414:57;;-1:-1:-1;;;;;40422:9:0;;;;40445:21;;40414:57;;;;40445:21;40422:9;40414:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;38554:1925:0:o;44359:318::-;44443:13;;44427:81;;-1:-1:-1;;;;;44443:13:0;31237:6;44496:11;44471:24;44443:13;44471:9;:24::i;:::-;:36;;;;:::i;:::-;44427:15;:81::i;:::-;44534:13;;;;;;;;;-1:-1:-1;;;;;44534:13:0;-1:-1:-1;;;;;44519:34:0;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44566:42;44583:24;44601:4;44583:9;:24::i;:::-;44566:16;:42::i;:::-;44627:9;;44619:50;;-1:-1:-1;;;;;44627:9:0;;;;44647:21;44619:50;;;;;44627:9;44619:50;44627:9;44619:50;44647:21;44627:9;44619:50;;;;;;;;;;;;;;;;;;;22338:98;22396:7;22423:5;22427:1;22423;:5;:::i;:::-;22416:12;22338:98;-1:-1:-1;;;22338:98:0:o;22737:::-;22795:7;22822:5;22826:1;22822;:5;:::i;21981:98::-;22039:7;22066:5;22070:1;22066;:5;:::i;44685:589::-;44835:16;;;44849:1;44835:16;;;;;;;;44811:21;;44835:16;;;;;;;;;;-1:-1:-1;44835:16:0;44811:40;;44880:4;44862;44867:1;44862:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44862:23:0;;;-1:-1:-1;;;;;44862:23:0;;;;;44906:15;-1:-1:-1;;;;;44906:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44896:4;44901:1;44896:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44896:32:0;;;-1:-1:-1;;;;;44896:32:0;;;;;44941:62;44958:4;44973:15;44991:11;44941:8;:62::i;:::-;45042:224;;-1:-1:-1;;;45042:224:0;;-1:-1:-1;;;;;45042:15:0;:66;;;;:224;;45123:11;;45149:1;;45193:4;;45220;;45240:15;;45042:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44740:534;44685:589;:::o;45282:513::-;45430:62;45447:4;45462:15;45480:11;45430:8;:62::i;:::-;45535:15;-1:-1:-1;;;;;45535:31:0;;45574:9;45607:4;45627:11;45653:1;45696;45739:7;2025:6;;-1:-1:-1;;;;;2025:6:0;;1952:87;45739:7;45761:15;45535:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45282:513;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:241::-;3493:6;3546:2;3534:9;3525:7;3521:23;3517:32;3514:52;;;3562:1;3559;3552:12;3514:52;3601:9;3588:23;3620:28;3642:5;3620:28;:::i;3683:388::-;3751:6;3759;3812:2;3800:9;3791:7;3787:23;3783:32;3780:52;;;3828:1;3825;3818:12;3780:52;3867:9;3854:23;3886:31;3911:5;3886:31;:::i;:::-;3936:5;-1:-1:-1;3993:2:1;3978:18;;3965:32;4006:33;3965:32;4006:33;:::i;4076:380::-;4155:1;4151:12;;;;4198;;;4219:61;;4273:4;4265:6;4261:17;4251:27;;4219:61;4326:2;4318:6;4315:14;4295:18;4292:38;4289:161;;4372:10;4367:3;4363:20;4360:1;4353:31;4407:4;4404:1;4397:15;4435:4;4432:1;4425:15;4289:161;;4076:380;;;:::o;4461:356::-;4663:2;4645:21;;;4682:18;;;4675:30;4741:34;4736:2;4721:18;;4714:62;4808:2;4793:18;;4461:356::o;4822:127::-;4883:10;4878:3;4874:20;4871:1;4864:31;4914:4;4911:1;4904:15;4938:4;4935:1;4928:15;4954:168;5027:9;;;5058;;5075:15;;;5069:22;;5055:37;5045:71;;5096:18;;:::i;5127:217::-;5167:1;5193;5183:132;;5237:10;5232:3;5228:20;5225:1;5218:31;5272:4;5269:1;5262:15;5300:4;5297:1;5290:15;5183:132;-1:-1:-1;5329:9:1;;5127:217::o;6174:251::-;6244:6;6297:2;6285:9;6276:7;6272:23;6268:32;6265:52;;;6313:1;6310;6303:12;6265:52;6345:9;6339:16;6364:31;6389:5;6364:31;:::i;6739:607::-;-1:-1:-1;;;;;7098:15:1;;;7080:34;;7145:2;7130:18;;7123:34;;;;7188:2;7173:18;;7166:34;;;;7231:2;7216:18;;7209:34;;;;7280:15;;;7274:3;7259:19;;7252:44;7060:3;7312:19;;7305:35;;;;7029:3;7014:19;;6739:607::o;7351:306::-;7439:6;7447;7455;7508:2;7496:9;7487:7;7483:23;7479:32;7476:52;;;7524:1;7521;7514:12;7476:52;7553:9;7547:16;7537:26;;7603:2;7592:9;7588:18;7582:25;7572:35;;7647:2;7636:9;7632:18;7626:25;7616:35;;7351:306;;;;;:::o;7662:125::-;7727:9;;;7748:10;;;7745:36;;;7761:18;;:::i;9189:184::-;9259:6;9312:2;9300:9;9291:7;9287:23;9283:32;9280:52;;;9328:1;9325;9318:12;9280:52;-1:-1:-1;9351:16:1;;9189:184;-1:-1:-1;9189:184:1:o;9657:245::-;9724:6;9777:2;9765:9;9756:7;9752:23;9748:32;9745:52;;;9793:1;9790;9783:12;9745:52;9825:9;9819:16;9844:28;9866:5;9844:28;:::i;12376:401::-;12578:2;12560:21;;;12617:2;12597:18;;;12590:30;12656:34;12651:2;12636:18;;12629:62;-1:-1:-1;;;12722:2:1;12707:18;;12700:35;12767:3;12752:19;;12376:401::o;12782:399::-;12984:2;12966:21;;;13023:2;13003:18;;;12996:30;13062:34;13057:2;13042:18;;13035:62;-1:-1:-1;;;13128:2:1;13113:18;;13106:33;13171:3;13156:19;;12782:399::o;14307:128::-;14374:9;;;14395:11;;;14392:37;;;14409:18;;:::i;15303:127::-;15364:10;15359:3;15355:20;15352:1;15345:31;15395:4;15392:1;15385:15;15419:4;15416:1;15409:15;15435:980;15697:4;15745:3;15734:9;15730:19;15776:6;15765:9;15758:25;15802:2;15840:6;15835:2;15824:9;15820:18;15813:34;15883:3;15878:2;15867:9;15863:18;15856:31;15907:6;15942;15936:13;15973:6;15965;15958:22;16011:3;16000:9;15996:19;15989:26;;16050:2;16042:6;16038:15;16024:29;;16071:1;16081:195;16095:6;16092:1;16089:13;16081:195;;;16160:13;;-1:-1:-1;;;;;16156:39:1;16144:52;;16251:15;;;;16216:12;;;;16192:1;16110:9;16081:195;;;-1:-1:-1;;;;;;;16332:32:1;;;;16327:2;16312:18;;16305:60;-1:-1:-1;;;16396:3:1;16381:19;16374:35;16293:3;15435:980;-1:-1:-1;;;15435:980:1:o

Swarm Source

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