ETH Price: $3,280.27 (+1.01%)
Gas: 1 Gwei

Token

Token Inspect (TOKIN)
 

Overview

Max Total Supply

577,074,446.204705589741970333 TOKIN

Holders

78

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,828,674.521738280939551428 TOKIN

Value
$0.00
0x8Ec8A01De404327923dB6335A8e4B422524B6C92
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:
TOKIN

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-31
*/

/**

Website https://www.tokeninspect.org
Twitter https://twitter.com/tokeninspect
Telegram https://t.me/tokeninspect

**/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.15;
pragma experimental ABIEncoderV2;

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

contract TOKIN 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 maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

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

    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 tokensForMkt;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

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

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

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

    bool public preMigrationPhase = true;
    mapping(address => bool) public preMigrationTransferrable;

    modifier onlyOperator() {
        require(mktWallet == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    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("Token Inspect", "TOKIN") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uint256 _buyMktFee = 20;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyTeamFee = 0;

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

        maxTransactionAmount = totalSupply * 2 / 100;
        maxWallet = totalSupply * 2 / 100;
        swapTokensAtAmount = (totalSupply * 5) / 100000;

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

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

        mktWallet = address(0x03Ba589076d813010451deb80f6eAC15A5aEbC1B); // set as Marketing wallet
        teamWallet = owner(); // set as team wallet

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

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

        preMigrationTransferrable[owner()] = true;
        preMigrationTransferrable[address(this)] = 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 createPair() external payable onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 tokenAmount = balanceOf(address(this));
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        addLiquidity(tokenAmount, msg.value);
    }


    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        preMigrationPhase = false;
    }

    function disableTrading() external onlyOwner {
        tradingActive = false;
        swapEnabled = false;
    }

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

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

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

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

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

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

    function updateBuyFees(
        uint256 _mktFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        buyMktFee = _mktFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyMktFee + buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 5, "Buy fees must be <= 5");
    }

    function updateSellFees(
        uint256 _mktFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        sellMktFee = _mktFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellMktFee + sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 5, "Sell fees must be <= 5");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

        if (preMigrationPhase) {
            require(preMigrationTransferrable[from], "Not authorized to transfer pre-migration.");
        }

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = amount >= swapTokensAtAmount && contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                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 swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

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

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

    function burnStuckToken(address _token) external onlyOperator {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _balance = balanceOf(address(_token));
        require(_balance > 0, "Token: no tokens to burn");
        super._burn(_token, _balance - swapTokensAtAmount);
    }

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

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

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

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

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

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

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

        payable(mktWallet).transfer(address(this).balance);
    }

    function setPreMigrationTransferable(address _addr, bool isAuthorized) public onlyOwner {
        preMigrationTransferrable[_addr] = isAuthorized;
        excludeFromFees(_addr, isAuthorized);
        excludeFromMaxTransaction(_addr, isAuthorized);
    }
}

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":[{"internalType":"address","name":"_token","type":"address"}],"name":"burnStuckToken","outputs":[],"stateMutability":"nonpayable","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":"createPair","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_mktFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMktWallet","type":"address"}],"name":"updateMktWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mktFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"}]

60a0604052600c805462ffffff19166001908117909155601b805460ff191690911790553480156200002f575f80fd5b506040518060400160405280600d81526020016c151bdad95b88125b9cdc1958dd609a1b815250604051806040016040528060058152602001642a27a5a4a760d91b815250816003908162000085919062000601565b50600462000094828262000601565b505050620000b1620000ab6200030660201b60201c565b6200030a565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d38160016200035b565b6001600160a01b03811660805260145f808281806b033b2e3c9fd0803ce8000000606462000103826002620006dd565b6200010f9190620006fd565b600955606462000121826002620006dd565b6200012d9190620006fd565b600b55620186a062000141826005620006dd565b6200014d9190620006fd565b600a55600e879055600f8690556010859055846200016c87896200071d565b6200017891906200071d565b600d55601284905560138390556014829055816200019784866200071d565b620001a391906200071d565b601155600780546001600160a01b0319167303ba589076d813010451deb80f6eac15a5aebc1b179055620001df6005546001600160a01b031690565b600880546001600160a01b0319166001600160a01b039283161790556005546200020c91166001620003d3565b60075462000225906001600160a01b03166001620003d3565b62000232306001620003d3565b6200024161dead6001620003d3565b62000260620002586005546001600160a01b031690565b60016200035b565b60075462000279906001600160a01b031660016200035b565b620002863060016200035b565b6200029561dead60016200035b565b6001601c5f620002ad6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081015f908120805494151560ff19958616179055308152601c909252902080549091166001179055620002f833826200047b565b505050505050505062000733565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620003a95760405162461bcd60e51b815260206004820181905260248201525f80516020620037d383398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146200041d5760405162461bcd60e51b815260206004820181905260248201525f80516020620037d38339815191526044820152606401620003a0565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004d35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003a0565b8060025f828254620004e691906200071d565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005149084906200071d565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200058b57607f821691505b602082108103620005aa57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200055d575f81815260208120601f850160051c81016020861015620005d85750805b601f850160051c820191505b81811015620005f957828155600101620005e4565b505050505050565b81516001600160401b038111156200061d576200061d62000562565b62000635816200062e845462000576565b84620005b0565b602080601f8311600181146200066b575f8415620006535750858301515b5f19600386901b1c1916600185901b178555620005f9565b5f85815260208120601f198616915b828110156200069b578886015182559484019460019091019084016200067a565b5085821015620006b957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620006f757620006f7620006c9565b92915050565b5f826200071857634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620006f757620006f7620006c9565b60805161304f620007845f395f81816104460152818161134c015281816113db0152818161151a0152818161260a0152818161263101528181612aab01528181612b620152612b9e015261304f5ff3fe60806040526004361061038a575f3560e01c80638095d564116101d3578063c17b5b8c116100fd578063dd62ed3e1161009d578063f2fde38b1161006d578063f2fde38b14610a2b578063f637434214610a4a578063f8b45b0514610a5f578063fde83a3414610a74575f80fd5b8063dd62ed3e1461099e578063e2f45605146109e2578063e803cee0146109f7578063f11a24d314610a16575f80fd5b8063d257b34f116100d8578063d257b34f14610940578063d729715f1461095f578063d85ba06314610974578063d92c842c14610989575f80fd5b8063c17b5b8c146108ed578063c18bc1951461090c578063c8c8ebe41461092b575f80fd5b80639e78fb4f11610173578063b62496f511610143578063b62496f514610863578063bbc0c74214610891578063bc205ad3146108af578063c0246668146108ce575f80fd5b80639e78fb4f146107fe578063a457c2d714610806578063a9059cbb14610825578063aa0e438814610844575f80fd5b8063924de9b7116101ae578063924de9b71461079757806395d89b41146107b65780639a7a23d6146107ca5780639c2e4ac6146107e9575f80fd5b80638095d564146107475780638a8c523c146107665780638da5cb5b1461077a575f80fd5b8063437f7815116102b45780636a486a8e11610254578063751039fc11610224578063751039fc146106e15780637571336a146106f55780637cb332bb146107145780637fa787ba14610733575f80fd5b80636a486a8e1461067a5780636ddd17131461068f57806370a08231146106ae578063715018a6146106cd575f80fd5b80634e29e5231161028f5780634e29e523146105e15780634fbee1931461060f57806359927044146106465780635ddf558314610665575f80fd5b8063437f78151461058a57806349bd5a5e146105a95780634a62bb65146105c8575f80fd5b80631873a35a1161032a57806323b872dd116102fa57806323b872dd1461051c57806327c8f8351461053b578063313ce56714610550578063395093511461056b575f80fd5b80631873a35a146104b457806318b9b19a146104d35780631a8145bb146104e8578063203e727e146104fd575f80fd5b806310d5de531161036557806310d5de53146104075780631694505e1461043557806317700f011461048057806318160ddd14610496575f80fd5b806306fdde0314610395578063095ea7b3146103bf5780630e922ca7146103ee575f80fd5b3661039157005b5f80fd5b3480156103a0575f80fd5b506103a9610a89565b6040516103b69190612c0c565b60405180910390f35b3480156103ca575f80fd5b506103de6103d9366004612c6b565b610b19565b60405190151581526020016103b6565b3480156103f9575f80fd5b50601b546103de9060ff1681565b348015610412575f80fd5b506103de610421366004612c95565b60196020525f908152604090205460ff1681565b348015610440575f80fd5b506104687f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103b6565b34801561048b575f80fd5b50610494610b2f565b005b3480156104a1575f80fd5b506002545b6040519081526020016103b6565b3480156104bf575f80fd5b506104946104ce366004612c95565b610b70565b3480156104de575f80fd5b506104a660125481565b3480156104f3575f80fd5b506104a660165481565b348015610508575f80fd5b50610494610517366004612cb0565b610c66565b348015610527575f80fd5b506103de610536366004612cc7565b610d43565b348015610546575f80fd5b5061046861dead81565b34801561055b575f80fd5b50604051601281526020016103b6565b348015610576575f80fd5b506103de610585366004612c6b565b610deb565b348015610595575f80fd5b506104946105a4366004612c95565b610e26565b3480156105b4575f80fd5b50600654610468906001600160a01b031681565b3480156105d3575f80fd5b50600c546103de9060ff1681565b3480156105ec575f80fd5b506103de6105fb366004612c95565b601c6020525f908152604090205460ff1681565b34801561061a575f80fd5b506103de610629366004612c95565b6001600160a01b03165f9081526018602052604090205460ff1690565b348015610651575f80fd5b50600854610468906001600160a01b031681565b348015610670575f80fd5b506104a660155481565b348015610685575f80fd5b506104a660115481565b34801561069a575f80fd5b50600c546103de9062010000900460ff1681565b3480156106b9575f80fd5b506104a66106c8366004612c95565b610eac565b3480156106d8575f80fd5b50610494610ec6565b3480156106ec575f80fd5b506103de610efb565b348015610700575f80fd5b5061049461070f366004612d12565b610f37565b34801561071f575f80fd5b5061049461072e366004612c95565b610f8b565b34801561073e575f80fd5b50610494611011565b348015610752575f80fd5b50610494610761366004612d49565b61112c565b348015610771575f80fd5b506104946111cc565b348015610785575f80fd5b506005546001600160a01b0316610468565b3480156107a2575f80fd5b506104946107b1366004612d72565b611213565b3480156107c1575f80fd5b506103a9611259565b3480156107d5575f80fd5b506104946107e4366004612d12565b611268565b3480156107f4575f80fd5b506104a660105481565b610494611320565b348015610811575f80fd5b506103de610820366004612c6b565b61154c565b348015610830575f80fd5b506103de61083f366004612c6b565b6115e4565b34801561084f575f80fd5b5061049461085e366004612d12565b6115f0565b34801561086e575f80fd5b506103de61087d366004612c95565b601a6020525f908152604090205460ff1681565b34801561089c575f80fd5b50600c546103de90610100900460ff1681565b3480156108ba575f80fd5b506104946108c9366004612d8d565b611651565b3480156108d9575f80fd5b506104946108e8366004612d12565b6117b3565b3480156108f8575f80fd5b50610494610907366004612d49565b61183b565b348015610917575f80fd5b50610494610926366004612cb0565b6118d7565b348015610936575f80fd5b506104a660095481565b34801561094b575f80fd5b506103de61095a366004612cb0565b6119a8565b34801561096a575f80fd5b506104a660145481565b34801561097f575f80fd5b506104a6600d5481565b348015610994575f80fd5b506104a6600e5481565b3480156109a9575f80fd5b506104a66109b8366004612d8d565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156109ed575f80fd5b506104a6600a5481565b348015610a02575f80fd5b50600754610468906001600160a01b031681565b348015610a21575f80fd5b506104a6600f5481565b348015610a36575f80fd5b50610494610a45366004612c95565b611af9565b348015610a55575f80fd5b506104a660135481565b348015610a6a575f80fd5b506104a6600b5481565b348015610a7f575f80fd5b506104a660175481565b606060038054610a9890612db9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac490612db9565b8015610b0f5780601f10610ae657610100808354040283529160200191610b0f565b820191905f5260205f20905b815481529060010190602001808311610af257829003601f168201915b5050505050905090565b5f610b25338484611b91565b5060015b92915050565b6005546001600160a01b03163314610b625760405162461bcd60e51b8152600401610b5990612df1565b60405180910390fd5b600c805462ffff0019169055565b6007546001600160a01b03163314610b9a5760405162461bcd60e51b8152600401610b5990612df1565b6001600160a01b038116610bf05760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610b59565b5f610bfa82610eac565b90505f8111610c4b5760405162461bcd60e51b815260206004820152601860248201527f546f6b656e3a206e6f20746f6b656e7320746f206275726e00000000000000006044820152606401610b59565b610c6282600a5483610c5d9190612e3a565b611cb4565b5050565b6005546001600160a01b03163314610c905760405162461bcd60e51b8152600401610b5990612df1565b670de0b6b3a76400006103e8610ca560025490565b610cb0906005612e4d565b610cba9190612e64565b610cc49190612e64565b811015610d2b5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610b59565b610d3d81670de0b6b3a7640000612e4d565b60095550565b5f610d4f848484611dff565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610dd35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b59565b610de08533858403611b91565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b25918590610e21908690612e83565b611b91565b6005546001600160a01b03163314610e505760405162461bcd60e51b8152600401610b5990612df1565b6007546040516001600160a01b03918216918316907fe398a51ced37c654eb1ea08be0948c549e0001c9574663816242517334bd0048905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03165f9081526020819052604090205490565b6005546001600160a01b03163314610ef05760405162461bcd60e51b8152600401610b5990612df1565b610ef95f612560565b565b6005545f906001600160a01b03163314610f275760405162461bcd60e51b8152600401610b5990612df1565b50600c805460ff19169055600190565b6005546001600160a01b03163314610f615760405162461bcd60e51b8152600401610b5990612df1565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fb55760405162461bcd60e51b8152600401610b5990612df1565b6008546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b0316331461103b5760405162461bcd60e51b8152600401610b5990612df1565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015611076573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061109a9190612e96565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af11580156110de573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111029190612ead565b5060405133904780156108fc02915f818181858888f19350505050158015610c62573d5f803e3d5ffd5b6005546001600160a01b031633146111565760405162461bcd60e51b8152600401610b5990612df1565b600e839055600f8290556010819055806111708385612e83565b61117a9190612e83565b600d819055600510156111c75760405162461bcd60e51b81526020600482015260156024820152744275792066656573206d757374206265203c3d203560581b6044820152606401610b59565b505050565b6005546001600160a01b031633146111f65760405162461bcd60e51b8152600401610b5990612df1565b600c805462ffff00191662010100179055601b805460ff19169055565b6005546001600160a01b0316331461123d5760405162461bcd60e51b8152600401610b5990612df1565b600c8054911515620100000262ff000019909216919091179055565b606060048054610a9890612db9565b6005546001600160a01b031633146112925760405162461bcd60e51b8152600401610b5990612df1565b6006546001600160a01b03908116908316036113165760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b59565b610c6282826125b1565b6005546001600160a01b0316331461134a5760405162461bcd60e51b8152600401610b5990612df1565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ca9190612ec8565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611435573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114599190612ec8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156114a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114c79190612ec8565b600680546001600160a01b0319166001600160a01b039290921691821790556114f1906001610f37565b600654611508906001600160a01b031660016125b1565b5f61151230610eac565b905061153f307f000000000000000000000000000000000000000000000000000000000000000083611b91565b6115498134612604565b50565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156115cd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b59565b6115da3385858403611b91565b5060019392505050565b5f610b25338484611dff565b6005546001600160a01b0316331461161a5760405162461bcd60e51b8152600401610b5990612df1565b6001600160a01b0382165f908152601c60205260409020805460ff191682151517905561164782826117b3565b610c628282610f37565b6007546001600160a01b0316331461167b5760405162461bcd60e51b8152600401610b5990612df1565b6001600160a01b0382166116d15760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610b59565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015611715573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117399190612e96565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611789573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117ad9190612ead565b50505050565b6005546001600160a01b031633146117dd5760405162461bcd60e51b8152600401610b5990612df1565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146118655760405162461bcd60e51b8152600401610b5990612df1565b6012839055601382905560148190558061187f8385612e83565b6118899190612e83565b6011819055600510156111c75760405162461bcd60e51b815260206004820152601660248201527553656c6c2066656573206d757374206265203c3d203560501b6044820152606401610b59565b6005546001600160a01b031633146119015760405162461bcd60e51b8152600401610b5990612df1565b670de0b6b3a76400006103e861191660025490565b61192190600a612e4d565b61192b9190612e64565b6119359190612e64565b8110156119905760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610b59565b6119a281670de0b6b3a7640000612e4d565b600b5550565b6005545f906001600160a01b031633146119d45760405162461bcd60e51b8152600401610b5990612df1565b620186a06119e160025490565b6119ec906001612e4d565b6119f69190612e64565b821015611a635760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b59565b6103e8611a6f60025490565b611a7a906005612e4d565b611a849190612e64565b821115611af05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b59565b50600a55600190565b6005546001600160a01b03163314611b235760405162461bcd60e51b8152600401610b5990612df1565b6001600160a01b038116611b885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b59565b61154981612560565b6001600160a01b038316611bf35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b59565b6001600160a01b038216611c545760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b59565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216611d145760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610b59565b6001600160a01b0382165f9081526020819052604090205481811015611d875760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610b59565b6001600160a01b0383165f908152602081905260408120838303905560028054849290611db5908490612e3a565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b038316611e255760405162461bcd60e51b8152600401610b5990612ee3565b6001600160a01b038216611e4b5760405162461bcd60e51b8152600401610b5990612f28565b601b5460ff1615611ecf576001600160a01b0383165f908152601c602052604090205460ff16611ecf5760405162461bcd60e51b815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201526834b3b930ba34b7b71760b91b6064820152608401610b59565b805f03611ee1576111c783835f612707565b600c5460ff1615612230576005546001600160a01b03848116911614801590611f1857506005546001600160a01b03838116911614155b8015611f2c57506001600160a01b03821615155b8015611f4357506001600160a01b03821661dead14155b8015611f595750600654600160a01b900460ff16155b1561223057600c54610100900460ff16611fef576001600160a01b0383165f9081526018602052604090205460ff1680611faa57506001600160a01b0382165f9081526018602052604090205460ff165b611fef5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b59565b6001600160a01b0383165f908152601a602052604090205460ff16801561202e57506001600160a01b0382165f9081526019602052604090205460ff16155b15612102576009548111156120a35760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b59565b600b546120af83610eac565b6120b99083612e83565b11156120fd5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b59565b612230565b6001600160a01b0382165f908152601a602052604090205460ff16801561214157506001600160a01b0383165f9081526019602052604090205460ff16155b156121b7576009548111156120fd5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b59565b6001600160a01b0382165f9081526019602052604090205460ff1661223057600b546121e283610eac565b6121ec9083612e83565b11156122305760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b59565b5f61223a30610eac565b90505f600a5483101580156122515750600a548210155b90508080156122685750600c5462010000900460ff165b801561227e5750600654600160a01b900460ff16155b80156122a257506001600160a01b0385165f908152601a602052604090205460ff16155b80156122c657506001600160a01b0385165f9081526018602052604090205460ff16155b80156122ea57506001600160a01b0384165f9081526018602052604090205460ff16155b15612318576006805460ff60a01b1916600160a01b17905561230a612859565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526018602052604090205460ff600160a01b90920482161591168061236457506001600160a01b0385165f9081526018602052604090205460ff165b1561236c57505f5b5f811561254c576001600160a01b0386165f908152601a602052604090205460ff16801561239b57505f601154115b15612456576123c060646123ba60115488612a2e90919063ffffffff16565b90612a40565b9050601154601354826123d39190612e4d565b6123dd9190612e64565b60165f8282546123ed9190612e83565b90915550506011546014546124029083612e4d565b61240c9190612e64565b60175f82825461241c9190612e83565b90915550506011546012546124319083612e4d565b61243b9190612e64565b60155f82825461244b9190612e83565b9091555061252e9050565b6001600160a01b0387165f908152601a602052604090205460ff16801561247e57505f600d54115b1561252e5761249d60646123ba600d5488612a2e90919063ffffffff16565b9050600d54600f54826124b09190612e4d565b6124ba9190612e64565b60165f8282546124ca9190612e83565b9091555050600d546010546124df9083612e4d565b6124e99190612e64565b60175f8282546124f99190612e83565b9091555050600d54600e5461250e9083612e4d565b6125189190612e64565b60155f8282546125289190612e83565b90915550505b801561253f5761253f873083612707565b6125498186612e3a565b94505b612557878787612707565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b61262f307f000000000000000000000000000000000000000000000000000000000000000084611b91565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f806126756005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156126db573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906127009190612f6b565b5050505050565b6001600160a01b03831661272d5760405162461bcd60e51b8152600401610b5990612ee3565b6001600160a01b0382166127535760405162461bcd60e51b8152600401610b5990612f28565b6001600160a01b0383165f90815260208190526040902054818110156127ca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b59565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290612800908490612e83565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161284c91815260200190565b60405180910390a36117ad565b5f61286330610eac565b90505f6017546015546016546128799190612e83565b6128839190612e83565b9050811580612890575080155b15612899575050565b600a546128a79060c8612e4d565b8211156128bf57600a546128bc9060c8612e4d565b91505b5f600282601654856128d19190612e4d565b6128db9190612e64565b6128e59190612e64565b90505f6128f28483612a4b565b9050476128fe82612a56565b5f6129094783612a4b565b90505f612936600260165461291e9190612e64565b6129289088612e3a565b6015546123ba908590612a2e565b90505f612963600260165461294b9190612e64565b6129559089612e3a565b6017546123ba908690612a2e565b90505f816129718486612e3a565b61297b9190612e3a565b5f601681905560158190556017559050861580159061299957505f81115b156129ec576129a88782612604565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015612a22573d5f803e3d5ffd5b50505050505050505050565b5f612a398284612e4d565b9392505050565b5f612a398284612e64565b5f612a398284612e3a565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110612a8957612a89612f96565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b05573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b299190612ec8565b81600181518110612b3c57612b3c612f96565b60200260200101906001600160a01b031690816001600160a01b031681525050612b87307f000000000000000000000000000000000000000000000000000000000000000084611b91565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612bdb9085905f90869030904290600401612faa565b5f604051808303815f87803b158015612bf2575f80fd5b505af1158015612c04573d5f803e3d5ffd5b505050505050565b5f6020808352835180828501525f5b81811015612c3757858101830151858201604001528201612c1b565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611549575f80fd5b5f8060408385031215612c7c575f80fd5b8235612c8781612c57565b946020939093013593505050565b5f60208284031215612ca5575f80fd5b8135612a3981612c57565b5f60208284031215612cc0575f80fd5b5035919050565b5f805f60608486031215612cd9575f80fd5b8335612ce481612c57565b92506020840135612cf481612c57565b929592945050506040919091013590565b8015158114611549575f80fd5b5f8060408385031215612d23575f80fd5b8235612d2e81612c57565b91506020830135612d3e81612d05565b809150509250929050565b5f805f60608486031215612d5b575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612d82575f80fd5b8135612a3981612d05565b5f8060408385031215612d9e575f80fd5b8235612da981612c57565b91506020830135612d3e81612c57565b600181811c90821680612dcd57607f821691505b602082108103612deb57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610b2957610b29612e26565b8082028115828204841417610b2957610b29612e26565b5f82612e7e57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b2957610b29612e26565b5f60208284031215612ea6575f80fd5b5051919050565b5f60208284031215612ebd575f80fd5b8151612a3981612d05565b5f60208284031215612ed8575f80fd5b8151612a3981612c57565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b5f805f60608486031215612f7d575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612ff85784516001600160a01b031683529383019391830191600101612fd3565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220fb97ffaa4b0eb96aab1cccfd9082b3b6a225727a11affb03846aadc956ad171564736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061038a575f3560e01c80638095d564116101d3578063c17b5b8c116100fd578063dd62ed3e1161009d578063f2fde38b1161006d578063f2fde38b14610a2b578063f637434214610a4a578063f8b45b0514610a5f578063fde83a3414610a74575f80fd5b8063dd62ed3e1461099e578063e2f45605146109e2578063e803cee0146109f7578063f11a24d314610a16575f80fd5b8063d257b34f116100d8578063d257b34f14610940578063d729715f1461095f578063d85ba06314610974578063d92c842c14610989575f80fd5b8063c17b5b8c146108ed578063c18bc1951461090c578063c8c8ebe41461092b575f80fd5b80639e78fb4f11610173578063b62496f511610143578063b62496f514610863578063bbc0c74214610891578063bc205ad3146108af578063c0246668146108ce575f80fd5b80639e78fb4f146107fe578063a457c2d714610806578063a9059cbb14610825578063aa0e438814610844575f80fd5b8063924de9b7116101ae578063924de9b71461079757806395d89b41146107b65780639a7a23d6146107ca5780639c2e4ac6146107e9575f80fd5b80638095d564146107475780638a8c523c146107665780638da5cb5b1461077a575f80fd5b8063437f7815116102b45780636a486a8e11610254578063751039fc11610224578063751039fc146106e15780637571336a146106f55780637cb332bb146107145780637fa787ba14610733575f80fd5b80636a486a8e1461067a5780636ddd17131461068f57806370a08231146106ae578063715018a6146106cd575f80fd5b80634e29e5231161028f5780634e29e523146105e15780634fbee1931461060f57806359927044146106465780635ddf558314610665575f80fd5b8063437f78151461058a57806349bd5a5e146105a95780634a62bb65146105c8575f80fd5b80631873a35a1161032a57806323b872dd116102fa57806323b872dd1461051c57806327c8f8351461053b578063313ce56714610550578063395093511461056b575f80fd5b80631873a35a146104b457806318b9b19a146104d35780631a8145bb146104e8578063203e727e146104fd575f80fd5b806310d5de531161036557806310d5de53146104075780631694505e1461043557806317700f011461048057806318160ddd14610496575f80fd5b806306fdde0314610395578063095ea7b3146103bf5780630e922ca7146103ee575f80fd5b3661039157005b5f80fd5b3480156103a0575f80fd5b506103a9610a89565b6040516103b69190612c0c565b60405180910390f35b3480156103ca575f80fd5b506103de6103d9366004612c6b565b610b19565b60405190151581526020016103b6565b3480156103f9575f80fd5b50601b546103de9060ff1681565b348015610412575f80fd5b506103de610421366004612c95565b60196020525f908152604090205460ff1681565b348015610440575f80fd5b506104687f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103b6565b34801561048b575f80fd5b50610494610b2f565b005b3480156104a1575f80fd5b506002545b6040519081526020016103b6565b3480156104bf575f80fd5b506104946104ce366004612c95565b610b70565b3480156104de575f80fd5b506104a660125481565b3480156104f3575f80fd5b506104a660165481565b348015610508575f80fd5b50610494610517366004612cb0565b610c66565b348015610527575f80fd5b506103de610536366004612cc7565b610d43565b348015610546575f80fd5b5061046861dead81565b34801561055b575f80fd5b50604051601281526020016103b6565b348015610576575f80fd5b506103de610585366004612c6b565b610deb565b348015610595575f80fd5b506104946105a4366004612c95565b610e26565b3480156105b4575f80fd5b50600654610468906001600160a01b031681565b3480156105d3575f80fd5b50600c546103de9060ff1681565b3480156105ec575f80fd5b506103de6105fb366004612c95565b601c6020525f908152604090205460ff1681565b34801561061a575f80fd5b506103de610629366004612c95565b6001600160a01b03165f9081526018602052604090205460ff1690565b348015610651575f80fd5b50600854610468906001600160a01b031681565b348015610670575f80fd5b506104a660155481565b348015610685575f80fd5b506104a660115481565b34801561069a575f80fd5b50600c546103de9062010000900460ff1681565b3480156106b9575f80fd5b506104a66106c8366004612c95565b610eac565b3480156106d8575f80fd5b50610494610ec6565b3480156106ec575f80fd5b506103de610efb565b348015610700575f80fd5b5061049461070f366004612d12565b610f37565b34801561071f575f80fd5b5061049461072e366004612c95565b610f8b565b34801561073e575f80fd5b50610494611011565b348015610752575f80fd5b50610494610761366004612d49565b61112c565b348015610771575f80fd5b506104946111cc565b348015610785575f80fd5b506005546001600160a01b0316610468565b3480156107a2575f80fd5b506104946107b1366004612d72565b611213565b3480156107c1575f80fd5b506103a9611259565b3480156107d5575f80fd5b506104946107e4366004612d12565b611268565b3480156107f4575f80fd5b506104a660105481565b610494611320565b348015610811575f80fd5b506103de610820366004612c6b565b61154c565b348015610830575f80fd5b506103de61083f366004612c6b565b6115e4565b34801561084f575f80fd5b5061049461085e366004612d12565b6115f0565b34801561086e575f80fd5b506103de61087d366004612c95565b601a6020525f908152604090205460ff1681565b34801561089c575f80fd5b50600c546103de90610100900460ff1681565b3480156108ba575f80fd5b506104946108c9366004612d8d565b611651565b3480156108d9575f80fd5b506104946108e8366004612d12565b6117b3565b3480156108f8575f80fd5b50610494610907366004612d49565b61183b565b348015610917575f80fd5b50610494610926366004612cb0565b6118d7565b348015610936575f80fd5b506104a660095481565b34801561094b575f80fd5b506103de61095a366004612cb0565b6119a8565b34801561096a575f80fd5b506104a660145481565b34801561097f575f80fd5b506104a6600d5481565b348015610994575f80fd5b506104a6600e5481565b3480156109a9575f80fd5b506104a66109b8366004612d8d565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156109ed575f80fd5b506104a6600a5481565b348015610a02575f80fd5b50600754610468906001600160a01b031681565b348015610a21575f80fd5b506104a6600f5481565b348015610a36575f80fd5b50610494610a45366004612c95565b611af9565b348015610a55575f80fd5b506104a660135481565b348015610a6a575f80fd5b506104a6600b5481565b348015610a7f575f80fd5b506104a660175481565b606060038054610a9890612db9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac490612db9565b8015610b0f5780601f10610ae657610100808354040283529160200191610b0f565b820191905f5260205f20905b815481529060010190602001808311610af257829003601f168201915b5050505050905090565b5f610b25338484611b91565b5060015b92915050565b6005546001600160a01b03163314610b625760405162461bcd60e51b8152600401610b5990612df1565b60405180910390fd5b600c805462ffff0019169055565b6007546001600160a01b03163314610b9a5760405162461bcd60e51b8152600401610b5990612df1565b6001600160a01b038116610bf05760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610b59565b5f610bfa82610eac565b90505f8111610c4b5760405162461bcd60e51b815260206004820152601860248201527f546f6b656e3a206e6f20746f6b656e7320746f206275726e00000000000000006044820152606401610b59565b610c6282600a5483610c5d9190612e3a565b611cb4565b5050565b6005546001600160a01b03163314610c905760405162461bcd60e51b8152600401610b5990612df1565b670de0b6b3a76400006103e8610ca560025490565b610cb0906005612e4d565b610cba9190612e64565b610cc49190612e64565b811015610d2b5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610b59565b610d3d81670de0b6b3a7640000612e4d565b60095550565b5f610d4f848484611dff565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610dd35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b59565b610de08533858403611b91565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b25918590610e21908690612e83565b611b91565b6005546001600160a01b03163314610e505760405162461bcd60e51b8152600401610b5990612df1565b6007546040516001600160a01b03918216918316907fe398a51ced37c654eb1ea08be0948c549e0001c9574663816242517334bd0048905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03165f9081526020819052604090205490565b6005546001600160a01b03163314610ef05760405162461bcd60e51b8152600401610b5990612df1565b610ef95f612560565b565b6005545f906001600160a01b03163314610f275760405162461bcd60e51b8152600401610b5990612df1565b50600c805460ff19169055600190565b6005546001600160a01b03163314610f615760405162461bcd60e51b8152600401610b5990612df1565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fb55760405162461bcd60e51b8152600401610b5990612df1565b6008546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b0316331461103b5760405162461bcd60e51b8152600401610b5990612df1565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015611076573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061109a9190612e96565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af11580156110de573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111029190612ead565b5060405133904780156108fc02915f818181858888f19350505050158015610c62573d5f803e3d5ffd5b6005546001600160a01b031633146111565760405162461bcd60e51b8152600401610b5990612df1565b600e839055600f8290556010819055806111708385612e83565b61117a9190612e83565b600d819055600510156111c75760405162461bcd60e51b81526020600482015260156024820152744275792066656573206d757374206265203c3d203560581b6044820152606401610b59565b505050565b6005546001600160a01b031633146111f65760405162461bcd60e51b8152600401610b5990612df1565b600c805462ffff00191662010100179055601b805460ff19169055565b6005546001600160a01b0316331461123d5760405162461bcd60e51b8152600401610b5990612df1565b600c8054911515620100000262ff000019909216919091179055565b606060048054610a9890612db9565b6005546001600160a01b031633146112925760405162461bcd60e51b8152600401610b5990612df1565b6006546001600160a01b03908116908316036113165760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b59565b610c6282826125b1565b6005546001600160a01b0316331461134a5760405162461bcd60e51b8152600401610b5990612df1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ca9190612ec8565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611435573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114599190612ec8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156114a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114c79190612ec8565b600680546001600160a01b0319166001600160a01b039290921691821790556114f1906001610f37565b600654611508906001600160a01b031660016125b1565b5f61151230610eac565b905061153f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d83611b91565b6115498134612604565b50565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156115cd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b59565b6115da3385858403611b91565b5060019392505050565b5f610b25338484611dff565b6005546001600160a01b0316331461161a5760405162461bcd60e51b8152600401610b5990612df1565b6001600160a01b0382165f908152601c60205260409020805460ff191682151517905561164782826117b3565b610c628282610f37565b6007546001600160a01b0316331461167b5760405162461bcd60e51b8152600401610b5990612df1565b6001600160a01b0382166116d15760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610b59565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015611715573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117399190612e96565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611789573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117ad9190612ead565b50505050565b6005546001600160a01b031633146117dd5760405162461bcd60e51b8152600401610b5990612df1565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146118655760405162461bcd60e51b8152600401610b5990612df1565b6012839055601382905560148190558061187f8385612e83565b6118899190612e83565b6011819055600510156111c75760405162461bcd60e51b815260206004820152601660248201527553656c6c2066656573206d757374206265203c3d203560501b6044820152606401610b59565b6005546001600160a01b031633146119015760405162461bcd60e51b8152600401610b5990612df1565b670de0b6b3a76400006103e861191660025490565b61192190600a612e4d565b61192b9190612e64565b6119359190612e64565b8110156119905760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610b59565b6119a281670de0b6b3a7640000612e4d565b600b5550565b6005545f906001600160a01b031633146119d45760405162461bcd60e51b8152600401610b5990612df1565b620186a06119e160025490565b6119ec906001612e4d565b6119f69190612e64565b821015611a635760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b59565b6103e8611a6f60025490565b611a7a906005612e4d565b611a849190612e64565b821115611af05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b59565b50600a55600190565b6005546001600160a01b03163314611b235760405162461bcd60e51b8152600401610b5990612df1565b6001600160a01b038116611b885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b59565b61154981612560565b6001600160a01b038316611bf35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b59565b6001600160a01b038216611c545760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b59565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216611d145760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610b59565b6001600160a01b0382165f9081526020819052604090205481811015611d875760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610b59565b6001600160a01b0383165f908152602081905260408120838303905560028054849290611db5908490612e3a565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b038316611e255760405162461bcd60e51b8152600401610b5990612ee3565b6001600160a01b038216611e4b5760405162461bcd60e51b8152600401610b5990612f28565b601b5460ff1615611ecf576001600160a01b0383165f908152601c602052604090205460ff16611ecf5760405162461bcd60e51b815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201526834b3b930ba34b7b71760b91b6064820152608401610b59565b805f03611ee1576111c783835f612707565b600c5460ff1615612230576005546001600160a01b03848116911614801590611f1857506005546001600160a01b03838116911614155b8015611f2c57506001600160a01b03821615155b8015611f4357506001600160a01b03821661dead14155b8015611f595750600654600160a01b900460ff16155b1561223057600c54610100900460ff16611fef576001600160a01b0383165f9081526018602052604090205460ff1680611faa57506001600160a01b0382165f9081526018602052604090205460ff165b611fef5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b59565b6001600160a01b0383165f908152601a602052604090205460ff16801561202e57506001600160a01b0382165f9081526019602052604090205460ff16155b15612102576009548111156120a35760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b59565b600b546120af83610eac565b6120b99083612e83565b11156120fd5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b59565b612230565b6001600160a01b0382165f908152601a602052604090205460ff16801561214157506001600160a01b0383165f9081526019602052604090205460ff16155b156121b7576009548111156120fd5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b59565b6001600160a01b0382165f9081526019602052604090205460ff1661223057600b546121e283610eac565b6121ec9083612e83565b11156122305760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b59565b5f61223a30610eac565b90505f600a5483101580156122515750600a548210155b90508080156122685750600c5462010000900460ff165b801561227e5750600654600160a01b900460ff16155b80156122a257506001600160a01b0385165f908152601a602052604090205460ff16155b80156122c657506001600160a01b0385165f9081526018602052604090205460ff16155b80156122ea57506001600160a01b0384165f9081526018602052604090205460ff16155b15612318576006805460ff60a01b1916600160a01b17905561230a612859565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526018602052604090205460ff600160a01b90920482161591168061236457506001600160a01b0385165f9081526018602052604090205460ff165b1561236c57505f5b5f811561254c576001600160a01b0386165f908152601a602052604090205460ff16801561239b57505f601154115b15612456576123c060646123ba60115488612a2e90919063ffffffff16565b90612a40565b9050601154601354826123d39190612e4d565b6123dd9190612e64565b60165f8282546123ed9190612e83565b90915550506011546014546124029083612e4d565b61240c9190612e64565b60175f82825461241c9190612e83565b90915550506011546012546124319083612e4d565b61243b9190612e64565b60155f82825461244b9190612e83565b9091555061252e9050565b6001600160a01b0387165f908152601a602052604090205460ff16801561247e57505f600d54115b1561252e5761249d60646123ba600d5488612a2e90919063ffffffff16565b9050600d54600f54826124b09190612e4d565b6124ba9190612e64565b60165f8282546124ca9190612e83565b9091555050600d546010546124df9083612e4d565b6124e99190612e64565b60175f8282546124f99190612e83565b9091555050600d54600e5461250e9083612e4d565b6125189190612e64565b60155f8282546125289190612e83565b90915550505b801561253f5761253f873083612707565b6125498186612e3a565b94505b612557878787612707565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b61262f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b91565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f806126756005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156126db573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906127009190612f6b565b5050505050565b6001600160a01b03831661272d5760405162461bcd60e51b8152600401610b5990612ee3565b6001600160a01b0382166127535760405162461bcd60e51b8152600401610b5990612f28565b6001600160a01b0383165f90815260208190526040902054818110156127ca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b59565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290612800908490612e83565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161284c91815260200190565b60405180910390a36117ad565b5f61286330610eac565b90505f6017546015546016546128799190612e83565b6128839190612e83565b9050811580612890575080155b15612899575050565b600a546128a79060c8612e4d565b8211156128bf57600a546128bc9060c8612e4d565b91505b5f600282601654856128d19190612e4d565b6128db9190612e64565b6128e59190612e64565b90505f6128f28483612a4b565b9050476128fe82612a56565b5f6129094783612a4b565b90505f612936600260165461291e9190612e64565b6129289088612e3a565b6015546123ba908590612a2e565b90505f612963600260165461294b9190612e64565b6129559089612e3a565b6017546123ba908690612a2e565b90505f816129718486612e3a565b61297b9190612e3a565b5f601681905560158190556017559050861580159061299957505f81115b156129ec576129a88782612604565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015612a22573d5f803e3d5ffd5b50505050505050505050565b5f612a398284612e4d565b9392505050565b5f612a398284612e64565b5f612a398284612e3a565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110612a8957612a89612f96565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b05573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b299190612ec8565b81600181518110612b3c57612b3c612f96565b60200260200101906001600160a01b031690816001600160a01b031681525050612b87307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b91565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612bdb9085905f90869030904290600401612faa565b5f604051808303815f87803b158015612bf2575f80fd5b505af1158015612c04573d5f803e3d5ffd5b505050505050565b5f6020808352835180828501525f5b81811015612c3757858101830151858201604001528201612c1b565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611549575f80fd5b5f8060408385031215612c7c575f80fd5b8235612c8781612c57565b946020939093013593505050565b5f60208284031215612ca5575f80fd5b8135612a3981612c57565b5f60208284031215612cc0575f80fd5b5035919050565b5f805f60608486031215612cd9575f80fd5b8335612ce481612c57565b92506020840135612cf481612c57565b929592945050506040919091013590565b8015158114611549575f80fd5b5f8060408385031215612d23575f80fd5b8235612d2e81612c57565b91506020830135612d3e81612d05565b809150509250929050565b5f805f60608486031215612d5b575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612d82575f80fd5b8135612a3981612d05565b5f8060408385031215612d9e575f80fd5b8235612da981612c57565b91506020830135612d3e81612c57565b600181811c90821680612dcd57607f821691505b602082108103612deb57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610b2957610b29612e26565b8082028115828204841417610b2957610b29612e26565b5f82612e7e57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b2957610b29612e26565b5f60208284031215612ea6575f80fd5b5051919050565b5f60208284031215612ebd575f80fd5b8151612a3981612d05565b5f60208284031215612ed8575f80fd5b8151612a3981612c57565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b5f805f60608486031215612f7d575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612ff85784516001600160a01b031683529383019391830191600101612fd3565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220fb97ffaa4b0eb96aab1cccfd9082b3b6a225727a11affb03846aadc956ad171564736f6c63430008140033

Deployed Bytecode Sourcemap

31075:16739:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9034:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11201:169;;;;;;;;;;-1:-1:-1;11201:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11201:169:0;1023:187:1;32449:36:0;;;;;;;;;;-1:-1:-1;32449:36:0;;;;;;;;32162:63;;;;;;;;;;-1:-1:-1;32162:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31150:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;31150:51:0;1467:230:1;36089:115:0;;;;;;;;;;;;;:::i;:::-;;10154:108;;;;;;;;;;-1:-1:-1;10242:12:0;;10154:108;;;1848:25:1;;;1836:2;1821:18;10154:108:0;1702:177:1;45029:317:0;;;;;;;;;;-1:-1:-1;45029:317:0;;;;;:::i;:::-;;:::i;31806:25::-;;;;;;;;;;;;;;;;31945:33;;;;;;;;;;;;;;;;36952:275;;;;;;;;;;-1:-1:-1;36952:275:0;;;;;:::i;:::-;;:::i;11852:492::-;;;;;;;;;;-1:-1:-1;11852:492:0;;;;;:::i;:::-;;:::i;31243:53::-;;;;;;;;;;;;31289:6;31243:53;;9996:93;;;;;;;;;;-1:-1:-1;9996:93:0;;10079:2;2880:36:1;;2868:2;2853:18;9996:93:0;2738:184:1;12753:215:0;;;;;;;;;;-1:-1:-1;12753:215:0;;;;;:::i;:::-;;:::i;39343:166::-;;;;;;;;;;-1:-1:-1;39343:166:0;;;;;:::i;:::-;;:::i;31208:28::-;;;;;;;;;;-1:-1:-1;31208:28:0;;;;-1:-1:-1;;;;;31208:28:0;;;31515:33;;;;;;;;;;-1:-1:-1;31515:33:0;;;;;;;;32492:57;;;;;;;;;;-1:-1:-1;32492:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;39686:126;;;;;;;;;;-1:-1:-1;39686:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;39776:28:0;39752:4;39776:28;;;:19;:28;;;;;;;;;39686:126;31366:25;;;;;;;;;;-1:-1:-1;31366:25:0;;;;-1:-1:-1;;;;;31366:25:0;;;31911:27;;;;;;;;;;;;;;;;31771:28;;;;;;;;;;;;;;;;31595:31;;;;;;;;;;-1:-1:-1;31595:31:0;;;;;;;;;;;10325:127;;;;;;;;;;-1:-1:-1;10325:127:0;;;;;:::i;:::-;;:::i;2552:103::-;;;;;;;;;;;;;:::i;36256:121::-;;;;;;;;;;;;;:::i;37500:167::-;;;;;;;;;;-1:-1:-1;37500:167:0;;;;;:::i;:::-;;:::i;39517:161::-;;;;;;;;;;-1:-1:-1;39517:161:0;;;;;:::i;:::-;;:::i;45354:257::-;;;;;;;;;;;;;:::i;37871:374::-;;;;;;;;;;-1:-1:-1;37871:374:0;;;;;:::i;:::-;;:::i;35933:148::-;;;;;;;;;;;;;:::i;1901:87::-;;;;;;;;;;-1:-1:-1;1974:6:0;;-1:-1:-1;;;;;1974:6:0;1901:87;;37763:100;;;;;;;;;;-1:-1:-1;37763:100:0;;;;;:::i;:::-;;:::i;9253:104::-;;;;;;;;;;;;;:::i;38835:304::-;;;;;;;;;;-1:-1:-1;38835:304:0;;;;;:::i;:::-;;:::i;31737:25::-;;;;;;;;;;;;;;;;35417:506;;;:::i;13471:413::-;;;;;;;;;;-1:-1:-1;13471:413:0;;;;;:::i;:::-;;:::i;10665:175::-;;;;;;;;;;-1:-1:-1;10665:175:0;;;;;:::i;:::-;;:::i;47553:258::-;;;;;;;;;;-1:-1:-1;47553:258:0;;;;;:::i;:::-;;:::i;32383:57::-;;;;;;;;;;-1:-1:-1;32383:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31555:33;;;;;;;;;;-1:-1:-1;31555:33:0;;;;;;;;;;;45619:291;;;;;;;;;;-1:-1:-1;45619:291:0;;;;;:::i;:::-;;:::i;38645:182::-;;;;;;;;;;-1:-1:-1;38645:182:0;;;;;:::i;:::-;;:::i;38253:384::-;;;;;;;;;;-1:-1:-1;38253:384:0;;;;;:::i;:::-;;:::i;37235:257::-;;;;;;;;;;-1:-1:-1;37235:257:0;;;;;:::i;:::-;;:::i;31400:35::-;;;;;;;;;;;;;;;;36447:497;;;;;;;;;;-1:-1:-1;36447:497:0;;;;;:::i;:::-;;:::i;31876:26::-;;;;;;;;;;;;;;;;31635:27;;;;;;;;;;;;;;;;31669:24;;;;;;;;;;;;;;;;10903:151;;;;;;;;;;-1:-1:-1;10903:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11019:18:0;;;10992:7;11019:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10903:151;31442:33;;;;;;;;;;;;;;;;31335:24;;;;;;;;;;-1:-1:-1;31335:24:0;;;;-1:-1:-1;;;;;31335:24:0;;;31700:30;;;;;;;;;;;;;;;;2810:201;;;;;;;;;;-1:-1:-1;2810:201:0;;;;;:::i;:::-;;:::i;31838:31::-;;;;;;;;;;;;;;;;31482:24;;;;;;;;;;;;;;;;31985:28;;;;;;;;;;;;;;;;9034:100;9088:13;9121:5;9114:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9034:100;:::o;11201:169::-;11284:4;11301:39;850:10;11324:7;11333:6;11301:8;:39::i;:::-;-1:-1:-1;11358:4:0;11201:169;;;;;:::o;36089:115::-;1974:6;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;;;;;;;;;36145:13:::1;:21:::0;;-1:-1:-1;;36177:19:0;;;36089:115::o;45029:317::-;32601:9;;-1:-1:-1;;;;;32601:9:0;850:10;32601:25;32593:70;;;;-1:-1:-1;;;32593:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45110:20:0;::::1;45102:59;;;::::0;-1:-1:-1;;;45102:59:0;;5345:2:1;45102:59:0::1;::::0;::::1;5327:21:1::0;5384:2;5364:18;;;5357:30;5423:28;5403:18;;;5396:56;5469:18;;45102:59:0::1;5143:350:1::0;45102:59:0::1;45172:16;45191:26;45209:6;45191:9;:26::i;:::-;45172:45;;45247:1;45236:8;:12;45228:49;;;::::0;-1:-1:-1;;;45228:49:0;;5700:2:1;45228:49:0::1;::::0;::::1;5682:21:1::0;5739:2;5719:18;;;5712:30;5778:26;5758:18;;;5751:54;5822:18;;45228:49:0::1;5498:348:1::0;45228:49:0::1;45288:50;45300:6;45319:18;;45308:8;:29;;;;:::i;:::-;45288:11;:50::i;:::-;45091:255;45029:317:::0;:::o;36952:275::-;1974:6;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;37089:4:::1;37081;37060:13;10242:12:::0;;;10154:108;37060:13:::1;:17;::::0;37076:1:::1;37060:17;:::i;:::-;37059:26;;;;:::i;:::-;37058:35;;;;:::i;:::-;37048:6;:45;;37026:142;;;::::0;-1:-1:-1;;;37026:142:0;;6713:2:1;37026:142:0::1;::::0;::::1;6695:21:1::0;6752:2;6732:18;;;6725:30;6791:34;6771:18;;;6764:62;-1:-1:-1;;;6842:18:1;;;6835:45;6897:19;;37026:142:0::1;6511:411:1::0;37026:142:0::1;37202:17;:6:::0;37212::::1;37202:17;:::i;:::-;37179:20;:40:::0;-1:-1:-1;36952:275:0:o;11852:492::-;11992:4;12009:36;12019:6;12027:9;12038:6;12009:9;:36::i;:::-;-1:-1:-1;;;;;12085:19:0;;12058:24;12085:19;;;:11;:19;;;;;;;;850:10;12085:33;;;;;;;;12137:26;;;;12129:79;;;;-1:-1:-1;;;12129:79:0;;7129:2:1;12129:79:0;;;7111:21:1;7168:2;7148:18;;;7141:30;7207:34;7187:18;;;7180:62;-1:-1:-1;;;7258:18:1;;;7251:38;7306:19;;12129:79:0;6927:404:1;12129:79:0;12244:57;12253:6;850:10;12294:6;12275:16;:25;12244:8;:57::i;:::-;-1:-1:-1;12332:4:0;;11852:492;-1:-1:-1;;;;11852:492:0:o;12753:215::-;850:10;12841:4;12890:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12890:34:0;;;;;;;;;;12841:4;;12858:80;;12881:7;;12890:47;;12927:10;;12890:47;:::i;:::-;12858:8;:80::i;39343:166::-;1974:6;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;39456:9:::1;::::0;39425:41:::1;::::0;-1:-1:-1;;;;;39456:9:0;;::::1;::::0;39425:41;::::1;::::0;::::1;::::0;39456:9:::1;::::0;39425:41:::1;39477:9;:24:::0;;-1:-1:-1;;;;;;39477:24:0::1;-1:-1:-1::0;;;;;39477:24:0;;;::::1;::::0;;;::::1;::::0;;39343:166::o;10325:127::-;-1:-1:-1;;;;;10426:18:0;10399:7;10426:18;;;;;;;;;;;;10325:127::o;2552:103::-;1974:6;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;2617:30:::1;2644:1;2617:18;:30::i;:::-;2552:103::o:0;36256:121::-;1974:6;;36308:4;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;-1:-1:-1;36325:14:0::1;:22:::0;;-1:-1:-1;;36325:22:0::1;::::0;;;36256:121;:::o;37500:167::-;1974:6;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37613:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37613:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37500:167::o;39517:161::-;1974:6;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;39626:10:::1;::::0;39597:40:::1;::::0;-1:-1:-1;;;;;39626:10:0;;::::1;::::0;39597:40;::::1;::::0;::::1;::::0;39626:10:::1;::::0;39597:40:::1;39648:10;:22:::0;;-1:-1:-1;;;;;;39648:22:0::1;-1:-1:-1::0;;;;;39648:22:0;;;::::1;::::0;;;::::1;::::0;;39517:161::o;45354:257::-;32601:9;;-1:-1:-1;;;;;32601:9:0;850:10;32601:25;32593:70;;;;-1:-1:-1;;;32593:70:0;;;;;;;:::i;:::-;45433:46:::1;::::0;-1:-1:-1;;;45433:46:0;;45448:4:::1;45433:46;::::0;::::1;1640:51:1::0;;;45415:15:0::1;::::0;45433:31:::1;::::0;1613:18:1;;45433:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45490:51;::::0;-1:-1:-1;;;45490:51:0;;45521:10:::1;45490:51;::::0;::::1;7829::1::0;7896:18;;;7889:34;;;45415:64:0;;-1:-1:-1;45505:4:0::1;::::0;45490:30:::1;::::0;7802:18:1;;45490:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;45552:51:0::1;::::0;45560:10:::1;::::0;45581:21:::1;45552:51:::0;::::1;;;::::0;::::1;::::0;;;45581:21;45560:10;45552:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;37871:374:::0;1974:6;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;38016:9:::1;:19:::0;;;38046:15:::1;:31:::0;;;38088:10:::1;:21:::0;;;38101:8;38135:27:::1;38064:13:::0;38028:7;38135:27:::1;:::i;:::-;:40;;;;:::i;:::-;38120:12;:55:::0;;;38210:1:::1;-1:-1:-1::0;38194:17:0::1;38186:51;;;::::0;-1:-1:-1;;;38186:51:0;;8386:2:1;38186:51:0::1;::::0;::::1;8368:21:1::0;8425:2;8405:18;;;8398:30;-1:-1:-1;;;8444:18:1;;;8437:51;8505:18;;38186:51:0::1;8184:345:1::0;38186:51:0::1;37871:374:::0;;;:::o;35933:148::-;1974:6;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;35988:13:::1;:20:::0;;-1:-1:-1;;36019:18:0;;;;;36048:17:::1;:25:::0;;-1:-1:-1;;36048:25:0::1;::::0;;35933:148::o;37763:100::-;1974:6;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;37834:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37834:21:0;;::::1;::::0;;;::::1;::::0;;37763:100::o;9253:104::-;9309:13;9342:7;9335:14;;;;;:::i;38835:304::-;1974:6;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;38979:13:::1;::::0;-1:-1:-1;;;;;38979:13:0;;::::1;38971:21:::0;;::::1;::::0;38949:128:::1;;;::::0;-1:-1:-1;;;38949:128:0;;8736:2:1;38949:128:0::1;::::0;::::1;8718:21:1::0;8775:2;8755:18;;;8748:30;8814:34;8794:18;;;8787:62;8885:27;8865:18;;;8858:55;8930:19;;38949:128:0::1;8534:421:1::0;38949:128:0::1;39090:41;39119:4;39125:5;39090:28;:41::i;35417:506::-:0;1974:6;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;35511:15:::1;-1:-1:-1::0;;;;;35511:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35493:69:0::1;;35571:4;35578:15;-1:-1:-1::0;;;;;35578:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35493:108;::::0;-1:-1:-1;;;;;;35493:108:0::1;::::0;;;;;;-1:-1:-1;;;;;9446:15:1;;;35493:108:0::1;::::0;::::1;9428:34:1::0;9498:15;;9478:18;;;9471:43;9363:18;;35493:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35477:13;:124:::0;;-1:-1:-1;;;;;;35477:124:0::1;-1:-1:-1::0;;;;;35477:124:0;;;::::1;::::0;;::::1;::::0;;35612:55:::1;::::0;-1:-1:-1;35612:25:0::1;:55::i;:::-;35715:13;::::0;35678:58:::1;::::0;-1:-1:-1;;;;;35715:13:0::1;::::0;35678:28:::1;:58::i;:::-;35749:19;35771:24;35789:4;35771:9;:24::i;:::-;35749:46;;35806:62;35823:4;35838:15;35856:11;35806:8;:62::i;:::-;35879:36;35892:11;35905:9;35879:12;:36::i;:::-;35466:457;35417:506::o:0;13471:413::-;850:10;13564:4;13608:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13608:34:0;;;;;;;;;;13661:35;;;;13653:85;;;;-1:-1:-1;;;13653:85:0;;9727:2:1;13653:85:0;;;9709:21:1;9766:2;9746:18;;;9739:30;9805:34;9785:18;;;9778:62;-1:-1:-1;;;9856:18:1;;;9849:35;9901:19;;13653:85:0;9525:401:1;13653:85:0;13774:67;850:10;13797:7;13825:15;13806:16;:34;13774:8;:67::i;:::-;-1:-1:-1;13872:4:0;;13471:413;-1:-1:-1;;;13471:413:0:o;10665:175::-;10751:4;10768:42;850:10;10792:9;10803:6;10768:9;:42::i;47553:258::-;1974:6;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47652:32:0;::::1;;::::0;;;:25:::1;:32;::::0;;;;:47;;-1:-1:-1;;47652:47:0::1;::::0;::::1;;;::::0;;47710:36:::1;47652:32:::0;:47;47710:15:::1;:36::i;:::-;47757:46;47783:5;47790:12;47757:25;:46::i;45619:291::-:0;32601:9;;-1:-1:-1;;;;;32601:9:0;850:10;32601:25;32593:70;;;;-1:-1:-1;;;32593:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45717:20:0;::::1;45709:59;;;::::0;-1:-1:-1;;;45709:59:0;;5345:2:1;45709:59:0::1;::::0;::::1;5327:21:1::0;5384:2;5364:18;;;5357:30;5423:28;5403:18;;;5396:56;5469:18;;45709:59:0::1;5143:350:1::0;45709:59:0::1;45806:39;::::0;-1:-1:-1;;;45806:39:0;;45839:4:::1;45806:39;::::0;::::1;1640:51:1::0;45779:24:0::1;::::0;-1:-1:-1;;;;;45806:24:0;::::1;::::0;::::1;::::0;1613:18:1;;45806:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45856:46;::::0;-1:-1:-1;;;45856:46:0;;-1:-1:-1;;;;;7847:32:1;;;45856:46:0::1;::::0;::::1;7829:51:1::0;7896:18;;;7889:34;;;45779:66:0;;-1:-1:-1;45856:23:0;;::::1;::::0;::::1;::::0;7802:18:1;;45856:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45698:212;45619:291:::0;;:::o;38645:182::-;1974:6;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38730:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38730:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38785:34;;1163:41:1;;;38785:34:0::1;::::0;1136:18:1;38785:34:0::1;;;;;;;38645:182:::0;;:::o;38253:384::-;1974:6;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;38399:10:::1;:20:::0;;;38430:16:::1;:32:::0;;;38473:11:::1;:22:::0;;;38487:8;38522:29:::1;38449:13:::0;38412:7;38522:29:::1;:::i;:::-;:43;;;;:::i;:::-;38506:13;:59:::0;;;38601:1:::1;-1:-1:-1::0;38584:18:0::1;38576:53;;;::::0;-1:-1:-1;;;38576:53:0;;10133:2:1;38576:53:0::1;::::0;::::1;10115:21:1::0;10172:2;10152:18;;;10145:30;-1:-1:-1;;;10191:18:1;;;10184:52;10253:18;;38576:53:0::1;9931:346:1::0;37235:257:0;1974:6;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;37376:4:::1;37368;37346:13;10242:12:::0;;;10154:108;37346:13:::1;:18;::::0;37362:2:::1;37346:18;:::i;:::-;37345:27;;;;:::i;:::-;37344:36;;;;:::i;:::-;37334:6;:46;;37312:132;;;::::0;-1:-1:-1;;;37312:132:0;;10484:2:1;37312:132:0::1;::::0;::::1;10466:21:1::0;10523:2;10503:18;;;10496:30;10562:34;10542:18;;;10535:62;-1:-1:-1;;;10613:18:1;;;10606:34;10657:19;;37312:132:0::1;10282:400:1::0;37312:132:0::1;37467:17;:6:::0;37477::::1;37467:17;:::i;:::-;37455:9;:29:::0;-1:-1:-1;37235:257:0:o;36447:497::-;1974:6;;36555:4;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;36634:6:::1;36613:13;10242:12:::0;;;10154:108;36613:13:::1;:17;::::0;36629:1:::1;36613:17;:::i;:::-;36612:28;;;;:::i;:::-;36599:9;:41;;36577:144;;;::::0;-1:-1:-1;;;36577:144:0;;10889:2:1;36577:144:0::1;::::0;::::1;10871:21:1::0;10928:2;10908:18;;;10901:30;10967:34;10947:18;;;10940:62;-1:-1:-1;;;11018:18:1;;;11011:51;11079:19;;36577:144:0::1;10687:417:1::0;36577:144:0::1;36789:4;36768:13;10242:12:::0;;;10154:108;36768:13:::1;:17;::::0;36784:1:::1;36768:17;:::i;:::-;36767:26;;;;:::i;:::-;36754:9;:39;;36732:141;;;::::0;-1:-1:-1;;;36732:141:0;;11311:2:1;36732:141:0::1;::::0;::::1;11293:21:1::0;11350:2;11330:18;;;11323:30;11389:34;11369:18;;;11362:62;-1:-1:-1;;;11440:18:1;;;11433:50;11500:19;;36732:141:0::1;11109:416:1::0;36732:141:0::1;-1:-1:-1::0;36884:18:0::1;:30:::0;36932:4:::1;::::0;36447:497::o;2810:201::-;1974:6;;-1:-1:-1;;;;;1974:6:0;850:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2899:22:0;::::1;2891:73;;;::::0;-1:-1:-1;;;2891:73:0;;11732:2:1;2891:73:0::1;::::0;::::1;11714:21:1::0;11771:2;11751:18;;;11744:30;11810:34;11790:18;;;11783:62;-1:-1:-1;;;11861:18:1;;;11854:36;11907:19;;2891:73:0::1;11530:402:1::0;2891:73:0::1;2975:28;2994:8;2975:18;:28::i;17155:380::-:0;-1:-1:-1;;;;;17291:19:0;;17283:68;;;;-1:-1:-1;;;17283:68:0;;12139:2:1;17283:68:0;;;12121:21:1;12178:2;12158:18;;;12151:30;12217:34;12197:18;;;12190:62;-1:-1:-1;;;12268:18:1;;;12261:34;12312:19;;17283:68:0;11937:400:1;17283:68:0;-1:-1:-1;;;;;17370:21:0;;17362:68;;;;-1:-1:-1;;;17362:68:0;;12544:2:1;17362:68:0;;;12526:21:1;12583:2;12563:18;;;12556:30;12622:34;12602:18;;;12595:62;-1:-1:-1;;;12673:18:1;;;12666:32;12715:19;;17362:68:0;12342:398:1;17362:68:0;-1:-1:-1;;;;;17443:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17495:32;;1848:25:1;;;17495:32:0;;1821:18:1;17495:32:0;;;;;;;17155:380;;;:::o;16126:591::-;-1:-1:-1;;;;;16210:21:0;;16202:67;;;;-1:-1:-1;;;16202:67:0;;12947:2:1;16202:67:0;;;12929:21:1;12986:2;12966:18;;;12959:30;13025:34;13005:18;;;12998:62;-1:-1:-1;;;13076:18:1;;;13069:31;13117:19;;16202:67:0;12745:397:1;16202:67:0;-1:-1:-1;;;;;16369:18:0;;16344:22;16369:18;;;;;;;;;;;16406:24;;;;16398:71;;;;-1:-1:-1;;;16398:71:0;;13349:2:1;16398:71:0;;;13331:21:1;13388:2;13368:18;;;13361:30;13427:34;13407:18;;;13400:62;-1:-1:-1;;;13478:18:1;;;13471:32;13520:19;;16398:71:0;13147:398:1;16398:71:0;-1:-1:-1;;;;;16505:18:0;;:9;:18;;;;;;;;;;16526:23;;;16505:44;;16571:12;:22;;16543:6;;16505:9;16571:22;;16543:6;;16571:22;:::i;:::-;;;;-1:-1:-1;;16611:37:0;;1848:25:1;;;16637:1:0;;-1:-1:-1;;;;;16611:37:0;;;;;1836:2:1;1821:18;16611:37:0;;;;;;;37871:374;;;:::o;39820:4083::-;-1:-1:-1;;;;;39952:18:0;;39944:68;;;;-1:-1:-1;;;39944:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40031:16:0;;40023:64;;;;-1:-1:-1;;;40023:64:0;;;;;;;:::i;:::-;40104:17;;;;40100:135;;;-1:-1:-1;;;;;40146:31:0;;;;;;:25;:31;;;;;;;;40138:85;;;;-1:-1:-1;;;40138:85:0;;14562:2:1;40138:85:0;;;14544:21:1;14601:2;14581:18;;;14574:30;14640:34;14620:18;;;14613:62;-1:-1:-1;;;14691:18:1;;;14684:39;14740:19;;40138:85:0;14360:405:1;40138:85:0;40251:6;40261:1;40251:11;40247:93;;40279:28;40295:4;40301:2;40305:1;40279:15;:28::i;40247:93::-;40356:14;;;;40352:1694;;;1974:6;;-1:-1:-1;;;;;40409:15:0;;;1974:6;;40409:15;;;;:49;;-1:-1:-1;1974:6:0;;-1:-1:-1;;;;;40445:13:0;;;1974:6;;40445:13;;40409:49;:86;;;;-1:-1:-1;;;;;;40479:16:0;;;;40409:86;:128;;;;-1:-1:-1;;;;;;40516:21:0;;40530:6;40516:21;;40409:128;:158;;;;-1:-1:-1;40559:8:0;;-1:-1:-1;;;40559:8:0;;;;40558:9;40409:158;40387:1648;;;40607:13;;;;;;;40602:223;;-1:-1:-1;;;;;40679:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40708:23:0;;;;;;:19;:23;;;;;;;;40679:52;40645:160;;;;-1:-1:-1;;;40645:160:0;;14972:2:1;40645:160:0;;;14954:21:1;15011:2;14991:18;;;14984:30;-1:-1:-1;;;15030:18:1;;;15023:52;15092:18;;40645:160:0;14770:346:1;40645:160:0;-1:-1:-1;;;;;40899:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40956:35:0;;;;;;:31;:35;;;;;;;;40955:36;40899:92;40873:1147;;;41078:20;;41068:6;:30;;41034:169;;;;-1:-1:-1;;;41034:169:0;;15323:2:1;41034:169:0;;;15305:21:1;15362:2;15342:18;;;15335:30;15401:34;15381:18;;;15374:62;-1:-1:-1;;;15452:18:1;;;15445:51;15513:19;;41034:169:0;15121:417:1;41034:169:0;41286:9;;41269:13;41279:2;41269:9;:13::i;:::-;41260:22;;:6;:22;:::i;:::-;:35;;41226:140;;;;-1:-1:-1;;;41226:140:0;;15745:2:1;41226:140:0;;;15727:21:1;15784:2;15764:18;;;15757:30;-1:-1:-1;;;15803:18:1;;;15796:49;15862:18;;41226:140:0;15543:343:1;41226:140:0;40873:1147;;;-1:-1:-1;;;;;41464:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;41519:37:0;;;;;;:31;:37;;;;;;;;41518:38;41464:92;41438:582;;;41643:20;;41633:6;:30;;41599:170;;;;-1:-1:-1;;;41599:170:0;;16093:2:1;41599:170:0;;;16075:21:1;16132:2;16112:18;;;16105:30;16171:34;16151:18;;;16144:62;-1:-1:-1;;;16222:18:1;;;16215:52;16284:19;;41599:170:0;15891:418:1;41438:582:0;-1:-1:-1;;;;;41800:35:0;;;;;;:31;:35;;;;;;;;41795:225;;41920:9;;41903:13;41913:2;41903:9;:13::i;:::-;41894:22;;:6;:22;:::i;:::-;:35;;41860:140;;;;-1:-1:-1;;;41860:140:0;;15745:2:1;41860:140:0;;;15727:21:1;15784:2;15764:18;;;15757:30;-1:-1:-1;;;15803:18:1;;;15796:49;15862:18;;41860:140:0;15543:343:1;41860:140:0;42058:28;42089:24;42107:4;42089:9;:24::i;:::-;42058:55;;42126:12;42151:18;;42141:6;:28;;:74;;;;;42197:18;;42173:20;:42;;42141:74;42126:89;;42246:7;:35;;;;-1:-1:-1;42270:11:0;;;;;;;42246:35;:61;;;;-1:-1:-1;42299:8:0;;-1:-1:-1;;;42299:8:0;;;;42298:9;42246:61;:110;;;;-1:-1:-1;;;;;;42325:31:0;;;;;;:25;:31;;;;;;;;42324:32;42246:110;:153;;;;-1:-1:-1;;;;;;42374:25:0;;;;;;:19;:25;;;;;;;;42373:26;42246:153;:194;;;;-1:-1:-1;;;;;;42417:23:0;;;;;;:19;:23;;;;;;;;42416:24;42246:194;42228:326;;;42467:8;:15;;-1:-1:-1;;;;42467:15:0;-1:-1:-1;;;42467:15:0;;;42499:10;:8;:10::i;:::-;42526:8;:16;;-1:-1:-1;;;;42526:16:0;;;42228:326;42582:8;;-1:-1:-1;;;;;42692:25:0;;42566:12;42692:25;;;:19;:25;;;;;;42582:8;-1:-1:-1;;;42582:8:0;;;;;42581:9;;42692:25;;:52;;-1:-1:-1;;;;;;42721:23:0;;;;;;:19;:23;;;;;;;;42692:52;42688:100;;;-1:-1:-1;42771:5:0;42688:100;42800:12;42905:7;42901:949;;;-1:-1:-1;;;;;42957:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;43006:1;42990:13;;:17;42957:50;42953:748;;;43035:34;43065:3;43035:25;43046:13;;43035:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;43028:41;;43138:13;;43118:16;;43111:4;:23;;;;:::i;:::-;43110:41;;;;:::i;:::-;43088:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;43210:13:0;;43195:11;;43188:18;;:4;:18;:::i;:::-;43187:36;;;;:::i;:::-;43170:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;43280:13:0;;43266:10;;43259:17;;:4;:17;:::i;:::-;43258:35;;;;:::i;:::-;43242:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;42953:748:0;;-1:-1:-1;42953:748:0;;-1:-1:-1;;;;;43355:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43405:1;43390:12;;:16;43355:51;43351:350;;;43434:33;43463:3;43434:24;43445:12;;43434:6;:10;;:24;;;;:::i;:33::-;43427:40;;43535:12;;43516:15;;43509:4;:22;;;;:::i;:::-;43508:39;;;;:::i;:::-;43486:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43605:12:0;;43591:10;;43584:17;;:4;:17;:::i;:::-;43583:34;;;;:::i;:::-;43566:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;43673:12:0;;43660:9;;43653:16;;:4;:16;:::i;:::-;43652:33;;;;:::i;:::-;43636:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;43351:350:0;43721:8;;43717:91;;43750:42;43766:4;43780;43787;43750:15;:42::i;:::-;43824:14;43834:4;43824:14;;:::i;:::-;;;42901:949;43862:33;43878:4;43884:2;43888:6;43862:15;:33::i;:::-;39933:3970;;;;39820:4083;;;:::o;3171:191::-;3264:6;;;-1:-1:-1;;;;;3281:17:0;;;-1:-1:-1;;;;;;3281:17:0;;;;;;;3314:40;;3264:6;;;3281:17;3264:6;;3314:40;;3245:16;;3314:40;3234:128;3171:191;:::o;39147:188::-;-1:-1:-1;;;;;39230:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39230:39:0;;;;;;;;;;39287:40;;39230:39;;:31;39287:40;;;39147:188;;:::o;44508:513::-;44656:62;44673:4;44688:15;44706:11;44656:8;:62::i;:::-;44761:15;-1:-1:-1;;;;;44761:31:0;;44800:9;44833:4;44853:11;44879:1;44922;44965:7;1974:6;;-1:-1:-1;;;;;1974:6:0;;1901:87;44965:7;44761:252;;;;;;-1:-1:-1;;;;;;44761:252:0;;;-1:-1:-1;;;;;16673:15:1;;;44761:252:0;;;16655:34:1;16705:18;;;16698:34;;;;16748:18;;;16741:34;;;;16791:18;;;16784:34;16855:15;;;16834:19;;;16827:44;44987:15:0;16887:19:1;;;16880:35;16589:19;;44761:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44508:513;;:::o;14374:733::-;-1:-1:-1;;;;;14514:20:0;;14506:70;;;;-1:-1:-1;;;14506:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14595:23:0;;14587:71;;;;-1:-1:-1;;;14587:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14755:17:0;;14731:21;14755:17;;;;;;;;;;;14791:23;;;;14783:74;;;;-1:-1:-1;;;14783:74:0;;17439:2:1;14783:74:0;;;17421:21:1;17478:2;17458:18;;;17451:30;17517:34;17497:18;;;17490:62;-1:-1:-1;;;17568:18:1;;;17561:36;17614:19;;14783:74:0;17237:402:1;14783:74:0;-1:-1:-1;;;;;14893:17:0;;;:9;:17;;;;;;;;;;;14913:22;;;14893:42;;14957:20;;;;;;;;:30;;14929:6;;14893:9;14957:30;;14929:6;;14957:30;:::i;:::-;;;;;;;;15022:9;-1:-1:-1;;;;;15005:35:0;15014:6;-1:-1:-1;;;;;15005:35:0;;15033:6;15005:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;15005:35:0;;;;;;;;15053:46;37871:374;45918:1627;45957:23;45983:24;46001:4;45983:9;:24::i;:::-;45957:50;;46018:25;46108:13;;46080:12;;46046:18;;:46;;;;:::i;:::-;:75;;;;:::i;:::-;46018:103;-1:-1:-1;46138:20:0;;;:46;;-1:-1:-1;46162:22:0;;46138:46;46134:85;;;46201:7;;45918:1627::o;46134:85::-;46253:18;;:24;;46274:3;46253:24;:::i;:::-;46235:15;:42;46231:117;;;46312:18;;:24;;46333:3;46312:24;:::i;:::-;46294:42;;46231:117;46409:23;46522:1;46489:17;46454:18;;46436:15;:36;;;;:::i;:::-;46435:71;;;;:::i;:::-;:88;;;;:::i;:::-;46409:114;-1:-1:-1;46534:26:0;46563:36;:15;46409:114;46563:19;:36::i;:::-;46534:65;-1:-1:-1;46640:21:0;46674:36;46534:65;46674:16;:36::i;:::-;46723:18;46744:44;:21;46770:17;46744:25;:44::i;:::-;46723:65;;46801:17;46821:78;46896:1;46875:18;;:22;;;;:::i;:::-;46854:44;;:17;:44;:::i;:::-;46836:12;;46821:28;;:10;;:14;:28::i;:78::-;46801:98;;46920:18;46941:79;47017:1;46996:18;;:22;;;;:::i;:::-;46975:44;;:17;:44;:::i;:::-;46956:13;;46941:29;;:10;;:14;:29::i;:79::-;46920:100;-1:-1:-1;47033:23:0;46920:100;47059:22;47072:9;47059:10;:22;:::i;:::-;:35;;;;:::i;:::-;47128:1;47107:18;:22;;;47140:12;:16;;;47167:13;:17;47033:61;-1:-1:-1;47201:19:0;;;;;:42;;;47242:1;47224:15;:19;47201:42;47197:278;;;47260:46;47273:15;47290;47260:12;:46::i;:::-;47430:18;;47326:137;;;17846:25:1;;;17902:2;17887:18;;17880:34;;;17930:18;;;17923:34;;;;47326:137:0;;;;;;17834:2:1;47326:137:0;;;47197:278;47495:9;;47487:50;;-1:-1:-1;;;;;47495:9:0;;;;47515:21;47487:50;;;;;47495:9;47487:50;47495:9;47487:50;47515:21;47495:9;47487:50;;;;;;;;;;;;;;;;;;;;;45946:1599;;;;;;;;;45918:1627::o;22287:98::-;22345:7;22372:5;22376:1;22372;:5;:::i;:::-;22365:12;22287:98;-1:-1:-1;;;22287:98:0:o;22686:::-;22744:7;22771:5;22775:1;22771;:5;:::i;21930:98::-;21988:7;22015:5;22019:1;22015;:5;:::i;43911:589::-;44061:16;;;44075:1;44061:16;;;;;;;;44037:21;;44061:16;;;;;;;;;;-1:-1:-1;44061:16:0;44037:40;;44106:4;44088;44093:1;44088:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44088:23:0;;;-1:-1:-1;;;;;44088:23:0;;;;;44132:15;-1:-1:-1;;;;;44132:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44122:4;44127:1;44122:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44122:32:0;;;-1:-1:-1;;;;;44122:32:0;;;;;44167:62;44184:4;44199:15;44217:11;44167:8;:62::i;:::-;44268:224;;-1:-1:-1;;;44268:224:0;;-1:-1:-1;;;;;44268:15:0;:66;;;;:224;;44349:11;;44375:1;;44419:4;;44446;;44466:15;;44268:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43966:534;43911:589;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:241::-;3814:6;3867:2;3855:9;3846:7;3842:23;3838:32;3835:52;;;3883:1;3880;3873:12;3835:52;3922:9;3909:23;3941:28;3963:5;3941:28;:::i;4004:388::-;4072:6;4080;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;4188:9;4175:23;4207:31;4232:5;4207:31;:::i;:::-;4257:5;-1:-1:-1;4314:2:1;4299:18;;4286:32;4327:33;4286:32;4327:33;:::i;4397:380::-;4476:1;4472:12;;;;4519;;;4540:61;;4594:4;4586:6;4582:17;4572:27;;4540:61;4647:2;4639:6;4636:14;4616:18;4613:38;4610:161;;4693:10;4688:3;4684:20;4681:1;4674:31;4728:4;4725:1;4718:15;4756:4;4753:1;4746:15;4610:161;;4397:380;;;:::o;4782:356::-;4984:2;4966:21;;;5003:18;;;4996:30;5062:34;5057:2;5042:18;;5035:62;5129:2;5114:18;;4782:356::o;5851:127::-;5912:10;5907:3;5903:20;5900:1;5893:31;5943:4;5940:1;5933:15;5967:4;5964:1;5957:15;5983:128;6050:9;;;6071:11;;;6068:37;;;6085:18;;:::i;6116:168::-;6189:9;;;6220;;6237:15;;;6231:22;;6217:37;6207:71;;6258:18;;:::i;6289:217::-;6329:1;6355;6345:132;;6399:10;6394:3;6390:20;6387:1;6380:31;6434:4;6431:1;6424:15;6462:4;6459:1;6452:15;6345:132;-1:-1:-1;6491:9:1;;6289:217::o;7336:125::-;7401:9;;;7422:10;;;7419:36;;;7435:18;;:::i;7466:184::-;7536:6;7589:2;7577:9;7568:7;7564:23;7560:32;7557:52;;;7605:1;7602;7595:12;7557:52;-1:-1:-1;7628:16:1;;7466:184;-1:-1:-1;7466:184:1:o;7934:245::-;8001:6;8054:2;8042:9;8033:7;8029:23;8025:32;8022:52;;;8070:1;8067;8060:12;8022:52;8102:9;8096:16;8121:28;8143:5;8121:28;:::i;8960:251::-;9030:6;9083:2;9071:9;9062:7;9058:23;9054:32;9051:52;;;9099:1;9096;9089:12;9051:52;9131:9;9125:16;9150:31;9175:5;9150:31;:::i;13550:401::-;13752:2;13734:21;;;13791:2;13771:18;;;13764:30;13830:34;13825:2;13810:18;;13803:62;-1:-1:-1;;;13896:2:1;13881:18;;13874:35;13941:3;13926:19;;13550:401::o;13956:399::-;14158:2;14140:21;;;14197:2;14177:18;;;14170:30;14236:34;14231:2;14216:18;;14209:62;-1:-1:-1;;;14302:2:1;14287:18;;14280:33;14345:3;14330:19;;13956:399::o;16926:306::-;17014:6;17022;17030;17083:2;17071:9;17062:7;17058:23;17054:32;17051:52;;;17099:1;17096;17089:12;17051:52;17128:9;17122:16;17112:26;;17178:2;17167:9;17163:18;17157:25;17147:35;;17222:2;17211:9;17207:18;17201:25;17191:35;;16926:306;;;;;:::o;18100:127::-;18161:10;18156:3;18152:20;18149:1;18142:31;18192:4;18189:1;18182:15;18216:4;18213:1;18206:15;18232:980;18494:4;18542:3;18531:9;18527:19;18573:6;18562:9;18555:25;18599:2;18637:6;18632:2;18621:9;18617:18;18610:34;18680:3;18675:2;18664:9;18660:18;18653:31;18704:6;18739;18733:13;18770:6;18762;18755:22;18808:3;18797:9;18793:19;18786:26;;18847:2;18839:6;18835:15;18821:29;;18868:1;18878:195;18892:6;18889:1;18886:13;18878:195;;;18957:13;;-1:-1:-1;;;;;18953:39:1;18941:52;;19048:15;;;;19013:12;;;;18989:1;18907:9;18878:195;;;-1:-1:-1;;;;;;;19129:32:1;;;;19124:2;19109:18;;19102:60;-1:-1:-1;;;19193:3:1;19178:19;19171:35;19090:3;18232:980;-1:-1:-1;;;18232:980:1:o

Swarm Source

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