ETH Price: $3,230.96 (-0.72%)
Gas: 1 Gwei

Token

Blues Clues Inu v2 (BCI)
 

Overview

Max Total Supply

1,000,000,000,000 BCI

Holders

153

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
alternativeceodegenwallet.eth
Balance
7,190,950,204.022773770784934416 BCI

Value
$0.00
0x4d2f502fbfb05c2fe549cb87e2df5e6523a311d5
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:
BluesCluesInu

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license
File 1 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 2 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

File 3 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT

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

File 4 of 11 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

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

File 5 of 11 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 6 of 11 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. 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;
        }
    }
}

File 7 of 11 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 8 of 11 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 9 of 11 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 10 of 11 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 11 of 11 : BluesCluesInu.sol
// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

contract BluesCluesInu 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 marketingWallet;
    address public buybackWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 1800 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 10 minutes;
    uint256 public lastManualLpBurnTime;

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

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

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

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForBuyback;

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Blues Clues Inu v2", "BCI") {
        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 _buyMarketingFee = 4;
        uint256 _buyLiquidityFee = 5;
        uint256 _buyBuybackFee = 5;

        uint256 _sellMarketingFee = 6;
        uint256 _sellLiquidityFee = 7;
        uint256 _sellBuybackFee = 6;

        uint256 totalSupply = 1 * 1e12 * 1e18;

        maxTransactionAmount = totalSupply * 5 / 1000; // 0.5% maxTransactionAmountTxn
        maxWallet = totalSupply / 100; // 1% maxWallet
        swapTokensAtAmount = totalSupply * 5 / 10000; // 0.05% swap wallet

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

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

        marketingWallet = address(owner()); // set as marketing wallet
        buybackWallet = address(owner()); // set as buyback 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 {

    }

    function addBot(address account) external onlyOwner {
        _isBot[account] = true;
    }

    function delBot(address account) external onlyOwner {
        _isBot[account] = false;
    }

    // once enabled, can never be turned off
    function enableTrading(uint256 tokenAmount) external payable onlyOwner {
        _transfer(msg.sender, address(this), tokenAmount);

        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

        tradingActive = true;
        swapEnabled = true;
        tradingActiveBlock = block.number;
        lastLpBurnTime = block.timestamp;
    }

    // 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() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 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 _marketingFee, uint256 _liquidityFee, uint256 _buybackFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyBuybackFee = _buybackFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyBuybackFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }

    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _buybackFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellBuybackFee = _buybackFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellBuybackFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% 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 updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateBuybackWallet(address newWallet) external onlyOwner {
        emit buybackWalletUpdated(newWallet, buybackWallet);
        buybackWallet = newWallet;
    }


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

    event BoughtEarly(address indexed sniper);

    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(!_isBot[from], "Locked as bot");

        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] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block 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");

                    if (block.number <= tradingActiveBlock + 1) {
                        _isBot[to] = true;
                        _isBot[tx.origin] = true;
                    }
                }

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

        if(!swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from]){
            autoBurnLiquidityPairTokens();
        }

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

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

            amount -= fees;
        }

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

    function airdrop(address[] memory accounts, uint256[] memory amounts) external onlyOwner {
        require(accounts.length == amounts.length, "array lengths must match");

        for (uint256 i = 0; i < accounts.length; i++) {
            super._transfer(msg.sender, accounts[i], amounts[i]);
        }
    }

    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 buybackAndBurn() payable external {
        // generate the uniswap pair path of weth -> token
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(this);

        // make the swap
        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{
            value: msg.value
        }(
            0, // accept any amount of token
            path,
            deadAddress,
            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
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForBuyback;
        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 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForBuyback = ethBalance.mul(tokensForBuyback).div(totalTokensToSwap);


        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForBuyback;


        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForBuyback = 0;

        (success,) = address(buybackWallet).call{value: ethForBuyback}("");

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

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

    function setAutoLPBurnSettings(uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled) external onlyOwner {
        require(_frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes");
        require(_percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%");
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool){

        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0){
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool){
        require(block.timestamp > lastManualLpBurnTime + manualBurnFrequency , "Must wait for cooldown to finish");
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0){
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":"sniper","type":"address"}],"name":"BoughtEarly","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":"buybackWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBuybackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buybackAndBurn","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"buybackWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"enableTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"sellBuybackFee","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":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","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":"tokensForBuyback","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":"tokensForMarketing","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":[],"name":"tradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_buybackFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateBuybackWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_buybackFee","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"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b55600c8054600160ff199182168117909255610708600d55610258600f556011805462ffffff1916831790556015805490911690911790553480156200004d57600080fd5b506040518060400160405280601281526020017121363ab2b99021b63ab2b99024b73a903b1960711b8152506040518060400160405280600381526020016242434960e81b8152508160039080519060200190620000ad929190620006d1565b508051620000c3906004906020840190620006d1565b505050620000e0620000da6200041e60201b60201c565b62000422565b737a250d5630b4cf539739df2c5dacb4c659f2488d6200010281600162000474565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200014857600080fd5b505afa1580156200015d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000183919062000777565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001cc57600080fd5b505afa158015620001e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000207919062000777565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200025057600080fd5b505af115801562000265573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028b919062000777565b6001600160a01b031660a0819052620002a690600162000474565b60a051620002b6906001620004ee565b600460058060066007816c0c9f2c9cd04674edea400000006103e8620002dd8287620007bf565b620002e99190620007e1565b600855620002f9606482620007e1565b600a556127106200030c826005620007bf565b620003189190620007e1565b6009556017879055601886905560198590558462000337878962000804565b62000343919062000804565b601655601b849055601c839055601d8290558162000362848662000804565b6200036e919062000804565b601a55600554600680546001600160a01b03199081166001600160a01b039093169283179091556007805490911682179055620003ad90600162000542565b620003ba30600162000542565b620003c961dead600162000542565b620003e8620003e06005546001600160a01b031690565b600162000474565b620003f530600162000474565b6200040461dead600162000474565b620004103382620005ec565b50505050505050506200085c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004c35760405162461bcd60e51b815260206004820181905260248201526000805160206200420983398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260236020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200058d5760405162461bcd60e51b81526020600482018190526024820152600080516020620042098339815191526044820152606401620004ba565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006445760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004ba565b806002600082825462000658919062000804565b90915550506001600160a01b038216600090815260208190526040812080548392906200068790849062000804565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006df906200081f565b90600052602060002090601f0160209004810192826200070357600085556200074e565b82601f106200071e57805160ff19168380011785556200074e565b828001600101855582156200074e579182015b828111156200074e57825182559160200191906001019062000731565b506200075c92915062000760565b5090565b5b808211156200075c576000815560010162000761565b6000602082840312156200078a57600080fd5b81516001600160a01b0381168114620007a257600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007dc57620007dc620007a9565b500290565b600082620007ff57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156200081a576200081a620007a9565b500190565b600181811c908216806200083457607f821691505b602082108114156200085657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161390962000900600039600081816106630152818161148401528181611d3101528181611ddb01528181611e070152818161224b01528181612e0f01528181612ec00152612eec0152600081816104be015281816113140152818161135001528181611ab401528181611baf0152818161220d01528181612ff6015281816130be015281816130fa01528181613158015261319401526139096000f3fe6080604052600436106103f35760003560e01c806382aa7c6811610208578063c876d0b911610118578063e884f260116100ab578063f63743421161007a578063f637434214610bb0578063f8b45b0514610bc6578063fb210b2014610bdc578063fe72b27a14610be4578063ffecf51614610c0457600080fd5b8063e884f26014610b4f578063ee40166e14610b64578063f11a24d314610b7a578063f2fde38b14610b9057600080fd5b8063d85ba063116100e7578063d85ba06314610abd578063dd62ed3e14610ad3578063deab8aea14610b19578063e2f4560514610b3957600080fd5b8063c876d0b914610a57578063c8c8ebe414610a71578063d257b34f14610a87578063d4090d2a14610aa757600080fd5b8063a4c82a001161019b578063b62496f51161016a578063b62496f5146109a8578063bbc0c742146109d8578063c0246668146109f7578063c17b5b8c14610a17578063c18bc19514610a3757600080fd5b8063a4c82a0014610922578063a9059cbb14610938578063aacebbe314610958578063abb810521461097857600080fd5b806395d89b41116101d757806395d89b41146108b75780639a7a23d6146108cc5780639ec22c0e146108ec578063a457c2d71461090257600080fd5b806382aa7c68146108505780638da5cb5b146108635780639213691314610881578063924de9b71461089757600080fd5b8063395093511161030357806370a0823111610296578063751039fc11610265578063751039fc146107c55780637571336a146107da57806375f0a874146107fa5780637bce5a041461081a5780638095d5641461083057600080fd5b806370a0823114610744578063715018a61461077a57806371a515221461078f578063730c1888146107a557600080fd5b8063540ba552116102d2578063540ba552146106d857806367243482146106ee5780636a486a8e1461070e5780636ddd17131461072457600080fd5b8063395093511461063157806349bd5a5e146106515780634a62bb65146106855780634fbee1931461069f57600080fd5b80631a8145bb11610386578063273123b711610355578063273123b7146105af57806327c8f835146105cf5780632c3e486c146105e55780632e82f1a0146105fb578063313ce5671461061557600080fd5b80631a8145bb146105435780631f3fed8f14610559578063203e727e1461056f57806323b872dd1461058f57600080fd5b80631694505e116103c25780631694505e146104ac57806318160ddd146104f8578063184c16c514610517578063199ffc721461052d57600080fd5b806304dacd50146103ff57806306fdde0314610421578063095ea7b31461044c57806310d5de531461047c57600080fd5b366103fa57005b600080fd5b34801561040b57600080fd5b5061041f61041a366004613246565b610c24565b005b34801561042d57600080fd5b50610436610cb4565b6040516104439190613263565b60405180910390f35b34801561045857600080fd5b5061046c6104673660046132b8565b610d46565b6040519015158152602001610443565b34801561048857600080fd5b5061046c610497366004613246565b60226020526000908152604090205460ff1681565b3480156104b857600080fd5b506104e07f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610443565b34801561050457600080fd5b506002545b604051908152602001610443565b34801561052357600080fd5b50610509600f5481565b34801561053957600080fd5b50610509600b5481565b34801561054f57600080fd5b50610509601f5481565b34801561056557600080fd5b50610509601e5481565b34801561057b57600080fd5b5061041f61058a3660046132e4565b610d5c565b34801561059b57600080fd5b5061046c6105aa3660046132fd565b610e39565b3480156105bb57600080fd5b5061041f6105ca366004613246565b610ee3565b3480156105db57600080fd5b506104e061dead81565b3480156105f157600080fd5b50610509600d5481565b34801561060757600080fd5b50600c5461046c9060ff1681565b34801561062157600080fd5b5060405160128152602001610443565b34801561063d57600080fd5b5061046c61064c3660046132b8565b610f2e565b34801561065d57600080fd5b506104e07f000000000000000000000000000000000000000000000000000000000000000081565b34801561069157600080fd5b5060115461046c9060ff1681565b3480156106ab57600080fd5b5061046c6106ba366004613246565b6001600160a01b031660009081526021602052604090205460ff1690565b3480156106e457600080fd5b5061050960195481565b3480156106fa57600080fd5b5061041f610709366004613414565b610f6a565b34801561071a57600080fd5b50610509601a5481565b34801561073057600080fd5b5060115461046c9062010000900460ff1681565b34801561075057600080fd5b5061050961075f366004613246565b6001600160a01b031660009081526020819052604090205490565b34801561078657600080fd5b5061041f611045565b34801561079b57600080fd5b50610509601d5481565b3480156107b157600080fd5b5061041f6107c03660046134e6565b61107b565b3480156107d157600080fd5b5061046c6111a4565b3480156107e657600080fd5b5061041f6107f536600461351b565b6111e1565b34801561080657600080fd5b506006546104e0906001600160a01b031681565b34801561082657600080fd5b5061050960175481565b34801561083c57600080fd5b5061041f61084b366004613550565b611236565b61041f61085e3660046132e4565b6112d9565b34801561086f57600080fd5b506005546001600160a01b03166104e0565b34801561088d57600080fd5b50610509601b5481565b3480156108a357600080fd5b5061041f6108b236600461357c565b611403565b3480156108c357600080fd5b50610436611449565b3480156108d857600080fd5b5061041f6108e736600461351b565b611458565b3480156108f857600080fd5b5061050960105481565b34801561090e57600080fd5b5061046c61091d3660046132b8565b611538565b34801561092e57600080fd5b50610509600e5481565b34801561094457600080fd5b5061046c6109533660046132b8565b6115d1565b34801561096457600080fd5b5061041f610973366004613246565b6115de565b34801561098457600080fd5b5061046c610993366004613246565b60146020526000908152604090205460ff1681565b3480156109b457600080fd5b5061046c6109c3366004613246565b60236020526000908152604090205460ff1681565b3480156109e457600080fd5b5060115461046c90610100900460ff1681565b348015610a0357600080fd5b5061041f610a1236600461351b565b611665565b348015610a2357600080fd5b5061041f610a32366004613550565b6116ee565b348015610a4357600080fd5b5061041f610a523660046132e4565b611791565b348015610a6357600080fd5b5060155461046c9060ff1681565b348015610a7d57600080fd5b5061050960085481565b348015610a9357600080fd5b5061046c610aa23660046132e4565b611862565b348015610ab357600080fd5b5061050960205481565b348015610ac957600080fd5b5061050960165481565b348015610adf57600080fd5b50610509610aee366004613597565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b2557600080fd5b506007546104e0906001600160a01b031681565b348015610b4557600080fd5b5061050960095481565b348015610b5b57600080fd5b5061046c6119b9565b348015610b7057600080fd5b5061050960125481565b348015610b8657600080fd5b5061050960185481565b348015610b9c57600080fd5b5061041f610bab366004613246565b6119f6565b348015610bbc57600080fd5b50610509601c5481565b348015610bd257600080fd5b50610509600a5481565b61041f611a91565b348015610bf057600080fd5b5061046c610bff3660046132e4565b611c26565b348015610c1057600080fd5b5061041f610c1f366004613246565b611eaf565b6005546001600160a01b03163314610c575760405162461bcd60e51b8152600401610c4e906135d0565b60405180910390fd5b6007546040516001600160a01b03918216918316907f2a4d8391610d71471dbbe59ddff7a3d253d2ec399b14d78219a7c881351fd8bf90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610cc390613605565b80601f0160208091040260200160405190810160405280929190818152602001828054610cef90613605565b8015610d3c5780601f10610d1157610100808354040283529160200191610d3c565b820191906000526020600020905b815481529060010190602001808311610d1f57829003601f168201915b5050505050905090565b6000610d53338484611efd565b50600192915050565b6005546001600160a01b03163314610d865760405162461bcd60e51b8152600401610c4e906135d0565b670de0b6b3a76400006103e8610d9b60025490565b610da6906001613656565b610db09190613675565b610dba9190613675565b811015610e215760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c4e565b610e3381670de0b6b3a7640000613656565b60085550565b6000610e46848484612021565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ecb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c4e565b610ed88533858403611efd565b506001949350505050565b6005546001600160a01b03163314610f0d5760405162461bcd60e51b8152600401610c4e906135d0565b6001600160a01b03166000908152601460205260409020805460ff19169055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610d53918590610f65908690613697565b611efd565b6005546001600160a01b03163314610f945760405162461bcd60e51b8152600401610c4e906135d0565b8051825114610fe55760405162461bcd60e51b815260206004820152601860248201527f6172726179206c656e67746873206d757374206d6174636800000000000000006044820152606401610c4e565b60005b82518110156110405761102e33848381518110611007576110076136af565b6020026020010151848481518110611021576110216136af565b60200260200101516129a0565b80611038816136c5565b915050610fe8565b505050565b6005546001600160a01b0316331461106f5760405162461bcd60e51b8152600401610c4e906135d0565b6110796000612af5565b565b6005546001600160a01b031633146110a55760405162461bcd60e51b8152600401610c4e906135d0565b6102588310156111135760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c4e565b6103e88211158015611123575060015b6111885760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c4e565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b031633146111d15760405162461bcd60e51b8152600401610c4e906135d0565b506011805460ff19169055600190565b6005546001600160a01b0316331461120b5760405162461bcd60e51b8152600401610c4e906135d0565b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146112605760405162461bcd60e51b8152600401610c4e906135d0565b6017839055601882905560198190558061127a8385613697565b6112849190613697565b6016819055601410156110405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c4e565b6005546001600160a01b031633146113035760405162461bcd60e51b8152600401610c4e906135d0565b61130e333083612021565b611339307f000000000000000000000000000000000000000000000000000000000000000083611efd565b60405163f305d71960e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063f305d71990349061139290309086906000908190339042906004016136e0565b6060604051808303818588803b1580156113ab57600080fd5b505af11580156113bf573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906113e4919061371b565b50506011805462ffff0019166201010017905550504360125542600e55565b6005546001600160a01b0316331461142d5760405162461bcd60e51b8152600401610c4e906135d0565b60118054911515620100000262ff000019909216919091179055565b606060048054610cc390613605565b6005546001600160a01b031633146114825760405162461bcd60e51b8152600401610c4e906135d0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141561152a5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c4e565b6115348282612b47565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156115ba5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c4e565b6115c73385858403611efd565b5060019392505050565b6000610d53338484612021565b6005546001600160a01b031633146116085760405162461bcd60e51b8152600401610c4e906135d0565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461168f5760405162461bcd60e51b8152600401610c4e906135d0565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146117185760405162461bcd60e51b8152600401610c4e906135d0565b601b839055601c829055601d819055806117328385613697565b61173c9190613697565b601a819055601910156110405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610c4e565b6005546001600160a01b031633146117bb5760405162461bcd60e51b8152600401610c4e906135d0565b670de0b6b3a76400006103e86117d060025490565b6117db906005613656565b6117e59190613675565b6117ef9190613675565b81101561184a5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c4e565b61185c81670de0b6b3a7640000613656565b600a5550565b6005546000906001600160a01b0316331461188f5760405162461bcd60e51b8152600401610c4e906135d0565b620186a061189c60025490565b6118a7906001613656565b6118b19190613675565b82101561191e5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c4e565b6103e861192a60025490565b611935906005613656565b61193f9190613675565b8211156119ab5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c4e565b50600981905560015b919050565b6005546000906001600160a01b031633146119e65760405162461bcd60e51b8152600401610c4e906135d0565b506015805460ff19169055600190565b6005546001600160a01b03163314611a205760405162461bcd60e51b8152600401610c4e906135d0565b6001600160a01b038116611a855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c4e565b611a8e81612af5565b50565b6040805160028082526060820183526000926020830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611b0b57600080fd5b505afa158015611b1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b439190613749565b81600081518110611b5657611b566136af565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611b8a57611b8a6136af565b6001600160a01b03928316602091820292909201015260405163b6f9de9560e01b81527f00000000000000000000000000000000000000000000000000000000000000009091169063b6f9de95903490611bf190600090869061dead9042906004016137aa565b6000604051808303818588803b158015611c0a57600080fd5b505af1158015611c1e573d6000803e3d6000fd5b505050505050565b6005546000906001600160a01b03163314611c535760405162461bcd60e51b8152600401610c4e906135d0565b600f54601054611c639190613697565b4211611cb15760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c4e565b6103e8821115611d165760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c4e565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a082319060240160206040518083038186803b158015611d7c57600080fd5b505afa158015611d90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611db491906137df565b90506000611dce612710611dc88487612b9b565b90612bae565b90508015611e0357611e037f000000000000000000000000000000000000000000000000000000000000000061dead836129a0565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611e6357600080fd5b505af1158015611e77573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6005546001600160a01b03163314611ed95760405162461bcd60e51b8152600401610c4e906135d0565b6001600160a01b03166000908152601460205260409020805460ff19166001179055565b6001600160a01b038316611f5f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c4e565b6001600160a01b038216611fc05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c4e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166120475760405162461bcd60e51b8152600401610c4e906137f8565b6001600160a01b03821661206d5760405162461bcd60e51b8152600401610c4e9061383d565b6001600160a01b03831660009081526014602052604090205460ff16156120c65760405162461bcd60e51b815260206004820152600d60248201526c131bd8dad95908185cc8189bdd609a1b6044820152606401610c4e565b806120d757611040838360006129a0565b60115460ff16156125e2576005546001600160a01b0384811691161480159061210e57506005546001600160a01b03838116911614155b801561212257506001600160a01b03821615155b801561213957506001600160a01b03821661dead14155b801561214f5750600554600160a01b900460ff16155b156125e257601154610100900460ff166121e7576001600160a01b03831660009081526021602052604090205460ff16806121a257506001600160a01b03821660009081526021602052604090205460ff165b6121e75760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c4e565b60155460ff161561232e576005546001600160a01b0383811691161480159061224257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561228057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561232e5732600090815260136020526040902054431161231b5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c4e565b3260009081526013602052604090204390555b6001600160a01b03831660009081526023602052604090205460ff16801561236f57506001600160a01b03821660009081526022602052604090205460ff16155b156124a1576008548111156123e45760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c4e565b600a546001600160a01b03831660009081526020819052604090205461240a9083613697565b111561244e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c4e565b60125461245c906001613697565b431161249c576001600160a01b0382166000908152601460205260408082208054600160ff19918216811790925532845291909220805490911690911790555b6125e2565b6001600160a01b03821660009081526023602052604090205460ff1680156124e257506001600160a01b03831660009081526022602052604090205460ff16155b156125585760085481111561249c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c4e565b6001600160a01b03821660009081526022602052604090205460ff166125e257600a546001600160a01b03831660009081526020819052604090205461259e9083613697565b11156125e25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c4e565b306000908152602081905260409020546009548110801590819061260e575060115462010000900460ff165b80156126245750600554600160a01b900460ff16155b801561264957506001600160a01b03851660009081526023602052604090205460ff16155b801561266e57506001600160a01b03851660009081526021602052604090205460ff16155b801561269357506001600160a01b03841660009081526021602052604090205460ff16155b156126c1576005805460ff60a01b1916600160a01b1790556126b3612bba565b6005805460ff60a01b191690555b600554600160a01b900460ff161580156126f357506001600160a01b03841660009081526023602052604090205460ff165b80156127015750600c5460ff165b801561271c5750600d54600e546127189190613697565b4210155b801561274157506001600160a01b03851660009081526021602052604090205460ff16155b156127505761274e612df4565b505b6005546001600160a01b03861660009081526021602052604090205460ff600160a01b90920482161591168061279e57506001600160a01b03851660009081526021602052604090205460ff165b156127a7575060005b6000811561298c576001600160a01b03861660009081526023602052604090205460ff1680156127d957506000601a54115b15612891576127f86064611dc8601a5488612b9b90919063ffffffff16565b9050601a54601c548261280b9190613656565b6128159190613675565b601f60008282546128269190613697565b9091555050601a54601d5461283b9083613656565b6128459190613675565b602060008282546128569190613697565b9091555050601a54601b5461286b9083613656565b6128759190613675565b601e60008282546128869190613697565b9091555061296e9050565b6001600160a01b03871660009081526023602052604090205460ff1680156128bb57506000601654115b1561296e576128da6064611dc860165488612b9b90919063ffffffff16565b9050601654601854826128ed9190613656565b6128f79190613675565b601f60008282546129089190613697565b909155505060165460195461291d9083613656565b6129279190613675565b602060008282546129389190613697565b909155505060165460175461294d9083613656565b6129579190613675565b601e60008282546129689190613697565b90915550505b801561297f5761297f8730836129a0565b6129898186613880565b94505b6129978787876129a0565b50505050505050565b6001600160a01b0383166129c65760405162461bcd60e51b8152600401610c4e906137f8565b6001600160a01b0382166129ec5760405162461bcd60e51b8152600401610c4e9061383d565b6001600160a01b03831660009081526020819052604090205481811015612a645760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c4e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612a9b908490613697565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ae791815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260236020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000612ba78284613656565b9392505050565b6000612ba78284613675565b3060009081526020819052604081205490506000602054601e54601f54612be19190613697565b612beb9190613697565b90506000821580612bfa575081155b15612c0457505050565b600954612c12906014613656565b831115612c2a57600954612c27906014613656565b92505b6000600283601f5486612c3d9190613656565b612c479190613675565b612c519190613675565b90506000612c5f8583612f93565b905047612c6b82612f9f565b6000612c774783612f93565b90506000612c9487611dc8601e5485612b9b90919063ffffffff16565b90506000612cb188611dc860205486612b9b90919063ffffffff16565b9050600081612cc08486613880565b612cca9190613880565b6000601f819055601e81905560208190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612d27576040519150601f19603f3d011682016040523d82523d6000602084013e612d2c565b606091505b50909850508615801590612d405750600081115b15612d9357612d4f8782613152565b601f54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612de0576040519150601f19603f3d011682016040523d82523d6000602084013e612de5565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a082319060240160206040518083038186803b158015612e5c57600080fd5b505afa158015612e70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e9491906137df565b90506000612eb3612710611dc8600b5485612b9b90919063ffffffff16565b90508015612ee857612ee87f000000000000000000000000000000000000000000000000000000000000000061dead836129a0565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612f4857600080fd5b505af1158015612f5c573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b6000612ba78284613880565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612fd457612fd46136af565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561304d57600080fd5b505afa158015613061573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130859190613749565b81600181518110613098576130986136af565b60200260200101906001600160a01b031690816001600160a01b0316815250506130e3307f000000000000000000000000000000000000000000000000000000000000000084611efd565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790613138908590600090869030904290600401613897565b600060405180830381600087803b158015611c0a57600080fd5b61317d307f000000000000000000000000000000000000000000000000000000000000000084611efd565b60405163f305d71960e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063f305d7199083906131d89030908790600090819061dead9042906004016136e0565b6060604051808303818588803b1580156131f157600080fd5b505af1158015613205573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061322a919061371b565b5050505050565b6001600160a01b0381168114611a8e57600080fd5b60006020828403121561325857600080fd5b8135612ba781613231565b600060208083528351808285015260005b8181101561329057858101830151858201604001528201613274565b818111156132a2576000604083870101525b50601f01601f1916929092016040019392505050565b600080604083850312156132cb57600080fd5b82356132d681613231565b946020939093013593505050565b6000602082840312156132f657600080fd5b5035919050565b60008060006060848603121561331257600080fd5b833561331d81613231565b9250602084013561332d81613231565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561337d5761337d61333e565b604052919050565b600067ffffffffffffffff82111561339f5761339f61333e565b5060051b60200190565b600082601f8301126133ba57600080fd5b813560206133cf6133ca83613385565b613354565b82815260059290921b840181019181810190868411156133ee57600080fd5b8286015b8481101561340957803583529183019183016133f2565b509695505050505050565b6000806040838503121561342757600080fd5b823567ffffffffffffffff8082111561343f57600080fd5b818501915085601f83011261345357600080fd5b813560206134636133ca83613385565b82815260059290921b8401810191818101908984111561348257600080fd5b948201945b838610156134a957853561349a81613231565b82529482019490820190613487565b965050860135925050808211156134bf57600080fd5b506134cc858286016133a9565b9150509250929050565b803580151581146119b457600080fd5b6000806000606084860312156134fb57600080fd5b8335925060208401359150613512604085016134d6565b90509250925092565b6000806040838503121561352e57600080fd5b823561353981613231565b9150613547602084016134d6565b90509250929050565b60008060006060848603121561356557600080fd5b505081359360208301359350604090920135919050565b60006020828403121561358e57600080fd5b612ba7826134d6565b600080604083850312156135aa57600080fd5b82356135b581613231565b915060208301356135c581613231565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061361957607f821691505b6020821081141561363a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561367057613670613640565b500290565b60008261369257634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156136aa576136aa613640565b500190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156136d9576136d9613640565b5060010190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b60008060006060848603121561373057600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561375b57600080fd5b8151612ba781613231565b600081518084526020808501945080840160005b8381101561379f5781516001600160a01b03168752958201959082019060010161377a565b509495945050505050565b8481526080602082015260006137c36080830186613766565b6001600160a01b03949094166040830152506060015292915050565b6000602082840312156137f157600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561389257613892613640565b500390565b85815284602082015260a0604082015260006138b660a0830186613766565b6001600160a01b039490941660608301525060800152939250505056fea2646970667358221220f8c300dbdde41c54b6ee79e3382a9aa6897b83e53240805a21251b53b0df4eaa64736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103f35760003560e01c806382aa7c6811610208578063c876d0b911610118578063e884f260116100ab578063f63743421161007a578063f637434214610bb0578063f8b45b0514610bc6578063fb210b2014610bdc578063fe72b27a14610be4578063ffecf51614610c0457600080fd5b8063e884f26014610b4f578063ee40166e14610b64578063f11a24d314610b7a578063f2fde38b14610b9057600080fd5b8063d85ba063116100e7578063d85ba06314610abd578063dd62ed3e14610ad3578063deab8aea14610b19578063e2f4560514610b3957600080fd5b8063c876d0b914610a57578063c8c8ebe414610a71578063d257b34f14610a87578063d4090d2a14610aa757600080fd5b8063a4c82a001161019b578063b62496f51161016a578063b62496f5146109a8578063bbc0c742146109d8578063c0246668146109f7578063c17b5b8c14610a17578063c18bc19514610a3757600080fd5b8063a4c82a0014610922578063a9059cbb14610938578063aacebbe314610958578063abb810521461097857600080fd5b806395d89b41116101d757806395d89b41146108b75780639a7a23d6146108cc5780639ec22c0e146108ec578063a457c2d71461090257600080fd5b806382aa7c68146108505780638da5cb5b146108635780639213691314610881578063924de9b71461089757600080fd5b8063395093511161030357806370a0823111610296578063751039fc11610265578063751039fc146107c55780637571336a146107da57806375f0a874146107fa5780637bce5a041461081a5780638095d5641461083057600080fd5b806370a0823114610744578063715018a61461077a57806371a515221461078f578063730c1888146107a557600080fd5b8063540ba552116102d2578063540ba552146106d857806367243482146106ee5780636a486a8e1461070e5780636ddd17131461072457600080fd5b8063395093511461063157806349bd5a5e146106515780634a62bb65146106855780634fbee1931461069f57600080fd5b80631a8145bb11610386578063273123b711610355578063273123b7146105af57806327c8f835146105cf5780632c3e486c146105e55780632e82f1a0146105fb578063313ce5671461061557600080fd5b80631a8145bb146105435780631f3fed8f14610559578063203e727e1461056f57806323b872dd1461058f57600080fd5b80631694505e116103c25780631694505e146104ac57806318160ddd146104f8578063184c16c514610517578063199ffc721461052d57600080fd5b806304dacd50146103ff57806306fdde0314610421578063095ea7b31461044c57806310d5de531461047c57600080fd5b366103fa57005b600080fd5b34801561040b57600080fd5b5061041f61041a366004613246565b610c24565b005b34801561042d57600080fd5b50610436610cb4565b6040516104439190613263565b60405180910390f35b34801561045857600080fd5b5061046c6104673660046132b8565b610d46565b6040519015158152602001610443565b34801561048857600080fd5b5061046c610497366004613246565b60226020526000908152604090205460ff1681565b3480156104b857600080fd5b506104e07f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610443565b34801561050457600080fd5b506002545b604051908152602001610443565b34801561052357600080fd5b50610509600f5481565b34801561053957600080fd5b50610509600b5481565b34801561054f57600080fd5b50610509601f5481565b34801561056557600080fd5b50610509601e5481565b34801561057b57600080fd5b5061041f61058a3660046132e4565b610d5c565b34801561059b57600080fd5b5061046c6105aa3660046132fd565b610e39565b3480156105bb57600080fd5b5061041f6105ca366004613246565b610ee3565b3480156105db57600080fd5b506104e061dead81565b3480156105f157600080fd5b50610509600d5481565b34801561060757600080fd5b50600c5461046c9060ff1681565b34801561062157600080fd5b5060405160128152602001610443565b34801561063d57600080fd5b5061046c61064c3660046132b8565b610f2e565b34801561065d57600080fd5b506104e07f0000000000000000000000007bb6066b7f7fdb96d672294e495aefce3486df2281565b34801561069157600080fd5b5060115461046c9060ff1681565b3480156106ab57600080fd5b5061046c6106ba366004613246565b6001600160a01b031660009081526021602052604090205460ff1690565b3480156106e457600080fd5b5061050960195481565b3480156106fa57600080fd5b5061041f610709366004613414565b610f6a565b34801561071a57600080fd5b50610509601a5481565b34801561073057600080fd5b5060115461046c9062010000900460ff1681565b34801561075057600080fd5b5061050961075f366004613246565b6001600160a01b031660009081526020819052604090205490565b34801561078657600080fd5b5061041f611045565b34801561079b57600080fd5b50610509601d5481565b3480156107b157600080fd5b5061041f6107c03660046134e6565b61107b565b3480156107d157600080fd5b5061046c6111a4565b3480156107e657600080fd5b5061041f6107f536600461351b565b6111e1565b34801561080657600080fd5b506006546104e0906001600160a01b031681565b34801561082657600080fd5b5061050960175481565b34801561083c57600080fd5b5061041f61084b366004613550565b611236565b61041f61085e3660046132e4565b6112d9565b34801561086f57600080fd5b506005546001600160a01b03166104e0565b34801561088d57600080fd5b50610509601b5481565b3480156108a357600080fd5b5061041f6108b236600461357c565b611403565b3480156108c357600080fd5b50610436611449565b3480156108d857600080fd5b5061041f6108e736600461351b565b611458565b3480156108f857600080fd5b5061050960105481565b34801561090e57600080fd5b5061046c61091d3660046132b8565b611538565b34801561092e57600080fd5b50610509600e5481565b34801561094457600080fd5b5061046c6109533660046132b8565b6115d1565b34801561096457600080fd5b5061041f610973366004613246565b6115de565b34801561098457600080fd5b5061046c610993366004613246565b60146020526000908152604090205460ff1681565b3480156109b457600080fd5b5061046c6109c3366004613246565b60236020526000908152604090205460ff1681565b3480156109e457600080fd5b5060115461046c90610100900460ff1681565b348015610a0357600080fd5b5061041f610a1236600461351b565b611665565b348015610a2357600080fd5b5061041f610a32366004613550565b6116ee565b348015610a4357600080fd5b5061041f610a523660046132e4565b611791565b348015610a6357600080fd5b5060155461046c9060ff1681565b348015610a7d57600080fd5b5061050960085481565b348015610a9357600080fd5b5061046c610aa23660046132e4565b611862565b348015610ab357600080fd5b5061050960205481565b348015610ac957600080fd5b5061050960165481565b348015610adf57600080fd5b50610509610aee366004613597565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b2557600080fd5b506007546104e0906001600160a01b031681565b348015610b4557600080fd5b5061050960095481565b348015610b5b57600080fd5b5061046c6119b9565b348015610b7057600080fd5b5061050960125481565b348015610b8657600080fd5b5061050960185481565b348015610b9c57600080fd5b5061041f610bab366004613246565b6119f6565b348015610bbc57600080fd5b50610509601c5481565b348015610bd257600080fd5b50610509600a5481565b61041f611a91565b348015610bf057600080fd5b5061046c610bff3660046132e4565b611c26565b348015610c1057600080fd5b5061041f610c1f366004613246565b611eaf565b6005546001600160a01b03163314610c575760405162461bcd60e51b8152600401610c4e906135d0565b60405180910390fd5b6007546040516001600160a01b03918216918316907f2a4d8391610d71471dbbe59ddff7a3d253d2ec399b14d78219a7c881351fd8bf90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610cc390613605565b80601f0160208091040260200160405190810160405280929190818152602001828054610cef90613605565b8015610d3c5780601f10610d1157610100808354040283529160200191610d3c565b820191906000526020600020905b815481529060010190602001808311610d1f57829003601f168201915b5050505050905090565b6000610d53338484611efd565b50600192915050565b6005546001600160a01b03163314610d865760405162461bcd60e51b8152600401610c4e906135d0565b670de0b6b3a76400006103e8610d9b60025490565b610da6906001613656565b610db09190613675565b610dba9190613675565b811015610e215760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c4e565b610e3381670de0b6b3a7640000613656565b60085550565b6000610e46848484612021565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ecb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c4e565b610ed88533858403611efd565b506001949350505050565b6005546001600160a01b03163314610f0d5760405162461bcd60e51b8152600401610c4e906135d0565b6001600160a01b03166000908152601460205260409020805460ff19169055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610d53918590610f65908690613697565b611efd565b6005546001600160a01b03163314610f945760405162461bcd60e51b8152600401610c4e906135d0565b8051825114610fe55760405162461bcd60e51b815260206004820152601860248201527f6172726179206c656e67746873206d757374206d6174636800000000000000006044820152606401610c4e565b60005b82518110156110405761102e33848381518110611007576110076136af565b6020026020010151848481518110611021576110216136af565b60200260200101516129a0565b80611038816136c5565b915050610fe8565b505050565b6005546001600160a01b0316331461106f5760405162461bcd60e51b8152600401610c4e906135d0565b6110796000612af5565b565b6005546001600160a01b031633146110a55760405162461bcd60e51b8152600401610c4e906135d0565b6102588310156111135760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c4e565b6103e88211158015611123575060015b6111885760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c4e565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b031633146111d15760405162461bcd60e51b8152600401610c4e906135d0565b506011805460ff19169055600190565b6005546001600160a01b0316331461120b5760405162461bcd60e51b8152600401610c4e906135d0565b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146112605760405162461bcd60e51b8152600401610c4e906135d0565b6017839055601882905560198190558061127a8385613697565b6112849190613697565b6016819055601410156110405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c4e565b6005546001600160a01b031633146113035760405162461bcd60e51b8152600401610c4e906135d0565b61130e333083612021565b611339307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d83611efd565b60405163f305d71960e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063f305d71990349061139290309086906000908190339042906004016136e0565b6060604051808303818588803b1580156113ab57600080fd5b505af11580156113bf573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906113e4919061371b565b50506011805462ffff0019166201010017905550504360125542600e55565b6005546001600160a01b0316331461142d5760405162461bcd60e51b8152600401610c4e906135d0565b60118054911515620100000262ff000019909216919091179055565b606060048054610cc390613605565b6005546001600160a01b031633146114825760405162461bcd60e51b8152600401610c4e906135d0565b7f0000000000000000000000007bb6066b7f7fdb96d672294e495aefce3486df226001600160a01b0316826001600160a01b0316141561152a5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c4e565b6115348282612b47565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156115ba5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c4e565b6115c73385858403611efd565b5060019392505050565b6000610d53338484612021565b6005546001600160a01b031633146116085760405162461bcd60e51b8152600401610c4e906135d0565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461168f5760405162461bcd60e51b8152600401610c4e906135d0565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146117185760405162461bcd60e51b8152600401610c4e906135d0565b601b839055601c829055601d819055806117328385613697565b61173c9190613697565b601a819055601910156110405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610c4e565b6005546001600160a01b031633146117bb5760405162461bcd60e51b8152600401610c4e906135d0565b670de0b6b3a76400006103e86117d060025490565b6117db906005613656565b6117e59190613675565b6117ef9190613675565b81101561184a5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c4e565b61185c81670de0b6b3a7640000613656565b600a5550565b6005546000906001600160a01b0316331461188f5760405162461bcd60e51b8152600401610c4e906135d0565b620186a061189c60025490565b6118a7906001613656565b6118b19190613675565b82101561191e5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c4e565b6103e861192a60025490565b611935906005613656565b61193f9190613675565b8211156119ab5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c4e565b50600981905560015b919050565b6005546000906001600160a01b031633146119e65760405162461bcd60e51b8152600401610c4e906135d0565b506015805460ff19169055600190565b6005546001600160a01b03163314611a205760405162461bcd60e51b8152600401610c4e906135d0565b6001600160a01b038116611a855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c4e565b611a8e81612af5565b50565b6040805160028082526060820183526000926020830190803683370190505090507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611b0b57600080fd5b505afa158015611b1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b439190613749565b81600081518110611b5657611b566136af565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611b8a57611b8a6136af565b6001600160a01b03928316602091820292909201015260405163b6f9de9560e01b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063b6f9de95903490611bf190600090869061dead9042906004016137aa565b6000604051808303818588803b158015611c0a57600080fd5b505af1158015611c1e573d6000803e3d6000fd5b505050505050565b6005546000906001600160a01b03163314611c535760405162461bcd60e51b8152600401610c4e906135d0565b600f54601054611c639190613697565b4211611cb15760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c4e565b6103e8821115611d165760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c4e565b426010556040516370a0823160e01b81526001600160a01b037f0000000000000000000000007bb6066b7f7fdb96d672294e495aefce3486df2216600482015260009030906370a082319060240160206040518083038186803b158015611d7c57600080fd5b505afa158015611d90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611db491906137df565b90506000611dce612710611dc88487612b9b565b90612bae565b90508015611e0357611e037f0000000000000000000000007bb6066b7f7fdb96d672294e495aefce3486df2261dead836129a0565b60007f0000000000000000000000007bb6066b7f7fdb96d672294e495aefce3486df229050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611e6357600080fd5b505af1158015611e77573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6005546001600160a01b03163314611ed95760405162461bcd60e51b8152600401610c4e906135d0565b6001600160a01b03166000908152601460205260409020805460ff19166001179055565b6001600160a01b038316611f5f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c4e565b6001600160a01b038216611fc05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c4e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166120475760405162461bcd60e51b8152600401610c4e906137f8565b6001600160a01b03821661206d5760405162461bcd60e51b8152600401610c4e9061383d565b6001600160a01b03831660009081526014602052604090205460ff16156120c65760405162461bcd60e51b815260206004820152600d60248201526c131bd8dad95908185cc8189bdd609a1b6044820152606401610c4e565b806120d757611040838360006129a0565b60115460ff16156125e2576005546001600160a01b0384811691161480159061210e57506005546001600160a01b03838116911614155b801561212257506001600160a01b03821615155b801561213957506001600160a01b03821661dead14155b801561214f5750600554600160a01b900460ff16155b156125e257601154610100900460ff166121e7576001600160a01b03831660009081526021602052604090205460ff16806121a257506001600160a01b03821660009081526021602052604090205460ff165b6121e75760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c4e565b60155460ff161561232e576005546001600160a01b0383811691161480159061224257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561228057507f0000000000000000000000007bb6066b7f7fdb96d672294e495aefce3486df226001600160a01b0316826001600160a01b031614155b1561232e5732600090815260136020526040902054431161231b5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c4e565b3260009081526013602052604090204390555b6001600160a01b03831660009081526023602052604090205460ff16801561236f57506001600160a01b03821660009081526022602052604090205460ff16155b156124a1576008548111156123e45760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c4e565b600a546001600160a01b03831660009081526020819052604090205461240a9083613697565b111561244e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c4e565b60125461245c906001613697565b431161249c576001600160a01b0382166000908152601460205260408082208054600160ff19918216811790925532845291909220805490911690911790555b6125e2565b6001600160a01b03821660009081526023602052604090205460ff1680156124e257506001600160a01b03831660009081526022602052604090205460ff16155b156125585760085481111561249c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c4e565b6001600160a01b03821660009081526022602052604090205460ff166125e257600a546001600160a01b03831660009081526020819052604090205461259e9083613697565b11156125e25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c4e565b306000908152602081905260409020546009548110801590819061260e575060115462010000900460ff165b80156126245750600554600160a01b900460ff16155b801561264957506001600160a01b03851660009081526023602052604090205460ff16155b801561266e57506001600160a01b03851660009081526021602052604090205460ff16155b801561269357506001600160a01b03841660009081526021602052604090205460ff16155b156126c1576005805460ff60a01b1916600160a01b1790556126b3612bba565b6005805460ff60a01b191690555b600554600160a01b900460ff161580156126f357506001600160a01b03841660009081526023602052604090205460ff165b80156127015750600c5460ff165b801561271c5750600d54600e546127189190613697565b4210155b801561274157506001600160a01b03851660009081526021602052604090205460ff16155b156127505761274e612df4565b505b6005546001600160a01b03861660009081526021602052604090205460ff600160a01b90920482161591168061279e57506001600160a01b03851660009081526021602052604090205460ff165b156127a7575060005b6000811561298c576001600160a01b03861660009081526023602052604090205460ff1680156127d957506000601a54115b15612891576127f86064611dc8601a5488612b9b90919063ffffffff16565b9050601a54601c548261280b9190613656565b6128159190613675565b601f60008282546128269190613697565b9091555050601a54601d5461283b9083613656565b6128459190613675565b602060008282546128569190613697565b9091555050601a54601b5461286b9083613656565b6128759190613675565b601e60008282546128869190613697565b9091555061296e9050565b6001600160a01b03871660009081526023602052604090205460ff1680156128bb57506000601654115b1561296e576128da6064611dc860165488612b9b90919063ffffffff16565b9050601654601854826128ed9190613656565b6128f79190613675565b601f60008282546129089190613697565b909155505060165460195461291d9083613656565b6129279190613675565b602060008282546129389190613697565b909155505060165460175461294d9083613656565b6129579190613675565b601e60008282546129689190613697565b90915550505b801561297f5761297f8730836129a0565b6129898186613880565b94505b6129978787876129a0565b50505050505050565b6001600160a01b0383166129c65760405162461bcd60e51b8152600401610c4e906137f8565b6001600160a01b0382166129ec5760405162461bcd60e51b8152600401610c4e9061383d565b6001600160a01b03831660009081526020819052604090205481811015612a645760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c4e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612a9b908490613697565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ae791815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260236020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000612ba78284613656565b9392505050565b6000612ba78284613675565b3060009081526020819052604081205490506000602054601e54601f54612be19190613697565b612beb9190613697565b90506000821580612bfa575081155b15612c0457505050565b600954612c12906014613656565b831115612c2a57600954612c27906014613656565b92505b6000600283601f5486612c3d9190613656565b612c479190613675565b612c519190613675565b90506000612c5f8583612f93565b905047612c6b82612f9f565b6000612c774783612f93565b90506000612c9487611dc8601e5485612b9b90919063ffffffff16565b90506000612cb188611dc860205486612b9b90919063ffffffff16565b9050600081612cc08486613880565b612cca9190613880565b6000601f819055601e81905560208190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612d27576040519150601f19603f3d011682016040523d82523d6000602084013e612d2c565b606091505b50909850508615801590612d405750600081115b15612d9357612d4f8782613152565b601f54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612de0576040519150601f19603f3d011682016040523d82523d6000602084013e612de5565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000007bb6066b7f7fdb96d672294e495aefce3486df22166004820152600090819030906370a082319060240160206040518083038186803b158015612e5c57600080fd5b505afa158015612e70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e9491906137df565b90506000612eb3612710611dc8600b5485612b9b90919063ffffffff16565b90508015612ee857612ee87f0000000000000000000000007bb6066b7f7fdb96d672294e495aefce3486df2261dead836129a0565b60007f0000000000000000000000007bb6066b7f7fdb96d672294e495aefce3486df229050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612f4857600080fd5b505af1158015612f5c573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b6000612ba78284613880565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612fd457612fd46136af565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561304d57600080fd5b505afa158015613061573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130859190613749565b81600181518110613098576130986136af565b60200260200101906001600160a01b031690816001600160a01b0316815250506130e3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611efd565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790613138908590600090869030904290600401613897565b600060405180830381600087803b158015611c0a57600080fd5b61317d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611efd565b60405163f305d71960e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063f305d7199083906131d89030908790600090819061dead9042906004016136e0565b6060604051808303818588803b1580156131f157600080fd5b505af1158015613205573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061322a919061371b565b5050505050565b6001600160a01b0381168114611a8e57600080fd5b60006020828403121561325857600080fd5b8135612ba781613231565b600060208083528351808285015260005b8181101561329057858101830151858201604001528201613274565b818111156132a2576000604083870101525b50601f01601f1916929092016040019392505050565b600080604083850312156132cb57600080fd5b82356132d681613231565b946020939093013593505050565b6000602082840312156132f657600080fd5b5035919050565b60008060006060848603121561331257600080fd5b833561331d81613231565b9250602084013561332d81613231565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561337d5761337d61333e565b604052919050565b600067ffffffffffffffff82111561339f5761339f61333e565b5060051b60200190565b600082601f8301126133ba57600080fd5b813560206133cf6133ca83613385565b613354565b82815260059290921b840181019181810190868411156133ee57600080fd5b8286015b8481101561340957803583529183019183016133f2565b509695505050505050565b6000806040838503121561342757600080fd5b823567ffffffffffffffff8082111561343f57600080fd5b818501915085601f83011261345357600080fd5b813560206134636133ca83613385565b82815260059290921b8401810191818101908984111561348257600080fd5b948201945b838610156134a957853561349a81613231565b82529482019490820190613487565b965050860135925050808211156134bf57600080fd5b506134cc858286016133a9565b9150509250929050565b803580151581146119b457600080fd5b6000806000606084860312156134fb57600080fd5b8335925060208401359150613512604085016134d6565b90509250925092565b6000806040838503121561352e57600080fd5b823561353981613231565b9150613547602084016134d6565b90509250929050565b60008060006060848603121561356557600080fd5b505081359360208301359350604090920135919050565b60006020828403121561358e57600080fd5b612ba7826134d6565b600080604083850312156135aa57600080fd5b82356135b581613231565b915060208301356135c581613231565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061361957607f821691505b6020821081141561363a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561367057613670613640565b500290565b60008261369257634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156136aa576136aa613640565b500190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156136d9576136d9613640565b5060010190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b60008060006060848603121561373057600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561375b57600080fd5b8151612ba781613231565b600081518084526020808501945080840160005b8381101561379f5781516001600160a01b03168752958201959082019060010161377a565b509495945050505050565b8481526080602082015260006137c36080830186613766565b6001600160a01b03949094166040830152506060015292915050565b6000602082840312156137f157600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561389257613892613640565b500390565b85815284602082015260a0604082015260006138b660a0830186613766565b6001600160a01b039490941660608301525060800152939250505056fea2646970667358221220f8c300dbdde41c54b6ee79e3382a9aa6897b83e53240805a21251b53b0df4eaa64736f6c63430008090033

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.