ETH Price: $2,830.52 (-10.20%)
 

Overview

Max Total Supply

100,000,000 Tinu

Holders

34

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
659,409.232971245046817263 Tinu

Value
$0.00
0xa0b00262d82fca8f712c347c8dcaa18918743791
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:
Telegraminu

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-02
*/

// File: Telegraminu.sol


pragma solidity =0.8.9 >=0.8.9 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

/*
Official Telegram Inu 
*/
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 Telegraminu is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

    address public prizepotWallet;
    address public devWallet;

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

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

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

    uint256 public buyTotalFees;
    uint256 public buyPrizepotFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellPrizepotFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForPrizepot;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Telegram Inu", "Tinu") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyPrizepotFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 5;

        uint256 _sellPrizepotFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 5;

        uint256 totalSupply = 100_000_000 * 1e18;

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

        buyPrizepotFee = _buyPrizepotFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyPrizepotFee + buyLiquidityFee + buyDevFee;

        sellPrizepotFee = _sellPrizepotFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellPrizepotFee + sellLiquidityFee + sellDevFee;

        prizepotWallet = address(0x0A5e0F19f54bE30A4b8DA956F3CC67fdA314253e); // set as prizepot wallet
        devWallet = address(0x0A5e0F19f54bE30A4b8DA956F3CC67fdA314253e); // set as dev wallet

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

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

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

    receive() external payable {}

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

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

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

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

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

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

    function updateBuyFees(
        uint256 _prizepotFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyPrizepotFee = _prizepotFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyPrizepotFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 15, "Must keep fees at 15% or less");
    }

    function updateSellFees(
        uint256 _prizepotFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellPrizepotFee = _prizepotFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellPrizepotFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 99, "Must keep fees at 15% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updatePrizepotWallet(address newPrizepotWallet) external onlyOwner {
        emit prizepotWalletUpdated(newPrizepotWallet, prizepotWallet);
        prizepotWallet = newPrizepotWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForPrizepot += (fees * sellPrizepotFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForPrizepot += (fees * buyPrizepotFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForPrizepot = ethBalance.mul(tokensForPrizepot).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForPrizepot - ethForDev;

        tokensForLiquidity = 0;
        tokensForPrizepot = 0;
        tokensForDev = 0;

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

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

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

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

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

    function blacklist(address _black) public onlyOwner {
        blacklisted[_black] = true;
    }

    function unblacklist(address _black) public onlyOwner {
        blacklisted[_black] = false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"prizepotWalletUpdated","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":"_black","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyPrizepotFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prizepotWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellPrizepotFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForPrizepot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_black","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_prizepotFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPrizepotWallet","type":"address"}],"name":"updatePrizepotWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_prizepotFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805462ffffff19166001179055600e805460ff191690553480156200002a57600080fd5b50604080518082018252600c81526b54656c656772616d20496e7560a01b60208083019182528351808501909452600484526354696e7560e01b9084015281519192916200007b91600391620006a4565b50805162000091906004906020840190620006a4565b505050620000ae620000a8620003f160201b60201c565b620003f5565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d081600162000447565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200011657600080fd5b505afa1580156200012b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015191906200074a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200019a57600080fd5b505afa158015620001af573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d591906200074a565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200021e57600080fd5b505af115801562000233573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025991906200074a565b6001600160a01b031660a08190526200027490600162000447565b60a05162000284906001620004c1565b6a02116545850052128000006008556a0422ca8b0a00a425000000600a5560008060058180826a52b7d2dcc80cd2e40000006103e8620002c682600462000792565b620002d29190620007b4565b60095560108790556011869055601285905584620002f18789620007d7565b620002fd9190620007d7565b600f55601484905560158390556016829055816200031c8486620007d7565b620003289190620007d7565b60135560068054730a5e0f19f54be30a4b8da956f3cc67fda314253e6001600160a01b0319918216811790925560078054909116909117905562000380620003786005546001600160a01b031690565b600162000515565b6200038d30600162000515565b6200039c61dead600162000515565b620003bb620003b36005546001600160a01b031690565b600162000447565b620003c830600162000447565b620003d761dead600162000447565b620003e33382620005bf565b50505050505050506200082f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004965760405162461bcd60e51b815260206004820181905260248201526000805160206200388183398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005605760405162461bcd60e51b815260206004820181905260248201526000805160206200388183398151915260448201526064016200048d565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006175760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200048d565b80600260008282546200062b9190620007d7565b90915550506001600160a01b038216600090815260208190526040812080548392906200065a908490620007d7565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006b290620007f2565b90600052602060002090601f016020900481019282620006d6576000855562000721565b82601f10620006f157805160ff191683800117855562000721565b8280016001018555821562000721579182015b828111156200072157825182559160200191906001019062000704565b506200072f92915062000733565b5090565b5b808211156200072f576000815560010162000734565b6000602082840312156200075d57600080fd5b81516001600160a01b03811681146200077557600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007af57620007af6200077c565b500290565b600082620007d257634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007ed57620007ed6200077c565b500190565b600181811c908216806200080757607f821691505b602082108114156200082957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612ff46200088d600039600081816105dd015281816113960152611d9b01526000818161045d01528181611d5d015281816128e0015281816129a8015281816129e401528181612a5e0152612a850152612ff46000f3fe6080604052600436106103905760003560e01c80638ea5220f116101dc578063c8c8ebe411610102578063ec3884f3116100a0578063f63743421161006f578063f637434214610a7a578063f8b45b0514610a90578063f9f92be414610aa6578063fe575a8714610ac657600080fd5b8063ec3884f314610a18578063f11a24d314610a2e578063f139ca4014610a44578063f2fde38b14610a5a57600080fd5b8063dcf14013116100dc578063dcf1401314610987578063dd62ed3e146109a7578063e2f45605146109ed578063e884f26014610a0357600080fd5b8063c8c8ebe41461093b578063d257b34f14610951578063d85ba0631461097157600080fd5b8063a457c2d71161017a578063c024666811610149578063c0246668146108c1578063c17b5b8c146108e1578063c18bc19514610901578063c876d0b91461092157600080fd5b8063a457c2d714610832578063a9059cbb14610852578063b62496f514610872578063bbc0c742146108a257600080fd5b80639a7a23d6116101b65780639a7a23d6146107d05780639c3b4fdc146107f05780639fccce3214610806578063a0d82dc51461081c57600080fd5b80638ea5220f1461077b578063924de9b71461079b57806395d89b41146107bb57600080fd5b80633c0c212f116102c157806370a082311161025f57806375e3661e1161022e57806375e3661e146107085780638095d564146107285780638a8c523c146107485780638da5cb5b1461075d57600080fd5b806370a0823114610688578063715018a6146106be578063751039fc146106d35780637571336a146106e857600080fd5b80634a62bb651161029b5780634a62bb65146105ff5780634fbee193146106195780636a486a8e146106525780636ddd17131461066857600080fd5b80633c0c212f146105965780633ccfd60b146105b657806349bd5a5e146105cb57600080fd5b80631a8145bb1161032e57806327c8f8351161030857806327c8f83514610524578063313ce5671461053a57806339509351146105565780633aeac4e11461057657600080fd5b80631a8145bb146104ce578063203e727e146104e457806323b872dd1461050457600080fd5b80631480b7a11161036a5780631480b7a1146104275780631694505e1461044b57806318160ddd146104975780631816467f146104ac57600080fd5b806306fdde031461039c578063095ea7b3146103c757806310d5de53146103f757600080fd5b3661039757005b600080fd5b3480156103a857600080fd5b506103b1610aff565b6040516103be9190612b6d565b60405180910390f35b3480156103d357600080fd5b506103e76103e2366004612bd7565b610b91565b60405190151581526020016103be565b34801561040357600080fd5b506103e7610412366004612c03565b601b6020526000908152604090205460ff1681565b34801561043357600080fd5b5061043d60145481565b6040519081526020016103be565b34801561045757600080fd5b5061047f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103be565b3480156104a357600080fd5b5060025461043d565b3480156104b857600080fd5b506104cc6104c7366004612c03565b610ba7565b005b3480156104da57600080fd5b5061043d60185481565b3480156104f057600080fd5b506104cc6104ff366004612c20565b610c37565b34801561051057600080fd5b506103e761051f366004612c39565b610d14565b34801561053057600080fd5b5061047f61dead81565b34801561054657600080fd5b50604051601281526020016103be565b34801561056257600080fd5b506103e7610571366004612bd7565b610dbe565b34801561058257600080fd5b506104cc610591366004612c7a565b610dfa565b3480156105a257600080fd5b5060065461047f906001600160a01b031681565b3480156105c257600080fd5b506104cc610fd9565b3480156105d757600080fd5b5061047f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561060b57600080fd5b50600b546103e79060ff1681565b34801561062557600080fd5b506103e7610634366004612c03565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561065e57600080fd5b5061043d60135481565b34801561067457600080fd5b50600b546103e79062010000900460ff1681565b34801561069457600080fd5b5061043d6106a3366004612c03565b6001600160a01b031660009081526020819052604090205490565b3480156106ca57600080fd5b506104cc61111f565b3480156106df57600080fd5b506103e7611155565b3480156106f457600080fd5b506104cc610703366004612cc1565b611192565b34801561071457600080fd5b506104cc610723366004612c03565b6111e7565b34801561073457600080fd5b506104cc610743366004612cef565b611232565b34801561075457600080fd5b506104cc6112d8565b34801561076957600080fd5b506005546001600160a01b031661047f565b34801561078757600080fd5b5060075461047f906001600160a01b031681565b3480156107a757600080fd5b506104cc6107b6366004612d1b565b611315565b3480156107c757600080fd5b506103b161135b565b3480156107dc57600080fd5b506104cc6107eb366004612cc1565b61136a565b3480156107fc57600080fd5b5061043d60125481565b34801561081257600080fd5b5061043d60195481565b34801561082857600080fd5b5061043d60165481565b34801561083e57600080fd5b506103e761084d366004612bd7565b611446565b34801561085e57600080fd5b506103e761086d366004612bd7565b6114df565b34801561087e57600080fd5b506103e761088d366004612c03565b601c6020526000908152604090205460ff1681565b3480156108ae57600080fd5b50600b546103e790610100900460ff1681565b3480156108cd57600080fd5b506104cc6108dc366004612cc1565b6114ec565b3480156108ed57600080fd5b506104cc6108fc366004612cef565b611575565b34801561090d57600080fd5b506104cc61091c366004612c20565b611618565b34801561092d57600080fd5b50600e546103e79060ff1681565b34801561094757600080fd5b5061043d60085481565b34801561095d57600080fd5b506103e761096c366004612c20565b6116e9565b34801561097d57600080fd5b5061043d600f5481565b34801561099357600080fd5b506104cc6109a2366004612c03565b61183b565b3480156109b357600080fd5b5061043d6109c2366004612c7a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109f957600080fd5b5061043d60095481565b348015610a0f57600080fd5b506103e76118c2565b348015610a2457600080fd5b5061043d60175481565b348015610a3a57600080fd5b5061043d60115481565b348015610a5057600080fd5b5061043d60105481565b348015610a6657600080fd5b506104cc610a75366004612c03565b6118ff565b348015610a8657600080fd5b5061043d60155481565b348015610a9c57600080fd5b5061043d600a5481565b348015610ab257600080fd5b506104cc610ac1366004612c03565b61199a565b348015610ad257600080fd5b506103e7610ae1366004612c03565b6001600160a01b03166000908152600d602052604090205460ff1690565b606060038054610b0e90612d38565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3a90612d38565b8015610b875780601f10610b5c57610100808354040283529160200191610b87565b820191906000526020600020905b815481529060010190602001808311610b6a57829003601f168201915b5050505050905090565b6000610b9e3384846119e8565b50600192915050565b6005546001600160a01b03163314610bda5760405162461bcd60e51b8152600401610bd190612d73565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c615760405162461bcd60e51b8152600401610bd190612d73565b670de0b6b3a76400006103e8610c7660025490565b610c81906001612dbe565b610c8b9190612ddd565b610c959190612ddd565b811015610cfc5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610bd1565b610d0e81670de0b6b3a7640000612dbe565b60085550565b6000610d21848484611b0c565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610da65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bd1565b610db385338584036119e8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b9e918590610df5908690612dff565b6119e8565b6005546001600160a01b03163314610e245760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b038216610e7a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bd1565b6001600160a01b038216301415610ed35760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610bd1565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610f1557600080fd5b505afa158015610f29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4d9190612e17565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb90604401602060405180830381600087803b158015610f9b57600080fd5b505af1158015610faf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd39190612e30565b50505050565b6005546001600160a01b031633146110035760405162461bcd60e51b8152600401610bd190612d73565b6040516370a0823160e01b815230600482018190526000916370a082319060240160206040518083038186803b15801561103c57600080fd5b505afa158015611050573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110749190612e17565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb90604401602060405180830381600087803b1580156110b657600080fd5b505af11580156110ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ee9190612e30565b5060405133904780156108fc02916000818181858888f1935050505015801561111b573d6000803e3d6000fd5b5050565b6005546001600160a01b031633146111495760405162461bcd60e51b8152600401610bd190612d73565b611153600061242a565b565b6005546000906001600160a01b031633146111825760405162461bcd60e51b8152600401610bd190612d73565b50600b805460ff19169055600190565b6005546001600160a01b031633146111bc5760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146112115760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b03166000908152600d60205260409020805460ff19169055565b6005546001600160a01b0316331461125c5760405162461bcd60e51b8152600401610bd190612d73565b601083905560118290556012819055806112768385612dff565b6112809190612dff565b600f81815510156112d35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610bd1565b505050565b6005546001600160a01b031633146113025760405162461bcd60e51b8152600401610bd190612d73565b600b805462ffff00191662010100179055565b6005546001600160a01b0316331461133f5760405162461bcd60e51b8152600401610bd190612d73565b600b8054911515620100000262ff000019909216919091179055565b606060048054610b0e90612d38565b6005546001600160a01b031633146113945760405162461bcd60e51b8152600401610bd190612d73565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141561143c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bd1565b61111b828261247c565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156114c85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bd1565b6114d533858584036119e8565b5060019392505050565b6000610b9e338484611b0c565b6005546001600160a01b031633146115165760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461159f5760405162461bcd60e51b8152600401610bd190612d73565b601483905560158290556016819055806115b98385612dff565b6115c39190612dff565b6013819055606310156112d35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610bd1565b6005546001600160a01b031633146116425760405162461bcd60e51b8152600401610bd190612d73565b670de0b6b3a76400006103e861165760025490565b611662906005612dbe565b61166c9190612ddd565b6116769190612ddd565b8110156116d15760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610bd1565b6116e381670de0b6b3a7640000612dbe565b600a5550565b6005546000906001600160a01b031633146117165760405162461bcd60e51b8152600401610bd190612d73565b620186a061172360025490565b61172e906001612dbe565b6117389190612ddd565b8210156117a55760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bd1565b6103e86117b160025490565b6117bc906008612dbe565b6117c69190612ddd565b8211156118325760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171c12903a37ba30b61039bab838363c9760611b6064820152608401610bd1565b50600955600190565b6005546001600160a01b031633146118655760405162461bcd60e51b8152600401610bd190612d73565b6006546040516001600160a01b03918216918316907ff78d2b03119e4c2d697e12346ffc25dc96d198a8c78534a569e73baae7ecc1c990600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146118ef5760405162461bcd60e51b8152600401610bd190612d73565b50600e805460ff19169055600190565b6005546001600160a01b031633146119295760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b03811661198e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd1565b6119978161242a565b50565b6005546001600160a01b031633146119c45760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b03166000908152600d60205260409020805460ff19166001179055565b6001600160a01b038316611a4a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bd1565b6001600160a01b038216611aab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bd1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b325760405162461bcd60e51b8152600401610bd190612e4d565b6001600160a01b038216611b585760405162461bcd60e51b8152600401610bd190612e92565b6001600160a01b0383166000908152600d602052604090205460ff1615611bb65760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610bd1565b6001600160a01b0382166000908152600d602052604090205460ff1615611c165760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610bd1565b80611c27576112d3838360006124d0565b600b5460ff16156120f5576005546001600160a01b03848116911614801590611c5e57506005546001600160a01b03838116911614155b8015611c7257506001600160a01b03821615155b8015611c8957506001600160a01b03821661dead14155b8015611c9f5750600554600160a01b900460ff16155b156120f557600b54610100900460ff16611d37576001600160a01b0383166000908152601a602052604090205460ff1680611cf257506001600160a01b0382166000908152601a602052604090205460ff165b611d375760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bd1565b600e5460ff1615611e8f576005546001600160a01b03838116911614801590611d9257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611dd057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611e8f57326000908152600c60205260409020544390611df2906001612dff565b10611e7c5760405162461bcd60e51b815260206004820152604e60248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260648201526d3637b1b5b99030b63637bbb2b21760911b608482015260a401610bd1565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff168015611ed057506001600160a01b0382166000908152601b602052604090205460ff16155b15611fb457600854811115611f455760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bd1565b600a546001600160a01b038316600090815260208190526040902054611f6b9083612dff565b1115611faf5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bd1565b6120f5565b6001600160a01b0382166000908152601c602052604090205460ff168015611ff557506001600160a01b0383166000908152601b602052604090205460ff16155b1561206b57600854811115611faf5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bd1565b6001600160a01b0382166000908152601b602052604090205460ff166120f557600a546001600160a01b0383166000908152602081905260409020546120b19083612dff565b11156120f55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bd1565b30600090815260208190526040902054600954811080159081906121215750600b5462010000900460ff165b80156121375750600554600160a01b900460ff16155b801561215c57506001600160a01b0385166000908152601c602052604090205460ff16155b801561218157506001600160a01b0385166000908152601a602052604090205460ff16155b80156121a657506001600160a01b0384166000908152601a602052604090205460ff16155b156121d4576005805460ff60a01b1916600160a01b1790556121c6612624565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b90920482161591168061222257506001600160a01b0385166000908152601a602052604090205460ff165b1561222b575060005b60008115612416576001600160a01b0386166000908152601c602052604090205460ff16801561225d57506000601354115b1561231b57612282606461227c6013548861285e90919063ffffffff16565b90612871565b9050601354601554826122959190612dbe565b61229f9190612ddd565b601860008282546122b09190612dff565b90915550506013546016546122c59083612dbe565b6122cf9190612ddd565b601960008282546122e09190612dff565b90915550506013546014546122f59083612dbe565b6122ff9190612ddd565b601760008282546123109190612dff565b909155506123f89050565b6001600160a01b0387166000908152601c602052604090205460ff16801561234557506000600f54115b156123f857612364606461227c600f548861285e90919063ffffffff16565b9050600f54601154826123779190612dbe565b6123819190612ddd565b601860008282546123929190612dff565b9091555050600f546012546123a79083612dbe565b6123b19190612ddd565b601960008282546123c29190612dff565b9091555050600f546010546123d79083612dbe565b6123e19190612ddd565b601760008282546123f29190612dff565b90915550505b8015612409576124098730836124d0565b6124138186612ed5565b94505b6124218787876124d0565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124f65760405162461bcd60e51b8152600401610bd190612e4d565b6001600160a01b03821661251c5760405162461bcd60e51b8152600401610bd190612e92565b6001600160a01b038316600090815260208190526040902054818110156125945760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bd1565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125cb908490612dff565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161261791815260200190565b60405180910390a3610fd3565b306000908152602081905260408120549050600060195460175460185461264b9190612dff565b6126559190612dff565b90506000821580612664575081155b1561266e57505050565b60095461267c906014612dbe565b83111561269457600954612691906014612dbe565b92505b6000600283601854866126a79190612dbe565b6126b19190612ddd565b6126bb9190612ddd565b905060006126c9858361287d565b9050476126d582612889565b60006126e1478361287d565b905060006126fe8761227c6017548561285e90919063ffffffff16565b9050600061271b8861227c6019548661285e90919063ffffffff16565b905060008161272a8486612ed5565b6127349190612ed5565b60006018819055601781905560198190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612791576040519150601f19603f3d011682016040523d82523d6000602084013e612796565b606091505b509098505086158015906127aa5750600081115b156127fd576127b98782612a58565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461284a576040519150601f19603f3d011682016040523d82523d6000602084013e61284f565b606091505b50505050505050505050505050565b600061286a8284612dbe565b9392505050565b600061286a8284612ddd565b600061286a8284612ed5565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106128be576128be612eec565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561293757600080fd5b505afa15801561294b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061296f9190612f02565b8160018151811061298257612982612eec565b60200260200101906001600160a01b031690816001600160a01b0316815250506129cd307f0000000000000000000000000000000000000000000000000000000000000000846119e8565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612a22908590600090869030904290600401612f1f565b600060405180830381600087803b158015612a3c57600080fd5b505af1158015612a50573d6000803e3d6000fd5b505050505050565b612a83307f0000000000000000000000000000000000000000000000000000000000000000846119e8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080612aca6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b158015612b2d57600080fd5b505af1158015612b41573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612b669190612f90565b5050505050565b600060208083528351808285015260005b81811015612b9a57858101830151858201604001528201612b7e565b81811115612bac576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461199757600080fd5b60008060408385031215612bea57600080fd5b8235612bf581612bc2565b946020939093013593505050565b600060208284031215612c1557600080fd5b813561286a81612bc2565b600060208284031215612c3257600080fd5b5035919050565b600080600060608486031215612c4e57600080fd5b8335612c5981612bc2565b92506020840135612c6981612bc2565b929592945050506040919091013590565b60008060408385031215612c8d57600080fd5b8235612c9881612bc2565b91506020830135612ca881612bc2565b809150509250929050565b801515811461199757600080fd5b60008060408385031215612cd457600080fd5b8235612cdf81612bc2565b91506020830135612ca881612cb3565b600080600060608486031215612d0457600080fd5b505081359360208301359350604090920135919050565b600060208284031215612d2d57600080fd5b813561286a81612cb3565b600181811c90821680612d4c57607f821691505b60208210811415612d6d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612dd857612dd8612da8565b500290565b600082612dfa57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612e1257612e12612da8565b500190565b600060208284031215612e2957600080fd5b5051919050565b600060208284031215612e4257600080fd5b815161286a81612cb3565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612ee757612ee7612da8565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612f1457600080fd5b815161286a81612bc2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612f6f5784516001600160a01b031683529383019391830191600101612f4a565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612fa557600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220918473881c0f08373f54a4372dd81bdb8a45a7c4f7ebff8dfce9f5140696a68f64736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103905760003560e01c80638ea5220f116101dc578063c8c8ebe411610102578063ec3884f3116100a0578063f63743421161006f578063f637434214610a7a578063f8b45b0514610a90578063f9f92be414610aa6578063fe575a8714610ac657600080fd5b8063ec3884f314610a18578063f11a24d314610a2e578063f139ca4014610a44578063f2fde38b14610a5a57600080fd5b8063dcf14013116100dc578063dcf1401314610987578063dd62ed3e146109a7578063e2f45605146109ed578063e884f26014610a0357600080fd5b8063c8c8ebe41461093b578063d257b34f14610951578063d85ba0631461097157600080fd5b8063a457c2d71161017a578063c024666811610149578063c0246668146108c1578063c17b5b8c146108e1578063c18bc19514610901578063c876d0b91461092157600080fd5b8063a457c2d714610832578063a9059cbb14610852578063b62496f514610872578063bbc0c742146108a257600080fd5b80639a7a23d6116101b65780639a7a23d6146107d05780639c3b4fdc146107f05780639fccce3214610806578063a0d82dc51461081c57600080fd5b80638ea5220f1461077b578063924de9b71461079b57806395d89b41146107bb57600080fd5b80633c0c212f116102c157806370a082311161025f57806375e3661e1161022e57806375e3661e146107085780638095d564146107285780638a8c523c146107485780638da5cb5b1461075d57600080fd5b806370a0823114610688578063715018a6146106be578063751039fc146106d35780637571336a146106e857600080fd5b80634a62bb651161029b5780634a62bb65146105ff5780634fbee193146106195780636a486a8e146106525780636ddd17131461066857600080fd5b80633c0c212f146105965780633ccfd60b146105b657806349bd5a5e146105cb57600080fd5b80631a8145bb1161032e57806327c8f8351161030857806327c8f83514610524578063313ce5671461053a57806339509351146105565780633aeac4e11461057657600080fd5b80631a8145bb146104ce578063203e727e146104e457806323b872dd1461050457600080fd5b80631480b7a11161036a5780631480b7a1146104275780631694505e1461044b57806318160ddd146104975780631816467f146104ac57600080fd5b806306fdde031461039c578063095ea7b3146103c757806310d5de53146103f757600080fd5b3661039757005b600080fd5b3480156103a857600080fd5b506103b1610aff565b6040516103be9190612b6d565b60405180910390f35b3480156103d357600080fd5b506103e76103e2366004612bd7565b610b91565b60405190151581526020016103be565b34801561040357600080fd5b506103e7610412366004612c03565b601b6020526000908152604090205460ff1681565b34801561043357600080fd5b5061043d60145481565b6040519081526020016103be565b34801561045757600080fd5b5061047f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103be565b3480156104a357600080fd5b5060025461043d565b3480156104b857600080fd5b506104cc6104c7366004612c03565b610ba7565b005b3480156104da57600080fd5b5061043d60185481565b3480156104f057600080fd5b506104cc6104ff366004612c20565b610c37565b34801561051057600080fd5b506103e761051f366004612c39565b610d14565b34801561053057600080fd5b5061047f61dead81565b34801561054657600080fd5b50604051601281526020016103be565b34801561056257600080fd5b506103e7610571366004612bd7565b610dbe565b34801561058257600080fd5b506104cc610591366004612c7a565b610dfa565b3480156105a257600080fd5b5060065461047f906001600160a01b031681565b3480156105c257600080fd5b506104cc610fd9565b3480156105d757600080fd5b5061047f7f0000000000000000000000001a67ed45ebd7876be4def0bb12d6c51b80339cb381565b34801561060b57600080fd5b50600b546103e79060ff1681565b34801561062557600080fd5b506103e7610634366004612c03565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561065e57600080fd5b5061043d60135481565b34801561067457600080fd5b50600b546103e79062010000900460ff1681565b34801561069457600080fd5b5061043d6106a3366004612c03565b6001600160a01b031660009081526020819052604090205490565b3480156106ca57600080fd5b506104cc61111f565b3480156106df57600080fd5b506103e7611155565b3480156106f457600080fd5b506104cc610703366004612cc1565b611192565b34801561071457600080fd5b506104cc610723366004612c03565b6111e7565b34801561073457600080fd5b506104cc610743366004612cef565b611232565b34801561075457600080fd5b506104cc6112d8565b34801561076957600080fd5b506005546001600160a01b031661047f565b34801561078757600080fd5b5060075461047f906001600160a01b031681565b3480156107a757600080fd5b506104cc6107b6366004612d1b565b611315565b3480156107c757600080fd5b506103b161135b565b3480156107dc57600080fd5b506104cc6107eb366004612cc1565b61136a565b3480156107fc57600080fd5b5061043d60125481565b34801561081257600080fd5b5061043d60195481565b34801561082857600080fd5b5061043d60165481565b34801561083e57600080fd5b506103e761084d366004612bd7565b611446565b34801561085e57600080fd5b506103e761086d366004612bd7565b6114df565b34801561087e57600080fd5b506103e761088d366004612c03565b601c6020526000908152604090205460ff1681565b3480156108ae57600080fd5b50600b546103e790610100900460ff1681565b3480156108cd57600080fd5b506104cc6108dc366004612cc1565b6114ec565b3480156108ed57600080fd5b506104cc6108fc366004612cef565b611575565b34801561090d57600080fd5b506104cc61091c366004612c20565b611618565b34801561092d57600080fd5b50600e546103e79060ff1681565b34801561094757600080fd5b5061043d60085481565b34801561095d57600080fd5b506103e761096c366004612c20565b6116e9565b34801561097d57600080fd5b5061043d600f5481565b34801561099357600080fd5b506104cc6109a2366004612c03565b61183b565b3480156109b357600080fd5b5061043d6109c2366004612c7a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109f957600080fd5b5061043d60095481565b348015610a0f57600080fd5b506103e76118c2565b348015610a2457600080fd5b5061043d60175481565b348015610a3a57600080fd5b5061043d60115481565b348015610a5057600080fd5b5061043d60105481565b348015610a6657600080fd5b506104cc610a75366004612c03565b6118ff565b348015610a8657600080fd5b5061043d60155481565b348015610a9c57600080fd5b5061043d600a5481565b348015610ab257600080fd5b506104cc610ac1366004612c03565b61199a565b348015610ad257600080fd5b506103e7610ae1366004612c03565b6001600160a01b03166000908152600d602052604090205460ff1690565b606060038054610b0e90612d38565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3a90612d38565b8015610b875780601f10610b5c57610100808354040283529160200191610b87565b820191906000526020600020905b815481529060010190602001808311610b6a57829003601f168201915b5050505050905090565b6000610b9e3384846119e8565b50600192915050565b6005546001600160a01b03163314610bda5760405162461bcd60e51b8152600401610bd190612d73565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c615760405162461bcd60e51b8152600401610bd190612d73565b670de0b6b3a76400006103e8610c7660025490565b610c81906001612dbe565b610c8b9190612ddd565b610c959190612ddd565b811015610cfc5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610bd1565b610d0e81670de0b6b3a7640000612dbe565b60085550565b6000610d21848484611b0c565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610da65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bd1565b610db385338584036119e8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b9e918590610df5908690612dff565b6119e8565b6005546001600160a01b03163314610e245760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b038216610e7a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bd1565b6001600160a01b038216301415610ed35760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610bd1565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610f1557600080fd5b505afa158015610f29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4d9190612e17565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb90604401602060405180830381600087803b158015610f9b57600080fd5b505af1158015610faf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd39190612e30565b50505050565b6005546001600160a01b031633146110035760405162461bcd60e51b8152600401610bd190612d73565b6040516370a0823160e01b815230600482018190526000916370a082319060240160206040518083038186803b15801561103c57600080fd5b505afa158015611050573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110749190612e17565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb90604401602060405180830381600087803b1580156110b657600080fd5b505af11580156110ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ee9190612e30565b5060405133904780156108fc02916000818181858888f1935050505015801561111b573d6000803e3d6000fd5b5050565b6005546001600160a01b031633146111495760405162461bcd60e51b8152600401610bd190612d73565b611153600061242a565b565b6005546000906001600160a01b031633146111825760405162461bcd60e51b8152600401610bd190612d73565b50600b805460ff19169055600190565b6005546001600160a01b031633146111bc5760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146112115760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b03166000908152600d60205260409020805460ff19169055565b6005546001600160a01b0316331461125c5760405162461bcd60e51b8152600401610bd190612d73565b601083905560118290556012819055806112768385612dff565b6112809190612dff565b600f81815510156112d35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610bd1565b505050565b6005546001600160a01b031633146113025760405162461bcd60e51b8152600401610bd190612d73565b600b805462ffff00191662010100179055565b6005546001600160a01b0316331461133f5760405162461bcd60e51b8152600401610bd190612d73565b600b8054911515620100000262ff000019909216919091179055565b606060048054610b0e90612d38565b6005546001600160a01b031633146113945760405162461bcd60e51b8152600401610bd190612d73565b7f0000000000000000000000001a67ed45ebd7876be4def0bb12d6c51b80339cb36001600160a01b0316826001600160a01b0316141561143c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bd1565b61111b828261247c565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156114c85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bd1565b6114d533858584036119e8565b5060019392505050565b6000610b9e338484611b0c565b6005546001600160a01b031633146115165760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461159f5760405162461bcd60e51b8152600401610bd190612d73565b601483905560158290556016819055806115b98385612dff565b6115c39190612dff565b6013819055606310156112d35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610bd1565b6005546001600160a01b031633146116425760405162461bcd60e51b8152600401610bd190612d73565b670de0b6b3a76400006103e861165760025490565b611662906005612dbe565b61166c9190612ddd565b6116769190612ddd565b8110156116d15760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610bd1565b6116e381670de0b6b3a7640000612dbe565b600a5550565b6005546000906001600160a01b031633146117165760405162461bcd60e51b8152600401610bd190612d73565b620186a061172360025490565b61172e906001612dbe565b6117389190612ddd565b8210156117a55760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bd1565b6103e86117b160025490565b6117bc906008612dbe565b6117c69190612ddd565b8211156118325760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171c12903a37ba30b61039bab838363c9760611b6064820152608401610bd1565b50600955600190565b6005546001600160a01b031633146118655760405162461bcd60e51b8152600401610bd190612d73565b6006546040516001600160a01b03918216918316907ff78d2b03119e4c2d697e12346ffc25dc96d198a8c78534a569e73baae7ecc1c990600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146118ef5760405162461bcd60e51b8152600401610bd190612d73565b50600e805460ff19169055600190565b6005546001600160a01b031633146119295760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b03811661198e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd1565b6119978161242a565b50565b6005546001600160a01b031633146119c45760405162461bcd60e51b8152600401610bd190612d73565b6001600160a01b03166000908152600d60205260409020805460ff19166001179055565b6001600160a01b038316611a4a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bd1565b6001600160a01b038216611aab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bd1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b325760405162461bcd60e51b8152600401610bd190612e4d565b6001600160a01b038216611b585760405162461bcd60e51b8152600401610bd190612e92565b6001600160a01b0383166000908152600d602052604090205460ff1615611bb65760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610bd1565b6001600160a01b0382166000908152600d602052604090205460ff1615611c165760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610bd1565b80611c27576112d3838360006124d0565b600b5460ff16156120f5576005546001600160a01b03848116911614801590611c5e57506005546001600160a01b03838116911614155b8015611c7257506001600160a01b03821615155b8015611c8957506001600160a01b03821661dead14155b8015611c9f5750600554600160a01b900460ff16155b156120f557600b54610100900460ff16611d37576001600160a01b0383166000908152601a602052604090205460ff1680611cf257506001600160a01b0382166000908152601a602052604090205460ff165b611d375760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bd1565b600e5460ff1615611e8f576005546001600160a01b03838116911614801590611d9257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611dd057507f0000000000000000000000001a67ed45ebd7876be4def0bb12d6c51b80339cb36001600160a01b0316826001600160a01b031614155b15611e8f57326000908152600c60205260409020544390611df2906001612dff565b10611e7c5760405162461bcd60e51b815260206004820152604e60248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260648201526d3637b1b5b99030b63637bbb2b21760911b608482015260a401610bd1565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff168015611ed057506001600160a01b0382166000908152601b602052604090205460ff16155b15611fb457600854811115611f455760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bd1565b600a546001600160a01b038316600090815260208190526040902054611f6b9083612dff565b1115611faf5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bd1565b6120f5565b6001600160a01b0382166000908152601c602052604090205460ff168015611ff557506001600160a01b0383166000908152601b602052604090205460ff16155b1561206b57600854811115611faf5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bd1565b6001600160a01b0382166000908152601b602052604090205460ff166120f557600a546001600160a01b0383166000908152602081905260409020546120b19083612dff565b11156120f55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bd1565b30600090815260208190526040902054600954811080159081906121215750600b5462010000900460ff165b80156121375750600554600160a01b900460ff16155b801561215c57506001600160a01b0385166000908152601c602052604090205460ff16155b801561218157506001600160a01b0385166000908152601a602052604090205460ff16155b80156121a657506001600160a01b0384166000908152601a602052604090205460ff16155b156121d4576005805460ff60a01b1916600160a01b1790556121c6612624565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b90920482161591168061222257506001600160a01b0385166000908152601a602052604090205460ff165b1561222b575060005b60008115612416576001600160a01b0386166000908152601c602052604090205460ff16801561225d57506000601354115b1561231b57612282606461227c6013548861285e90919063ffffffff16565b90612871565b9050601354601554826122959190612dbe565b61229f9190612ddd565b601860008282546122b09190612dff565b90915550506013546016546122c59083612dbe565b6122cf9190612ddd565b601960008282546122e09190612dff565b90915550506013546014546122f59083612dbe565b6122ff9190612ddd565b601760008282546123109190612dff565b909155506123f89050565b6001600160a01b0387166000908152601c602052604090205460ff16801561234557506000600f54115b156123f857612364606461227c600f548861285e90919063ffffffff16565b9050600f54601154826123779190612dbe565b6123819190612ddd565b601860008282546123929190612dff565b9091555050600f546012546123a79083612dbe565b6123b19190612ddd565b601960008282546123c29190612dff565b9091555050600f546010546123d79083612dbe565b6123e19190612ddd565b601760008282546123f29190612dff565b90915550505b8015612409576124098730836124d0565b6124138186612ed5565b94505b6124218787876124d0565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124f65760405162461bcd60e51b8152600401610bd190612e4d565b6001600160a01b03821661251c5760405162461bcd60e51b8152600401610bd190612e92565b6001600160a01b038316600090815260208190526040902054818110156125945760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bd1565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125cb908490612dff565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161261791815260200190565b60405180910390a3610fd3565b306000908152602081905260408120549050600060195460175460185461264b9190612dff565b6126559190612dff565b90506000821580612664575081155b1561266e57505050565b60095461267c906014612dbe565b83111561269457600954612691906014612dbe565b92505b6000600283601854866126a79190612dbe565b6126b19190612ddd565b6126bb9190612ddd565b905060006126c9858361287d565b9050476126d582612889565b60006126e1478361287d565b905060006126fe8761227c6017548561285e90919063ffffffff16565b9050600061271b8861227c6019548661285e90919063ffffffff16565b905060008161272a8486612ed5565b6127349190612ed5565b60006018819055601781905560198190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612791576040519150601f19603f3d011682016040523d82523d6000602084013e612796565b606091505b509098505086158015906127aa5750600081115b156127fd576127b98782612a58565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461284a576040519150601f19603f3d011682016040523d82523d6000602084013e61284f565b606091505b50505050505050505050505050565b600061286a8284612dbe565b9392505050565b600061286a8284612ddd565b600061286a8284612ed5565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106128be576128be612eec565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561293757600080fd5b505afa15801561294b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061296f9190612f02565b8160018151811061298257612982612eec565b60200260200101906001600160a01b031690816001600160a01b0316815250506129cd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846119e8565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612a22908590600090869030904290600401612f1f565b600060405180830381600087803b158015612a3c57600080fd5b505af1158015612a50573d6000803e3d6000fd5b505050505050565b612a83307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846119e8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080612aca6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b158015612b2d57600080fd5b505af1158015612b41573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612b669190612f90565b5050505050565b600060208083528351808285015260005b81811015612b9a57858101830151858201604001528201612b7e565b81811115612bac576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461199757600080fd5b60008060408385031215612bea57600080fd5b8235612bf581612bc2565b946020939093013593505050565b600060208284031215612c1557600080fd5b813561286a81612bc2565b600060208284031215612c3257600080fd5b5035919050565b600080600060608486031215612c4e57600080fd5b8335612c5981612bc2565b92506020840135612c6981612bc2565b929592945050506040919091013590565b60008060408385031215612c8d57600080fd5b8235612c9881612bc2565b91506020830135612ca881612bc2565b809150509250929050565b801515811461199757600080fd5b60008060408385031215612cd457600080fd5b8235612cdf81612bc2565b91506020830135612ca881612cb3565b600080600060608486031215612d0457600080fd5b505081359360208301359350604090920135919050565b600060208284031215612d2d57600080fd5b813561286a81612cb3565b600181811c90821680612d4c57607f821691505b60208210811415612d6d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612dd857612dd8612da8565b500290565b600082612dfa57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612e1257612e12612da8565b500190565b600060208284031215612e2957600080fd5b5051919050565b600060208284031215612e4257600080fd5b815161286a81612cb3565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612ee757612ee7612da8565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612f1457600080fd5b815161286a81612bc2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612f6f5784516001600160a01b031683529383019391830191600101612f4a565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612fa557600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220918473881c0f08373f54a4372dd81bdb8a45a7c4f7ebff8dfce9f5140696a68f64736f6c63430008090033

Deployed Bytecode Sourcemap

30488:17363:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8447:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10614:169;;;;;;;;;;-1:-1:-1;10614:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;10614:169:0;1072:187:1;31877:63:0;;;;;;;;;;-1:-1:-1;31877:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31513:30;;;;;;;;;;;;;;;;;;;1662:25:1;;;1650:2;1635:18;31513:30:0;1516:177:1;30569:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1889:32:1;;;1871:51;;1859:2;1844:18;30569:51:0;1698:230:1;9567:108:0;;;;;;;;;;-1:-1:-1;9655:12:0;;9567:108;;38903:157;;;;;;;;;;-1:-1:-1;38903:157:0;;;;;:::i;:::-;;:::i;:::-;;31661:33;;;;;;;;;;;;;;;;36255:275;;;;;;;;;;-1:-1:-1;36255:275:0;;;;;:::i;:::-;;:::i;11265:492::-;;;;;;;;;;-1:-1:-1;11265:492:0;;;;;:::i;:::-;;:::i;30672:53::-;;;;;;;;;;;;30718:6;30672:53;;9409:93;;;;;;;;;;-1:-1:-1;9409:93:0;;9492:2;2929:36:1;;2917:2;2902:18;9409:93:0;2787:184:1;12166:215:0;;;;;;;;;;-1:-1:-1;12166:215:0;;;;;:::i;:::-;;:::i;47277:358::-;;;;;;;;;;-1:-1:-1;47277:358:0;;;;;:::i;:::-;;:::i;30764:29::-;;;;;;;;;;-1:-1:-1;30764:29:0;;;;-1:-1:-1;;;;;30764:29:0;;;47023:246;;;;;;;;;;;;;:::i;30627:38::-;;;;;;;;;;;;;;;30948:33;;;;;;;;;;-1:-1:-1;30948:33:0;;;;;;;;39068:126;;;;;;;;;;-1:-1:-1;39068:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;39158:28:0;39134:4;39158:28;;;:19;:28;;;;;;;;;39068:126;31478:28;;;;;;;;;;;;;;;;31028:31;;;;;;;;;;-1:-1:-1;31028:31:0;;;;;;;;;;;9738:127;;;;;;;;;;-1:-1:-1;9738:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9839:18:0;9812:7;9839:18;;;;;;;;;;;;9738:127;1964:103;;;;;;;;;;;;;:::i;35363:121::-;;;;;;;;;;;;;:::i;36802:167::-;;;;;;;;;;-1:-1:-1;36802:167:0;;;;;:::i;:::-;;:::i;47748:100::-;;;;;;;;;;-1:-1:-1;47748:100:0;;;;;:::i;:::-;;:::i;37173:399::-;;;;;;;;;;-1:-1:-1;37173:399:0;;;;;:::i;:::-;;:::i;35199:112::-;;;;;;;;;;;;;:::i;1313:87::-;;;;;;;;;;-1:-1:-1;1386:6:0;;-1:-1:-1;;;;;1386:6:0;1313:87;;30800:24;;;;;;;;;;-1:-1:-1;30800:24:0;;;;-1:-1:-1;;;;;30800:24:0;;;37065:100;;;;;;;;;;-1:-1:-1;37065:100:0;;;;;:::i;:::-;;:::i;8666:104::-;;;;;;;;;;;;;:::i;38186:304::-;;;;;;;;;;-1:-1:-1;38186:304:0;;;;;:::i;:::-;;:::i;31445:24::-;;;;;;;;;;;;;;;;31701:27;;;;;;;;;;;;;;;;31588:25;;;;;;;;;;;;;;;;12884:413;;;;;;;;;;-1:-1:-1;12884:413:0;;;;;:::i;:::-;;:::i;10078:175::-;;;;;;;;;;-1:-1:-1;10078:175:0;;;;;:::i;:::-;;:::i;32098:57::-;;;;;;;;;;-1:-1:-1;32098:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30988:33;;;;;;;;;;-1:-1:-1;30988:33:0;;;;;;;;;;;37996:182;;;;;;;;;;-1:-1:-1;37996:182:0;;;;;:::i;:::-;;:::i;37580:408::-;;;;;;;;;;-1:-1:-1;37580:408:0;;;;;:::i;:::-;;:::i;36538:256::-;;;;;;;;;;-1:-1:-1;36538:256:0;;;;;:::i;:::-;;:::i;31289:40::-;;;;;;;;;;-1:-1:-1;31289:40:0;;;;;;;;30833:35;;;;;;;;;;;;;;;;35750:497;;;;;;;;;;-1:-1:-1;35750:497:0;;;;;:::i;:::-;;:::i;31338:27::-;;;;;;;;;;;;;;;;38694:201;;;;;;;;;;-1:-1:-1;38694:201:0;;;;;:::i;:::-;;:::i;10316:151::-;;;;;;;;;;-1:-1:-1;10316:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10432:18:0;;;10405:7;10432:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10316:151;30875:33;;;;;;;;;;;;;;;;35545:135;;;;;;;;;;;;;:::i;31622:32::-;;;;;;;;;;;;;;;;31408:30;;;;;;;;;;;;;;;;31372:29;;;;;;;;;;;;;;;;2222:201;;;;;;;;;;-1:-1:-1;2222:201:0;;;;;:::i;:::-;;:::i;31550:31::-;;;;;;;;;;;;;;;;30915:24;;;;;;;;;;;;;;;;47643:97;;;;;;;;;;-1:-1:-1;47643:97:0;;;;;:::i;:::-;;:::i;39202:113::-;;;;;;;;;;-1:-1:-1;39202:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;39287:20:0;39263:4;39287:20;;;:11;:20;;;;;;;;;39202:113;8447:100;8501:13;8534:5;8527:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8447:100;:::o;10614:169::-;10697:4;10714:39;260:10;10737:7;10746:6;10714:8;:39::i;:::-;-1:-1:-1;10771:4:0;10614:169;;;;:::o;38903:157::-;1386:6;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;;;;;;;;;39010:9:::1;::::0;38982:38:::1;::::0;-1:-1:-1;;;;;39010:9:0;;::::1;::::0;38982:38;::::1;::::0;::::1;::::0;39010:9:::1;::::0;38982:38:::1;39031:9;:21:::0;;-1:-1:-1;;;;;;39031:21:0::1;-1:-1:-1::0;;;;;39031:21:0;;;::::1;::::0;;;::::1;::::0;;38903:157::o;36255:275::-;1386:6;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;36392:4:::1;36384;36363:13;9655:12:::0;;;9567:108;36363:13:::1;:17;::::0;36379:1:::1;36363:17;:::i;:::-;36362:26;;;;:::i;:::-;36361:35;;;;:::i;:::-;36351:6;:45;;36329:142;;;::::0;-1:-1:-1;;;36329:142:0;;5921:2:1;36329:142:0::1;::::0;::::1;5903:21:1::0;5960:2;5940:18;;;5933:30;5999:34;5979:18;;;5972:62;-1:-1:-1;;;6050:18:1;;;6043:45;6105:19;;36329:142:0::1;5719:411:1::0;36329:142:0::1;36505:17;:6:::0;36515::::1;36505:17;:::i;:::-;36482:20;:40:::0;-1:-1:-1;36255:275:0:o;11265:492::-;11405:4;11422:36;11432:6;11440:9;11451:6;11422:9;:36::i;:::-;-1:-1:-1;;;;;11498:19:0;;11471:24;11498:19;;;:11;:19;;;;;;;;260:10;11498:33;;;;;;;;11550:26;;;;11542:79;;;;-1:-1:-1;;;11542:79:0;;6337:2:1;11542:79:0;;;6319:21:1;6376:2;6356:18;;;6349:30;6415:34;6395:18;;;6388:62;-1:-1:-1;;;6466:18:1;;;6459:38;6514:19;;11542:79:0;6135:404:1;11542:79:0;11657:57;11666:6;260:10;11707:6;11688:16;:25;11657:8;:57::i;:::-;-1:-1:-1;11745:4:0;;11265:492;-1:-1:-1;;;;11265:492:0:o;12166:215::-;260:10;12254:4;12303:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12303:34:0;;;;;;;;;;12254:4;;12271:80;;12294:7;;12303:47;;12340:10;;12303:47;:::i;:::-;12271:8;:80::i;47277:358::-;1386:6;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47367:20:0;::::1;47359:59;;;::::0;-1:-1:-1;;;47359:59:0;;6879:2:1;47359:59:0::1;::::0;::::1;6861:21:1::0;6918:2;6898:18;;;6891:30;6957:28;6937:18;;;6930:56;7003:18;;47359:59:0::1;6677:350:1::0;47359:59:0::1;-1:-1:-1::0;;;;;47437:23:0;::::1;47455:4;47437:23;;47429:64;;;::::0;-1:-1:-1;;;47429:64:0;;7234:2:1;47429:64:0::1;::::0;::::1;7216:21:1::0;7273:2;7253:18;;;7246:30;7312;7292:18;;;7285:58;7360:18;;47429:64:0::1;7032:352:1::0;47429:64:0::1;47531:39;::::0;-1:-1:-1;;;47531:39:0;;47564:4:::1;47531:39;::::0;::::1;1871:51:1::0;47504:24:0::1;::::0;-1:-1:-1;;;;;47531:24:0;::::1;::::0;::::1;::::0;1844:18:1;;47531:39:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47581:46;::::0;-1:-1:-1;;;47581:46:0;;-1:-1:-1;;;;;7770:32:1;;;47581:46:0::1;::::0;::::1;7752:51:1::0;7819:18;;;7812:34;;;47504:66:0;;-1:-1:-1;47581:23:0;;::::1;::::0;::::1;::::0;7725:18:1;;47581:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47348:287;47277:358:::0;;:::o;47023:246::-;1386:6;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;47091:46:::1;::::0;-1:-1:-1;;;47091:46:0;;47106:4:::1;47091:46;::::0;::::1;1871:51:1::0;;;47073:15:0::1;::::0;47091:31:::1;::::0;1844:18:1;;47091:46:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47148:51;::::0;-1:-1:-1;;;47148:51:0;;47179:10:::1;47148:51;::::0;::::1;7752::1::0;7819:18;;;7812:34;;;47073:64:0;;-1:-1:-1;47163:4:0::1;::::0;47148:30:::1;::::0;7725:18:1;;47148:51:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;47210:51:0::1;::::0;47218:10:::1;::::0;47239:21:::1;47210:51:::0;::::1;;;::::0;::::1;::::0;;;47239:21;47218:10;47210:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47062:207;47023:246::o:0;1964:103::-;1386:6;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;2029:30:::1;2056:1;2029:18;:30::i;:::-;1964:103::o:0;35363:121::-;1386:6;;35415:4;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;-1:-1:-1;35432:14:0::1;:22:::0;;-1:-1:-1;;35432:22:0::1;::::0;;;35363:121;:::o;36802:167::-;1386:6;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36915:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;36915:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36802:167::o;47748:100::-;1386:6;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47813:19:0::1;47835:5;47813:19:::0;;;:11:::1;:19;::::0;;;;:27;;-1:-1:-1;;47813:27:0::1;::::0;;47748:100::o;37173:399::-;1386:6;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;37322:14:::1;:29:::0;;;37362:15:::1;:31:::0;;;37404:9:::1;:19:::0;;;37416:7;37449:32:::1;37380:13:::0;37339:12;37449:32:::1;:::i;:::-;:44;;;;:::i;:::-;37434:12;:59:::0;;;-1:-1:-1;37512:18:0::1;37504:60;;;::::0;-1:-1:-1;;;37504:60:0;;8309:2:1;37504:60:0::1;::::0;::::1;8291:21:1::0;8348:2;8328:18;;;8321:30;8387:31;8367:18;;;8360:59;8436:18;;37504:60:0::1;8107:353:1::0;37504:60:0::1;37173:399:::0;;;:::o;35199:112::-;1386:6;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;35254:13:::1;:20:::0;;-1:-1:-1;;35285:18:0;;;;;35199:112::o;37065:100::-;1386:6;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;37136:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37136:21:0;;::::1;::::0;;;::::1;::::0;;37065:100::o;8666:104::-;8722:13;8755:7;8748:14;;;;;:::i;38186:304::-;1386:6;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;38330:13:::1;-1:-1:-1::0;;;;;38322:21:0::1;:4;-1:-1:-1::0;;;;;38322:21:0::1;;;38300:128;;;::::0;-1:-1:-1;;;38300:128:0;;8667:2:1;38300:128:0::1;::::0;::::1;8649:21:1::0;8706:2;8686:18;;;8679:30;8745:34;8725:18;;;8718:62;8816:27;8796:18;;;8789:55;8861:19;;38300:128:0::1;8465:421:1::0;38300:128:0::1;38441:41;38470:4;38476:5;38441:28;:41::i;12884:413::-:0;260:10;12977:4;13021:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13021:34:0;;;;;;;;;;13074:35;;;;13066:85;;;;-1:-1:-1;;;13066:85:0;;9093:2:1;13066:85:0;;;9075:21:1;9132:2;9112:18;;;9105:30;9171:34;9151:18;;;9144:62;-1:-1:-1;;;9222:18:1;;;9215:35;9267:19;;13066:85:0;8891:401:1;13066:85:0;13187:67;260:10;13210:7;13238:15;13219:16;:34;13187:8;:67::i;:::-;-1:-1:-1;13285:4:0;;12884:413;-1:-1:-1;;;12884:413:0:o;10078:175::-;10164:4;10181:42;260:10;10205:9;10216:6;10181:9;:42::i;37996:182::-;1386:6;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38081:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38081:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38136:34;;1212:41:1;;;38136:34:0::1;::::0;1185:18:1;38136:34:0::1;;;;;;;37996:182:::0;;:::o;37580:408::-;1386:6;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;37730:15:::1;:30:::0;;;37771:16:::1;:32:::0;;;37814:10:::1;:20:::0;;;37827:7;37861:34:::1;37790:13:::0;37748:12;37861:34:::1;:::i;:::-;:47;;;;:::i;:::-;37845:13;:63:::0;;;37944:2:::1;-1:-1:-1::0;37927:19:0::1;37919:61;;;::::0;-1:-1:-1;;;37919:61:0;;8309:2:1;37919:61:0::1;::::0;::::1;8291:21:1::0;8348:2;8328:18;;;8321:30;8387:31;8367:18;;;8360:59;8436:18;;37919:61:0::1;8107:353:1::0;36538:256:0;1386:6;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;36678:4:::1;36670;36649:13;9655:12:::0;;;9567:108;36649:13:::1;:17;::::0;36665:1:::1;36649:17;:::i;:::-;36648:26;;;;:::i;:::-;36647:35;;;;:::i;:::-;36637:6;:45;;36615:131;;;::::0;-1:-1:-1;;;36615:131:0;;9499:2:1;36615:131:0::1;::::0;::::1;9481:21:1::0;9538:2;9518:18;;;9511:30;9577:34;9557:18;;;9550:62;-1:-1:-1;;;9628:18:1;;;9621:34;9672:19;;36615:131:0::1;9297:400:1::0;36615:131:0::1;36769:17;:6:::0;36779::::1;36769:17;:::i;:::-;36757:9;:29:::0;-1:-1:-1;36538:256:0:o;35750:497::-;1386:6;;35858:4;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;35937:6:::1;35916:13;9655:12:::0;;;9567:108;35916:13:::1;:17;::::0;35932:1:::1;35916:17;:::i;:::-;35915:28;;;;:::i;:::-;35902:9;:41;;35880:144;;;::::0;-1:-1:-1;;;35880:144:0;;9904:2:1;35880:144:0::1;::::0;::::1;9886:21:1::0;9943:2;9923:18;;;9916:30;9982:34;9962:18;;;9955:62;-1:-1:-1;;;10033:18:1;;;10026:51;10094:19;;35880:144:0::1;9702:417:1::0;35880:144:0::1;36092:4;36071:13;9655:12:::0;;;9567:108;36071:13:::1;:17;::::0;36087:1:::1;36071:17;:::i;:::-;36070:26;;;;:::i;:::-;36057:9;:39;;36035:141;;;::::0;-1:-1:-1;;;36035:141:0;;10326:2:1;36035:141:0::1;::::0;::::1;10308:21:1::0;10365:2;10345:18;;;10338:30;10404:34;10384:18;;;10377:62;-1:-1:-1;;;10455:18:1;;;10448:50;10515:19;;36035:141:0::1;10124:416:1::0;36035:141:0::1;-1:-1:-1::0;36187:18:0::1;:30:::0;36235:4:::1;::::0;35750:497::o;38694:201::-;1386:6;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;38827:14:::1;::::0;38786:56:::1;::::0;-1:-1:-1;;;;;38827:14:0;;::::1;::::0;38786:56;::::1;::::0;::::1;::::0;38827:14:::1;::::0;38786:56:::1;38853:14;:34:::0;;-1:-1:-1;;;;;;38853:34:0::1;-1:-1:-1::0;;;;;38853:34:0;;;::::1;::::0;;;::::1;::::0;;38694:201::o;35545:135::-;1386:6;;35605:4;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;-1:-1:-1;35622:20:0::1;:28:::0;;-1:-1:-1;;35622:28:0::1;::::0;;;35545:135;:::o;2222:201::-;1386:6;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2311:22:0;::::1;2303:73;;;::::0;-1:-1:-1;;;2303:73:0;;10747:2:1;2303:73:0::1;::::0;::::1;10729:21:1::0;10786:2;10766:18;;;10759:30;10825:34;10805:18;;;10798:62;-1:-1:-1;;;10876:18:1;;;10869:36;10922:19;;2303:73:0::1;10545:402:1::0;2303:73:0::1;2387:28;2406:8;2387:18;:28::i;:::-;2222:201:::0;:::o;47643:97::-;1386:6;;-1:-1:-1;;;;;1386:6:0;260:10;1533:23;1525:68;;;;-1:-1:-1;;;1525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47706:19:0::1;;::::0;;;:11:::1;:19;::::0;;;;:26;;-1:-1:-1;;47706:26:0::1;47728:4;47706:26;::::0;;47643:97::o;16568:380::-;-1:-1:-1;;;;;16704:19:0;;16696:68;;;;-1:-1:-1;;;16696:68:0;;11154:2:1;16696:68:0;;;11136:21:1;11193:2;11173:18;;;11166:30;11232:34;11212:18;;;11205:62;-1:-1:-1;;;11283:18:1;;;11276:34;11327:19;;16696:68:0;10952:400:1;16696:68:0;-1:-1:-1;;;;;16783:21:0;;16775:68;;;;-1:-1:-1;;;16775:68:0;;11559:2:1;16775:68:0;;;11541:21:1;11598:2;11578:18;;;11571:30;11637:34;11617:18;;;11610:62;-1:-1:-1;;;11688:18:1;;;11681:32;11730:19;;16775:68:0;11357:398:1;16775:68:0;-1:-1:-1;;;;;16856:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16908:32;;1662:25:1;;;16908:32:0;;1635:18:1;16908:32:0;;;;;;;16568:380;;;:::o;39323:4840::-;-1:-1:-1;;;;;39455:18:0;;39447:68;;;;-1:-1:-1;;;39447:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39534:16:0;;39526:64;;;;-1:-1:-1;;;39526:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39610:17:0;;;;;;:11;:17;;;;;;;;39609:18;39601:48;;;;-1:-1:-1;;;39601:48:0;;12772:2:1;39601:48:0;;;12754:21:1;12811:2;12791:18;;;12784:30;-1:-1:-1;;;12830:18:1;;;12823:48;12888:18;;39601:48:0;12570:342:1;39601:48:0;-1:-1:-1;;;;;39669:15:0;;;;;;:11;:15;;;;;;;;39668:16;39660:48;;;;-1:-1:-1;;;39660:48:0;;13119:2:1;39660:48:0;;;13101:21:1;13158:2;13138:18;;;13131:30;-1:-1:-1;;;13177:18:1;;;13170:50;13237:18;;39660:48:0;12917:344:1;39660:48:0;39725:11;39721:93;;39753:28;39769:4;39775:2;39779:1;39753:15;:28::i;39721:93::-;39830:14;;;;39826:2496;;;1386:6;;-1:-1:-1;;;;;39883:15:0;;;1386:6;;39883:15;;;;:49;;-1:-1:-1;1386:6:0;;-1:-1:-1;;;;;39919:13:0;;;1386:6;;39919:13;;39883:49;:86;;;;-1:-1:-1;;;;;;39953:16:0;;;;39883:86;:128;;;;-1:-1:-1;;;;;;39990:21:0;;40004:6;39990:21;;39883:128;:158;;;;-1:-1:-1;40033:8:0;;-1:-1:-1;;;40033:8:0;;;;40032:9;39883:158;39861:2450;;;40081:13;;;;;;;40076:223;;-1:-1:-1;;;;;40153:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40182:23:0;;;;;;:19;:23;;;;;;;;40153:52;40119:160;;;;-1:-1:-1;;;40119:160:0;;13468:2:1;40119:160:0;;;13450:21:1;13507:2;13487:18;;;13480:30;-1:-1:-1;;;13526:18:1;;;13519:52;13588:18;;40119:160:0;13266:346:1;40119:160:0;40455:20;;;;40451:650;;;1386:6;;-1:-1:-1;;;;;40530:13:0;;;1386:6;;40530:13;;;;:72;;;40586:15;-1:-1:-1;;;;;40572:30:0;:2;-1:-1:-1;;;;;40572:30:0;;;40530:72;:129;;;;;40645:13;-1:-1:-1;;;;;40631:28:0;:2;-1:-1:-1;;;;;40631:28:0;;;40530:129;40500:582;;;40777:9;40748:39;;;;:28;:39;;;;;;40827:12;;40748:43;;40790:1;40748:43;:::i;:::-;:91;40710:267;;;;-1:-1:-1;;;40710:267:0;;13819:2:1;40710:267:0;;;13801:21:1;13858:2;13838:18;;;13831:30;13897:34;13877:18;;;13870:62;13968:34;13948:18;;;13941:62;-1:-1:-1;;;14019:19:1;;;14012:45;14074:19;;40710:267:0;13617:482:1;40710:267:0;41033:9;41004:39;;;;:28;:39;;;;;41046:12;41004:54;;40500:582;-1:-1:-1;;;;;41175:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;41232:35:0;;;;;;:31;:35;;;;;;;;41231:36;41175:92;41149:1147;;;41354:20;;41344:6;:30;;41310:169;;;;-1:-1:-1;;;41310:169:0;;14306:2:1;41310:169:0;;;14288:21:1;14345:2;14325:18;;;14318:30;14384:34;14364:18;;;14357:62;-1:-1:-1;;;14435:18:1;;;14428:51;14496:19;;41310:169:0;14104:417:1;41310:169:0;41562:9;;-1:-1:-1;;;;;9839:18:0;;9812:7;9839:18;;;;;;;;;;;41536:22;;:6;:22;:::i;:::-;:35;;41502:140;;;;-1:-1:-1;;;41502:140:0;;14728:2:1;41502:140:0;;;14710:21:1;14767:2;14747:18;;;14740:30;-1:-1:-1;;;14786:18:1;;;14779:49;14845:18;;41502:140:0;14526:343:1;41502:140:0;41149:1147;;;-1:-1:-1;;;;;41740:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;41795:37:0;;;;;;:31;:37;;;;;;;;41794:38;41740:92;41714:582;;;41919:20;;41909:6;:30;;41875:170;;;;-1:-1:-1;;;41875:170:0;;15076:2:1;41875:170:0;;;15058:21:1;15115:2;15095:18;;;15088:30;15154:34;15134:18;;;15127:62;-1:-1:-1;;;15205:18:1;;;15198:52;15267:19;;41875:170:0;14874:418:1;41714:582:0;-1:-1:-1;;;;;42076:35:0;;;;;;:31;:35;;;;;;;;42071:225;;42196:9;;-1:-1:-1;;;;;9839:18:0;;9812:7;9839:18;;;;;;;;;;;42170:22;;:6;:22;:::i;:::-;:35;;42136:140;;;;-1:-1:-1;;;42136:140:0;;14728:2:1;42136:140:0;;;14710:21:1;14767:2;14747:18;;;14740:30;-1:-1:-1;;;14786:18:1;;;14779:49;14845:18;;42136:140:0;14526:343:1;42136:140:0;42383:4;42334:28;9839:18;;;;;;;;;;;42441;;42417:42;;;;;;;42490:35;;-1:-1:-1;42514:11:0;;;;;;;42490:35;:61;;;;-1:-1:-1;42543:8:0;;-1:-1:-1;;;42543:8:0;;;;42542:9;42490:61;:110;;;;-1:-1:-1;;;;;;42569:31:0;;;;;;:25;:31;;;;;;;;42568:32;42490:110;:153;;;;-1:-1:-1;;;;;;42618:25:0;;;;;;:19;:25;;;;;;;;42617:26;42490:153;:194;;;;-1:-1:-1;;;;;;42661:23:0;;;;;;:19;:23;;;;;;;;42660:24;42490:194;42472:326;;;42711:8;:15;;-1:-1:-1;;;;42711:15:0;-1:-1:-1;;;42711:15:0;;;42743:10;:8;:10::i;:::-;42770:8;:16;;-1:-1:-1;;;;42770:16:0;;;42472:326;42826:8;;-1:-1:-1;;;;;42936:25:0;;42810:12;42936:25;;;:19;:25;;;;;;42826:8;-1:-1:-1;;;42826:8:0;;;;;42825:9;;42936:25;;:52;;-1:-1:-1;;;;;;42965:23:0;;;;;;:19;:23;;;;;;;;42936:52;42932:100;;;-1:-1:-1;43015:5:0;42932:100;43044:12;43149:7;43145:965;;;-1:-1:-1;;;;;43201:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;43250:1;43234:13;;:17;43201:50;43197:764;;;43279:34;43309:3;43279:25;43290:13;;43279:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;43272:41;;43382:13;;43362:16;;43355:4;:23;;;;:::i;:::-;43354:41;;;;:::i;:::-;43332:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;43452:13:0;;43438:10;;43431:17;;:4;:17;:::i;:::-;43430:35;;;;:::i;:::-;43414:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;43532:13:0;;43513:15;;43506:22;;:4;:22;:::i;:::-;43505:40;;;;:::i;:::-;43484:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;43197:764:0;;-1:-1:-1;43197:764:0;;-1:-1:-1;;;;;43607:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43657:1;43642:12;;:16;43607:51;43603:358;;;43686:33;43715:3;43686:24;43697:12;;43686:6;:10;;:24;;;;:::i;:33::-;43679:40;;43787:12;;43768:15;;43761:4;:22;;;;:::i;:::-;43760:39;;;;:::i;:::-;43738:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43855:12:0;;43842:9;;43835:16;;:4;:16;:::i;:::-;43834:33;;;;:::i;:::-;43818:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;43933:12:0;;43915:14;;43908:21;;:4;:21;:::i;:::-;43907:38;;;;:::i;:::-;43886:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;43603:358:0;43981:8;;43977:91;;44010:42;44026:4;44040;44047;44010:15;:42::i;:::-;44084:14;44094:4;44084:14;;:::i;:::-;;;43145:965;44122:33;44138:4;44144:2;44148:6;44122:15;:33::i;:::-;39436:4727;;;;39323:4840;;;:::o;2583:191::-;2676:6;;;-1:-1:-1;;;;;2693:17:0;;;-1:-1:-1;;;;;;2693:17:0;;;;;;;2726:40;;2676:6;;;2693:17;2676:6;;2726:40;;2657:16;;2726:40;2646:128;2583:191;:::o;38498:188::-;-1:-1:-1;;;;;38581:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38581:39:0;;;;;;;;;;38638:40;;38581:39;;:31;38638:40;;;38498:188;;:::o;13787:733::-;-1:-1:-1;;;;;13927:20:0;;13919:70;;;;-1:-1:-1;;;13919:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14008:23:0;;14000:71;;;;-1:-1:-1;;;14000:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14168:17:0;;14144:21;14168:17;;;;;;;;;;;14204:23;;;;14196:74;;;;-1:-1:-1;;;14196:74:0;;15629:2:1;14196:74:0;;;15611:21:1;15668:2;15648:18;;;15641:30;15707:34;15687:18;;;15680:62;-1:-1:-1;;;15758:18:1;;;15751:36;15804:19;;14196:74:0;15427:402:1;14196:74:0;-1:-1:-1;;;;;14306:17:0;;;:9;:17;;;;;;;;;;;14326:22;;;14306:42;;14370:20;;;;;;;;:30;;14342:6;;14306:9;14370:30;;14342:6;;14370:30;:::i;:::-;;;;;;;;14435:9;-1:-1:-1;;;;;14418:35:0;14427:6;-1:-1:-1;;;;;14418:35:0;;14446:6;14418:35;;;;1662:25:1;;1650:2;1635:18;;1516:177;14418:35:0;;;;;;;;14466:46;37173:399;45289:1726;45372:4;45328:23;9839:18;;;;;;;;;;;45328:50;;45389:25;45484:12;;45451:17;;45417:18;;:51;;;;:::i;:::-;:79;;;;:::i;:::-;45389:107;-1:-1:-1;45507:12:0;45536:20;;;:46;;-1:-1:-1;45560:22:0;;45536:46;45532:85;;;45599:7;;;45289:1726::o;45532:85::-;45651:18;;:23;;45672:2;45651:23;:::i;:::-;45633:15;:41;45629:115;;;45709:18;;:23;;45730:2;45709:23;:::i;:::-;45691:41;;45629:115;45805:23;45918:1;45885:17;45850:18;;45832:15;:36;;;;:::i;:::-;45831:71;;;;:::i;:::-;:88;;;;:::i;:::-;45805:114;-1:-1:-1;45930:26:0;45959:36;:15;45805:114;45959:19;:36::i;:::-;45930:65;-1:-1:-1;46036:21:0;46070:36;45930:65;46070:16;:36::i;:::-;46119:18;46140:44;:21;46166:17;46140:25;:44::i;:::-;46119:65;;46197:22;46222:80;46274:17;46222:33;46237:17;;46222:10;:14;;:33;;;;:::i;:80::-;46197:105;;46313:17;46333:51;46366:17;46333:28;46348:12;;46333:10;:14;;:28;;;;:::i;:51::-;46313:71;-1:-1:-1;46397:23:0;46313:71;46423:27;46436:14;46423:10;:27;:::i;:::-;:39;;;;:::i;:::-;46496:1;46475:18;:22;;;46508:17;:21;;;46540:12;:16;;;46591:9;;46583:45;;46397:65;;-1:-1:-1;;;;;;46591:9:0;;46614;;46583:45;46496:1;46583:45;46614:9;46591;46583:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46569:59:0;;-1:-1:-1;;46645:19:0;;;;;:42;;;46686:1;46668:15;:19;46645:42;46641:278;;;46704:46;46717:15;46734;46704:12;:46::i;:::-;46874:18;;46770:137;;;16246:25:1;;;16302:2;16287:18;;16280:34;;;16330:18;;;16323:34;;;;46770:137:0;;;;;;16234:2:1;46770:137:0;;;46641:278;46953:14;;46945:62;;-1:-1:-1;;;;;46953:14:0;;;;46981:21;;46945:62;;;;46981:21;46953:14;46945:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;45289:1726:0:o;21700:98::-;21758:7;21785:5;21789:1;21785;:5;:::i;:::-;21778:12;21700:98;-1:-1:-1;;;21700:98:0:o;22099:::-;22157:7;22184:5;22188:1;22184;:5;:::i;21343:98::-;21401:7;21428:5;21432:1;21428;:5;:::i;44171:589::-;44321:16;;;44335:1;44321:16;;;;;;;;44297:21;;44321:16;;;;;;;;;;-1:-1:-1;44321:16:0;44297:40;;44366:4;44348;44353:1;44348:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44348:23:0;;;-1:-1:-1;;;;;44348:23:0;;;;;44392:15;-1:-1:-1;;;;;44392:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44382:4;44387:1;44382:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44382:32:0;;;-1:-1:-1;;;;;44382:32:0;;;;;44427:62;44444:4;44459:15;44477:11;44427:8;:62::i;:::-;44528:224;;-1:-1:-1;;;44528:224:0;;-1:-1:-1;;;;;44528:15:0;:66;;;;:224;;44609:11;;44635:1;;44679:4;;44706;;44726:15;;44528:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44226:534;44171:589;:::o;44768:513::-;44916:62;44933:4;44948:15;44966:11;44916:8;:62::i;:::-;45021:15;-1:-1:-1;;;;;45021:31:0;;45060:9;45093:4;45113:11;45139:1;45182;45225:7;1386:6;;-1:-1:-1;;;;;1386:6:0;;1313:87;45225:7;45021:252;;;;;;-1:-1:-1;;;;;;45021:252:0;;;-1:-1:-1;;;;;18232:15:1;;;45021:252:0;;;18214:34:1;18264:18;;;18257:34;;;;18307:18;;;18300:34;;;;18350:18;;;18343:34;18414:15;;;18393:19;;;18386:44;45247:15:0;18446:19:1;;;18439:35;18148:19;;45021:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44768:513;;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2976:388::-;3044:6;3052;3105:2;3093:9;3084:7;3080:23;3076:32;3073:52;;;3121:1;3118;3111:12;3073:52;3160:9;3147:23;3179:31;3204:5;3179:31;:::i;:::-;3229:5;-1:-1:-1;3286:2:1;3271:18;;3258:32;3299:33;3258:32;3299:33;:::i;:::-;3351:7;3341:17;;;2976:388;;;;;:::o;3369:118::-;3455:5;3448:13;3441:21;3434:5;3431:32;3421:60;;3477:1;3474;3467:12;3492:382;3557:6;3565;3618:2;3606:9;3597:7;3593:23;3589:32;3586:52;;;3634:1;3631;3624:12;3586:52;3673:9;3660:23;3692:31;3717:5;3692:31;:::i;:::-;3742:5;-1:-1:-1;3799:2:1;3784:18;;3771:32;3812:30;3771:32;3812:30;:::i;3879:316::-;3956:6;3964;3972;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;-1:-1:-1;;4064:23:1;;;4134:2;4119:18;;4106:32;;-1:-1:-1;4185:2:1;4170:18;;;4157:32;;3879:316;-1:-1:-1;3879:316:1:o;4200:241::-;4256:6;4309:2;4297:9;4288:7;4284:23;4280:32;4277:52;;;4325:1;4322;4315:12;4277:52;4364:9;4351:23;4383:28;4405:5;4383:28;:::i;4446:380::-;4525:1;4521:12;;;;4568;;;4589:61;;4643:4;4635:6;4631:17;4621:27;;4589:61;4696:2;4688:6;4685:14;4665:18;4662:38;4659:161;;;4742:10;4737:3;4733:20;4730:1;4723:31;4777:4;4774:1;4767:15;4805:4;4802:1;4795:15;4659:161;;4446:380;;;:::o;4831:356::-;5033:2;5015:21;;;5052:18;;;5045:30;5111:34;5106:2;5091:18;;5084:62;5178:2;5163:18;;4831:356::o;5192:127::-;5253:10;5248:3;5244:20;5241:1;5234:31;5284:4;5281:1;5274:15;5308:4;5305:1;5298:15;5324:168;5364:7;5430:1;5426;5422:6;5418:14;5415:1;5412:21;5407:1;5400:9;5393:17;5389:45;5386:71;;;5437:18;;:::i;:::-;-1:-1:-1;5477:9:1;;5324:168::o;5497:217::-;5537:1;5563;5553:132;;5607:10;5602:3;5598:20;5595:1;5588:31;5642:4;5639:1;5632:15;5670:4;5667:1;5660:15;5553:132;-1:-1:-1;5699:9:1;;5497:217::o;6544:128::-;6584:3;6615:1;6611:6;6608:1;6605:13;6602:39;;;6621:18;;:::i;:::-;-1:-1:-1;6657:9:1;;6544:128::o;7389:184::-;7459:6;7512:2;7500:9;7491:7;7487:23;7483:32;7480:52;;;7528:1;7525;7518:12;7480:52;-1:-1:-1;7551:16:1;;7389:184;-1:-1:-1;7389:184:1:o;7857:245::-;7924:6;7977:2;7965:9;7956:7;7952:23;7948:32;7945:52;;;7993:1;7990;7983:12;7945:52;8025:9;8019:16;8044:28;8066:5;8044:28;:::i;11760:401::-;11962:2;11944:21;;;12001:2;11981:18;;;11974:30;12040:34;12035:2;12020:18;;12013:62;-1:-1:-1;;;12106:2:1;12091:18;;12084:35;12151:3;12136:19;;11760:401::o;12166:399::-;12368:2;12350:21;;;12407:2;12387:18;;;12380:30;12446:34;12441:2;12426:18;;12419:62;-1:-1:-1;;;12512:2:1;12497:18;;12490:33;12555:3;12540:19;;12166:399::o;15297:125::-;15337:4;15365:1;15362;15359:8;15356:34;;;15370:18;;:::i;:::-;-1:-1:-1;15407:9:1;;15297:125::o;16500:127::-;16561:10;16556:3;16552:20;16549:1;16542:31;16592:4;16589:1;16582:15;16616:4;16613:1;16606:15;16632:251;16702:6;16755:2;16743:9;16734:7;16730:23;16726:32;16723:52;;;16771:1;16768;16761:12;16723:52;16803:9;16797:16;16822:31;16847:5;16822:31;:::i;16888:980::-;17150:4;17198:3;17187:9;17183:19;17229:6;17218:9;17211:25;17255:2;17293:6;17288:2;17277:9;17273:18;17266:34;17336:3;17331:2;17320:9;17316:18;17309:31;17360:6;17395;17389:13;17426:6;17418;17411:22;17464:3;17453:9;17449:19;17442:26;;17503:2;17495:6;17491:15;17477:29;;17524:1;17534:195;17548:6;17545:1;17542:13;17534:195;;;17613:13;;-1:-1:-1;;;;;17609:39:1;17597:52;;17704:15;;;;17669:12;;;;17645:1;17563:9;17534:195;;;-1:-1:-1;;;;;;;17785:32:1;;;;17780:2;17765:18;;17758:60;-1:-1:-1;;;17849:3:1;17834:19;17827:35;17746:3;16888:980;-1:-1:-1;;;16888:980:1:o;18485:306::-;18573:6;18581;18589;18642:2;18630:9;18621:7;18617:23;18613:32;18610:52;;;18658:1;18655;18648:12;18610:52;18687:9;18681:16;18671:26;;18737:2;18726:9;18722:18;18716:25;18706:35;;18781:2;18770:9;18766:18;18760:25;18750:35;;18485:306;;;;;:::o

Swarm Source

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