ETH Price: $1,450.07 (-8.13%)

Token

Pepe Terrestrial (P.T.)
 

Overview

Max Total Supply

1,000,000,000 P.T.

Holders

10

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
17,999,999.1 P.T.

Value
$0.00
0x7f80952944bc1246a08c2181841F945b7A1C916E
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:
PT

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : PT.sol
// SPDX-License-Identifier: MIT

/**

Pepe Terrestrial | P.T.

https://www.pepeterrestrial.vip
https://t.me/Pepeterrestrial
https://twitter.com/PepeTerrestrial

*/

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

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* 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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* 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 generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

contract PT is ERC20, Ownable {

    /**

Pepe Terrestrial | $P.T.

https://www.pepeterrestrial.vip
https://t.me/Pepeterrestrial
https://twitter.com/PepeTerrestrial


    */


    using SafeMath for uint256;

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

    bool private swapping;

    address public operationsWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 0;
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 1200 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 20 minutes;
    uint256 public lastManualLpBurnTime;

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

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

    uint256 public buyTotalFees;
    uint256 public buyOperationsFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellOperationsFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForOperations;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    uint256 public FEE_DIVISOR = 100;

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Pepe Terrestrial", "P.T.") {
        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 _buyOperationsFee = 10;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellOperationsFee = 40;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 20_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 20_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

        buyOperationsFee = _buyOperationsFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyOperationsFee + buyLiquidityFee + buyDevFee;

        sellOperationsFee = _sellOperationsFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellOperationsFee + sellLiquidityFee + sellDevFee;

        operationsWallet = address(0x513CF3e01E3e126E3D7b17A39CBE3A4a04b4A565); // set as operations wallet
        devWallet = address(0x513CF3e01E3e126E3D7b17A39CBE3A4a04b4A565); // set as dev wallet

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

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

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        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;
    }

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

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

    // excludeFromMaxTransaction
    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 _operationsFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyOperationsFee = _operationsFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyOperationsFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _operationsFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellOperationsFee = _operationsFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellOperationsFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 40, "Must keep fees at 40% 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 isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    // Event
    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");

        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"
                    );
                }
                //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;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForOperations += (fees * sellOperationsFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForOperations += (fees * buyOperationsFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

    // function used for swap back
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForOperations +
            tokensForDev;
        bool success;

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForOperations = ethBalance.mul(tokensForOperations).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForOperations - ethForDev;

        tokensForLiquidity = 0;
        tokensForOperations = 0;
        tokensForDev = 0;

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

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

        (success, ) = address(operationsWallet).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 setTransferDelayEnabled(bool _transferDelayEnabled) external onlyOwner returns (bool) { 
        transferDelayEnabled = _transferDelayEnabled; 
        return true; 
    }

    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
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"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":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"operationsWalletUpdated","type":"event"},{"inputs":[],"name":"FEE_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyOperationsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellOperationsFee","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":[{"internalType":"bool","name":"_transferDelayEnabled","type":"bool"}],"name":"setTransferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForOperations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600b556000600c60006101000a81548160ff0219169083151502179055506104b0600d556104b0600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506000601360006101000a81548160ff0219169083151502179055506064601f55348015620000ae57600080fd5b506040518060400160405280601081526020017f5065706520546572726573747269616c000000000000000000000000000000008152506040518060400160405280600481526020017f502e542e0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200013392919062000be6565b5080600490805190602001906200014c92919062000be6565b5050506200016f62000163620006a660201b60201c565b620006ae60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200019b8160016200077460201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200021b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000241919062000d00565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cf919062000d00565b6040518363ffffffff1660e01b8152600401620002ee92919062000d43565b6020604051808303816000875af11580156200030e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000334919062000d00565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037c60a05160016200077460201b60201c565b6200039160a05160016200085e60201b60201c565b6000600a905060008060006028905060008060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a81905550612710600a82620003ea919062000da9565b620003f6919062000e39565b60098190555086601581905550856016819055508460178190555060175460165460155462000426919062000e71565b62000432919062000e71565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000462919062000e71565b6200046e919062000e71565b60188190555073513cf3e01e3e126e3d7b17a39cbe3a4a04b4a565600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073513cf3e01e3e126e3d7b17a39cbe3a4a04b4a565600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200054062000532620008ff60201b60201c565b60016200092960201b60201c565b620005533060016200092960201b60201c565b6200056861dead60016200092960201b60201c565b6200059d600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200092960201b60201c565b620005d2600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200092960201b60201c565b620005f4620005e6620008ff60201b60201c565b60016200077460201b60201c565b620006073060016200077460201b60201c565b6200061c61dead60016200077460201b60201c565b62000651600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200077460201b60201c565b62000686600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200077460201b60201c565b62000698338262000a6360201b60201c565b505050505050505062001090565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000784620006a660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007aa620008ff60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000803576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007fa9062000f2f565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000939620006a660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200095f620008ff60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620009b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009af9062000f2f565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a57919062000f6e565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ad6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000acd9062000fdb565b60405180910390fd5b62000aea6000838362000bdc60201b60201c565b806002600082825462000afe919062000e71565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000b55919062000e71565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000bbc91906200100e565b60405180910390a362000bd86000838362000be160201b60201c565b5050565b505050565b505050565b82805462000bf4906200105a565b90600052602060002090601f01602090048101928262000c18576000855562000c64565b82601f1062000c3357805160ff191683800117855562000c64565b8280016001018555821562000c64579182015b8281111562000c6357825182559160200191906001019062000c46565b5b50905062000c73919062000c77565b5090565b5b8082111562000c9257600081600090555060010162000c78565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cc88262000c9b565b9050919050565b62000cda8162000cbb565b811462000ce657600080fd5b50565b60008151905062000cfa8162000ccf565b92915050565b60006020828403121562000d195762000d1862000c96565b5b600062000d298482850162000ce9565b91505092915050565b62000d3d8162000cbb565b82525050565b600060408201905062000d5a600083018562000d32565b62000d69602083018462000d32565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000db68262000d70565b915062000dc38362000d70565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000dff5762000dfe62000d7a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e468262000d70565b915062000e538362000d70565b92508262000e665762000e6562000e0a565b5b828204905092915050565b600062000e7e8262000d70565b915062000e8b8362000d70565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ec35762000ec262000d7a565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f1760208362000ece565b915062000f248262000edf565b602082019050919050565b6000602082019050818103600083015262000f4a8162000f08565b9050919050565b60008115159050919050565b62000f688162000f51565b82525050565b600060208201905062000f85600083018462000f5d565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fc3601f8362000ece565b915062000fd08262000f8b565b602082019050919050565b6000602082019050818103600083015262000ff68162000fb4565b9050919050565b620010088162000d70565b82525050565b600060208201905062001025600083018462000ffd565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200107357607f821691505b602082108114156200108a57620010896200102b565b5b50919050565b60805160a051615a7e62001118600039600081816112c201528181611aac0152818161258d015281816126440152818161267101528181612cb501528181613db901528181613e720152613e9f015260008181610fa701528181612c5d01528181614015015281816140f60152818161411d015281816141b901526141e00152615a7e6000f3fe6080604052600436106103b15760003560e01c8063924de9b7116101e7578063c17b5b8c1161010d578063e884f260116100a0578063f8b45b051161006f578063f8b45b0514610e17578063fb002c9714610e42578063fd72e22a14610e6d578063fe72b27a14610e98576103b8565b8063e884f26014610d6d578063f11a24d314610d98578063f2fde38b14610dc3578063f637434214610dec576103b8565b8063d257b34f116100dc578063d257b34f14610c9d578063d85ba06314610cda578063dd62ed3e14610d05578063e2f4560514610d42576103b8565b8063c17b5b8c14610bf5578063c18bc19514610c1e578063c876d0b914610c47578063c8c8ebe414610c72576103b8565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b27578063b62496f514610b64578063bbc0c74214610ba1578063c024666814610bcc576103b8565b80639fccce3214610a69578063a0d82dc514610a94578063a457c2d714610abf578063a4c82a0014610afc576103b8565b80639c3b4fdc116101c15780639c3b4fdc146109ab5780639e93ad8e146109d65780639ec22c0e14610a015780639f27625614610a2c576103b8565b8063924de9b71461092e57806395d89b41146109575780639a7a23d614610982576103b8565b806349bd5a5e116102d7578063715018a61161026a5780638095d564116102395780638095d564146108985780638a8c523c146108c15780638da5cb5b146108d85780638ea5220f14610903576103b8565b8063715018a614610804578063730c18881461081b578063751039fc146108445780637571336a1461086f576103b8565b80635a139dd4116102a65780635a139dd4146107465780636a486a8e146107715780636ddd17131461079c57806370a08231146107c7576103b8565b806349bd5a5e146106885780634a62bb65146106b35780634f77f6c0146106de5780634fbee19314610709576103b8565b80631a8145bb1161034f5780632c3e486c1161031e5780632c3e486c146105ca5780632e82f1a0146105f5578063313ce56714610620578063395093511461064b576103b8565b80631a8145bb1461050e578063203e727e1461053957806323b872dd1461056257806327c8f8351461059f576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d578063184c16c5146104b8578063199ffc72146104e3576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ed5565b6040516103df9190614328565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a91906143e3565b610f67565b60405161041c919061443e565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614459565b610f85565b604051610459919061443e565b60405180910390f35b34801561046e57600080fd5b50610477610fa5565b60405161048491906144e5565b60405180910390f35b34801561049957600080fd5b506104a2610fc9565b6040516104af919061450f565b60405180910390f35b3480156104c457600080fd5b506104cd610fd3565b6040516104da919061450f565b60405180910390f35b3480156104ef57600080fd5b506104f8610fd9565b604051610505919061450f565b60405180910390f35b34801561051a57600080fd5b50610523610fdf565b604051610530919061450f565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b919061452a565b610fe5565b005b34801561056e57600080fd5b5061058960048036038101906105849190614557565b6110f4565b604051610596919061443e565b60405180910390f35b3480156105ab57600080fd5b506105b46111ec565b6040516105c191906145b9565b60405180910390f35b3480156105d657600080fd5b506105df6111f2565b6040516105ec919061450f565b60405180910390f35b34801561060157600080fd5b5061060a6111f8565b604051610617919061443e565b60405180910390f35b34801561062c57600080fd5b5061063561120b565b60405161064291906145f0565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d91906143e3565b611214565b60405161067f919061443e565b60405180910390f35b34801561069457600080fd5b5061069d6112c0565b6040516106aa91906145b9565b60405180910390f35b3480156106bf57600080fd5b506106c86112e4565b6040516106d5919061443e565b60405180910390f35b3480156106ea57600080fd5b506106f36112f7565b604051610700919061450f565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190614459565b6112fd565b60405161073d919061443e565b60405180910390f35b34801561075257600080fd5b5061075b611353565b604051610768919061450f565b60405180910390f35b34801561077d57600080fd5b50610786611359565b604051610793919061450f565b60405180910390f35b3480156107a857600080fd5b506107b161135f565b6040516107be919061443e565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190614459565b611372565b6040516107fb919061450f565b60405180910390f35b34801561081057600080fd5b506108196113ba565b005b34801561082757600080fd5b50610842600480360381019061083d9190614637565b611442565b005b34801561085057600080fd5b50610859611582565b604051610866919061443e565b60405180910390f35b34801561087b57600080fd5b506108966004803603810190610891919061468a565b611622565b005b3480156108a457600080fd5b506108bf60048036038101906108ba91906146ca565b6116f9565b005b3480156108cd57600080fd5b506108d66117f8565b005b3480156108e457600080fd5b506108ed6118b3565b6040516108fa91906145b9565b60405180910390f35b34801561090f57600080fd5b506109186118dd565b60405161092591906145b9565b60405180910390f35b34801561093a57600080fd5b506109556004803603810190610950919061471d565b611903565b005b34801561096357600080fd5b5061096c61199c565b6040516109799190614328565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a4919061468a565b611a2e565b005b3480156109b757600080fd5b506109c0611b47565b6040516109cd919061450f565b60405180910390f35b3480156109e257600080fd5b506109eb611b4d565b6040516109f8919061450f565b60405180910390f35b348015610a0d57600080fd5b50610a16611b53565b604051610a23919061450f565b60405180910390f35b348015610a3857600080fd5b50610a536004803603810190610a4e919061471d565b611b59565b604051610a60919061443e565b60405180910390f35b348015610a7557600080fd5b50610a7e611bfa565b604051610a8b919061450f565b60405180910390f35b348015610aa057600080fd5b50610aa9611c00565b604051610ab6919061450f565b60405180910390f35b348015610acb57600080fd5b50610ae66004803603810190610ae191906143e3565b611c06565b604051610af3919061443e565b60405180910390f35b348015610b0857600080fd5b50610b11611cf1565b604051610b1e919061450f565b60405180910390f35b348015610b3357600080fd5b50610b4e6004803603810190610b4991906143e3565b611cf7565b604051610b5b919061443e565b60405180910390f35b348015610b7057600080fd5b50610b8b6004803603810190610b869190614459565b611d15565b604051610b98919061443e565b60405180910390f35b348015610bad57600080fd5b50610bb6611d35565b604051610bc3919061443e565b60405180910390f35b348015610bd857600080fd5b50610bf36004803603810190610bee919061468a565b611d48565b005b348015610c0157600080fd5b50610c1c6004803603810190610c1791906146ca565b611e6d565b005b348015610c2a57600080fd5b50610c456004803603810190610c40919061452a565b611f6c565b005b348015610c5357600080fd5b50610c5c61207b565b604051610c69919061443e565b60405180910390f35b348015610c7e57600080fd5b50610c8761208e565b604051610c94919061450f565b60405180910390f35b348015610ca957600080fd5b50610cc46004803603810190610cbf919061452a565b612094565b604051610cd1919061443e565b60405180910390f35b348015610ce657600080fd5b50610cef6121e9565b604051610cfc919061450f565b60405180910390f35b348015610d1157600080fd5b50610d2c6004803603810190610d27919061474a565b6121ef565b604051610d39919061450f565b60405180910390f35b348015610d4e57600080fd5b50610d57612276565b604051610d64919061450f565b60405180910390f35b348015610d7957600080fd5b50610d8261227c565b604051610d8f919061443e565b60405180910390f35b348015610da457600080fd5b50610dad61231c565b604051610dba919061450f565b60405180910390f35b348015610dcf57600080fd5b50610dea6004803603810190610de59190614459565b612322565b005b348015610df857600080fd5b50610e0161241a565b604051610e0e919061450f565b60405180910390f35b348015610e2357600080fd5b50610e2c612420565b604051610e39919061450f565b60405180910390f35b348015610e4e57600080fd5b50610e57612426565b604051610e64919061450f565b60405180910390f35b348015610e7957600080fd5b50610e8261242c565b604051610e8f91906145b9565b60405180910390f35b348015610ea457600080fd5b50610ebf6004803603810190610eba919061452a565b612452565b604051610ecc919061443e565b60405180910390f35b606060038054610ee4906147b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f10906147b9565b8015610f5d5780601f10610f3257610100808354040283529160200191610f5d565b820191906000526020600020905b815481529060010190602001808311610f4057829003601f168201915b5050505050905090565b6000610f7b610f7461272a565b8484612732565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600f5481565b600b5481565b601d5481565b610fed61272a565b73ffffffffffffffffffffffffffffffffffffffff1661100b6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890614837565b60405180910390fd5b670de0b6b3a76400006103e86001611077610fc9565b6110819190614886565b61108b919061490f565b611095919061490f565b8110156110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce906149b2565b60405180910390fd5b670de0b6b3a7640000816110eb9190614886565b60088190555050565b60006111018484846128fd565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061114c61272a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390614a44565b60405180910390fd5b6111e0856111d861272a565b858403612732565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006112b661122161272a565b84846001600061122f61272a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b19190614a64565b612732565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b60195481565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113c261272a565b73ffffffffffffffffffffffffffffffffffffffff166113e06118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90614837565b60405180910390fd5b6114406000613695565b565b61144a61272a565b73ffffffffffffffffffffffffffffffffffffffff166114686118b3565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614837565b60405180910390fd5b610258831015611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90614b2c565b60405180910390fd5b6103e88211158015611516575060008210155b611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90614bbe565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061158c61272a565b73ffffffffffffffffffffffffffffffffffffffff166115aa6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790614837565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61162a61272a565b73ffffffffffffffffffffffffffffffffffffffff166116486118b3565b73ffffffffffffffffffffffffffffffffffffffff161461169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590614837565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61170161272a565b73ffffffffffffffffffffffffffffffffffffffff1661171f6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90614837565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461179d9190614a64565b6117a79190614a64565b601481905550600a60145411156117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90614c2a565b60405180910390fd5b505050565b61180061272a565b73ffffffffffffffffffffffffffffffffffffffff1661181e6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90614837565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61190b61272a565b73ffffffffffffffffffffffffffffffffffffffff166119296118b3565b73ffffffffffffffffffffffffffffffffffffffff161461197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690614837565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119ab906147b9565b80601f01602080910402602001604051908101604052809291908181526020018280546119d7906147b9565b8015611a245780601f106119f957610100808354040283529160200191611a24565b820191906000526020600020905b815481529060010190602001808311611a0757829003601f168201915b5050505050905090565b611a3661272a565b73ffffffffffffffffffffffffffffffffffffffff16611a546118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa190614837565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3090614cbc565b60405180910390fd5b611b43828261375b565b5050565b60175481565b601f5481565b60105481565b6000611b6361272a565b73ffffffffffffffffffffffffffffffffffffffff16611b816118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce90614837565b60405180910390fd5b81601360006101000a81548160ff02191690831515021790555060019050919050565b601e5481565b601b5481565b60008060016000611c1561272a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc990614d4e565b60405180910390fd5b611ce6611cdd61272a565b85858403612732565b600191505092915050565b600e5481565b6000611d0b611d0461272a565b84846128fd565b6001905092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d5061272a565b73ffffffffffffffffffffffffffffffffffffffff16611d6e6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb90614837565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e61919061443e565b60405180910390a25050565b611e7561272a565b73ffffffffffffffffffffffffffffffffffffffff16611e936118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee090614837565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f119190614a64565b611f1b9190614a64565b60188190555060286018541115611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e90614dba565b60405180910390fd5b505050565b611f7461272a565b73ffffffffffffffffffffffffffffffffffffffff16611f926118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf90614837565b60405180910390fd5b670de0b6b3a76400006103e86005611ffe610fc9565b6120089190614886565b612012919061490f565b61201c919061490f565b81101561205e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205590614e4c565b60405180910390fd5b670de0b6b3a7640000816120729190614886565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061209e61272a565b73ffffffffffffffffffffffffffffffffffffffff166120bc6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614612112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210990614837565b60405180910390fd5b620186a06001612120610fc9565b61212a9190614886565b612134919061490f565b821015612176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216d90614ede565b60405180910390fd5b6103e86005612183610fc9565b61218d9190614886565b612197919061490f565b8211156121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090614f70565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061228661272a565b73ffffffffffffffffffffffffffffffffffffffff166122a46118b3565b73ffffffffffffffffffffffffffffffffffffffff16146122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190614837565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61232a61272a565b73ffffffffffffffffffffffffffffffffffffffff166123486118b3565b73ffffffffffffffffffffffffffffffffffffffff161461239e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239590614837565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561240e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240590615002565b60405180910390fd5b61241781613695565b50565b601a5481565b600a5481565b601c5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061245c61272a565b73ffffffffffffffffffffffffffffffffffffffff1661247a6118b3565b73ffffffffffffffffffffffffffffffffffffffff16146124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c790614837565b60405180910390fd5b600f546010546124e09190614a64565b4211612521576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125189061506e565b60405180910390fd5b6103e8821115612566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255d90615100565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016125c891906145b9565b602060405180830381865afa1580156125e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126099190615135565b9050600061263461271061262686856137fc90919063ffffffff16565b61381290919063ffffffff16565b9050600081111561266d5761266c7f000000000000000000000000000000000000000000000000000000000000000061dead83613828565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126da57600080fd5b505af11580156126ee573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612799906151d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280990615266565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128f0919061450f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561296d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612964906152f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d49061538a565b60405180910390fd5b60008114156129f7576129f283836000613828565b613690565b601160009054906101000a900460ff16156130ba57612a146118b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a825750612a526118b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612abb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612af5575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b0e5750600560149054906101000a900460ff16155b156130b957601160019054906101000a900460ff16612c0857602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bc85750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfe906153f6565b60405180910390fd5b5b601360009054906101000a900460ff1615612dd057612c256118b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612cac57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d0457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612dcf5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d81906154ae565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e735750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a57600854811115612ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb490615540565b60405180910390fd5b600a54612ec983611372565b82612ed49190614a64565b1115612f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0c906155ac565b60405180910390fd5b6130b8565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fbd5750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561300c57600854811115613007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffe9061563e565b60405180910390fd5b6130b7565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130b657600a5461306983611372565b826130749190614a64565b11156130b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ac906155ac565b60405180910390fd5b5b5b5b5b5b60006130c530611372565b9050600060095482101590508080156130ea5750601160029054906101000a900460ff165b80156131035750600560149054906101000a900460ff16155b80156131595750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131af5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132055750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613249576001600560146101000a81548160ff02191690831515021790555061322d613aa9565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156132af5750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132c75750600c60009054906101000a900460ff165b80156132e25750600d54600e546132de9190614a64565b4210155b80156133385750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561334757613345613d90565b505b6000600560149054906101000a900460ff16159050602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133fd5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561340757600090505b6000811561368057602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561346a57506000601854115b15613537576134976064613489601854886137fc90919063ffffffff16565b61381290919063ffffffff16565b9050601854601a54826134aa9190614886565b6134b4919061490f565b601d60008282546134c59190614a64565b92505081905550601854601b54826134dd9190614886565b6134e7919061490f565b601e60008282546134f89190614a64565b92505081905550601854601954826135109190614886565b61351a919061490f565b601c600082825461352b9190614a64565b9250508190555061365c565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561359257506000601454115b1561365b576135bf60646135b1601454886137fc90919063ffffffff16565b61381290919063ffffffff16565b9050601454601654826135d29190614886565b6135dc919061490f565b601d60008282546135ed9190614a64565b92505081905550601454601754826136059190614886565b61360f919061490f565b601e60008282546136209190614a64565b92505081905550601454601554826136389190614886565b613642919061490f565b601c60008282546136539190614a64565b925050819055505b5b600081111561367157613670873083613828565b5b808561367d919061565e565b94505b61368b878787613828565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361380a9190614886565b905092915050565b60008183613820919061490f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388f906152f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ff9061538a565b60405180910390fd5b613913838383613f56565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399090615704565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a2c9190614a64565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a90919061450f565b60405180910390a3613aa3848484613f5b565b50505050565b6000613ab430611372565b90506000601e54601c54601d54613acb9190614a64565b613ad59190614a64565b9050600080831480613ae75750600082145b15613af457505050613d8e565b6014600954613b039190614886565b831115613b1c576014600954613b199190614886565b92505b6000600283601d5486613b2f9190614886565b613b39919061490f565b613b43919061490f565b90506000613b5a8286613f6090919063ffffffff16565b90506000479050613b6a82613f76565b6000613b7f8247613f6090919063ffffffff16565b90506000613baa87613b9c601c54856137fc90919063ffffffff16565b61381290919063ffffffff16565b90506000613bd588613bc7601e54866137fc90919063ffffffff16565b61381290919063ffffffff16565b90506000818385613be6919061565e565b613bf0919061565e565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c5090615755565b60006040518083038185875af1925050503d8060008114613c8d576040519150601f19603f3d011682016040523d82523d6000602084013e613c92565b606091505b505080985050600087118015613ca85750600081115b15613cf557613cb787826141b3565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613cec9392919061576a565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613d3b90615755565b60006040518083038185875af1925050503d8060008114613d78576040519150601f19603f3d011682016040523d82523d6000602084013e613d7d565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613df491906145b9565b602060405180830381865afa158015613e11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e359190615135565b90506000613e62612710613e54600b54856137fc90919063ffffffff16565b61381290919063ffffffff16565b90506000811115613e9b57613e9a7f000000000000000000000000000000000000000000000000000000000000000061dead83613828565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f0857600080fd5b505af1158015613f1c573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613f6e919061565e565b905092915050565b6000600267ffffffffffffffff811115613f9357613f926157a1565b5b604051908082528060200260200182016040528015613fc15781602001602082028036833780820191505090505b5090503081600081518110613fd957613fd86157d0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561407e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140a29190615814565b816001815181106140b6576140b56157d0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061411b307f000000000000000000000000000000000000000000000000000000000000000084612732565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161417d95949392919061593a565b600060405180830381600087803b15801561419757600080fd5b505af11580156141ab573d6000803e3d6000fd5b505050505050565b6141de307f000000000000000000000000000000000000000000000000000000000000000084612732565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161424596959493929190615994565b60606040518083038185885af1158015614263573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061428891906159f5565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142c95780820151818401526020810190506142ae565b838111156142d8576000848401525b50505050565b6000601f19601f8301169050919050565b60006142fa8261428f565b614304818561429a565b93506143148185602086016142ab565b61431d816142de565b840191505092915050565b6000602082019050818103600083015261434281846142ef565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061437a8261434f565b9050919050565b61438a8161436f565b811461439557600080fd5b50565b6000813590506143a781614381565b92915050565b6000819050919050565b6143c0816143ad565b81146143cb57600080fd5b50565b6000813590506143dd816143b7565b92915050565b600080604083850312156143fa576143f961434a565b5b600061440885828601614398565b9250506020614419858286016143ce565b9150509250929050565b60008115159050919050565b61443881614423565b82525050565b6000602082019050614453600083018461442f565b92915050565b60006020828403121561446f5761446e61434a565b5b600061447d84828501614398565b91505092915050565b6000819050919050565b60006144ab6144a66144a18461434f565b614486565b61434f565b9050919050565b60006144bd82614490565b9050919050565b60006144cf826144b2565b9050919050565b6144df816144c4565b82525050565b60006020820190506144fa60008301846144d6565b92915050565b614509816143ad565b82525050565b60006020820190506145246000830184614500565b92915050565b6000602082840312156145405761453f61434a565b5b600061454e848285016143ce565b91505092915050565b6000806000606084860312156145705761456f61434a565b5b600061457e86828701614398565b935050602061458f86828701614398565b92505060406145a0868287016143ce565b9150509250925092565b6145b38161436f565b82525050565b60006020820190506145ce60008301846145aa565b92915050565b600060ff82169050919050565b6145ea816145d4565b82525050565b600060208201905061460560008301846145e1565b92915050565b61461481614423565b811461461f57600080fd5b50565b6000813590506146318161460b565b92915050565b6000806000606084860312156146505761464f61434a565b5b600061465e868287016143ce565b935050602061466f868287016143ce565b925050604061468086828701614622565b9150509250925092565b600080604083850312156146a1576146a061434a565b5b60006146af85828601614398565b92505060206146c085828601614622565b9150509250929050565b6000806000606084860312156146e3576146e261434a565b5b60006146f1868287016143ce565b9350506020614702868287016143ce565b9250506040614713868287016143ce565b9150509250925092565b6000602082840312156147335761473261434a565b5b600061474184828501614622565b91505092915050565b600080604083850312156147615761476061434a565b5b600061476f85828601614398565b925050602061478085828601614398565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806147d157607f821691505b602082108114156147e5576147e461478a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061482160208361429a565b915061482c826147eb565b602082019050919050565b6000602082019050818103600083015261485081614814565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614891826143ad565b915061489c836143ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148d5576148d4614857565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061491a826143ad565b9150614925836143ad565b925082614935576149346148e0565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061499c602f8361429a565b91506149a782614940565b604082019050919050565b600060208201905081810360008301526149cb8161498f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614a2e60288361429a565b9150614a39826149d2565b604082019050919050565b60006020820190508181036000830152614a5d81614a21565b9050919050565b6000614a6f826143ad565b9150614a7a836143ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614aaf57614aae614857565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614b1660338361429a565b9150614b2182614aba565b604082019050919050565b60006020820190508181036000830152614b4581614b09565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614ba860308361429a565b9150614bb382614b4c565b604082019050919050565b60006020820190508181036000830152614bd781614b9b565b9050919050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000614c14601d8361429a565b9150614c1f82614bde565b602082019050919050565b60006020820190508181036000830152614c4381614c07565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614ca660398361429a565b9150614cb182614c4a565b604082019050919050565b60006020820190508181036000830152614cd581614c99565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d3860258361429a565b9150614d4382614cdc565b604082019050919050565b60006020820190508181036000830152614d6781614d2b565b9050919050565b7f4d757374206b656570206665657320617420343025206f72206c657373000000600082015250565b6000614da4601d8361429a565b9150614daf82614d6e565b602082019050919050565b60006020820190508181036000830152614dd381614d97565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614e3660248361429a565b9150614e4182614dda565b604082019050919050565b60006020820190508181036000830152614e6581614e29565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614ec860358361429a565b9150614ed382614e6c565b604082019050919050565b60006020820190508181036000830152614ef781614ebb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614f5a60348361429a565b9150614f6582614efe565b604082019050919050565b60006020820190508181036000830152614f8981614f4d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614fec60268361429a565b9150614ff782614f90565b604082019050919050565b6000602082019050818103600083015261501b81614fdf565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061505860208361429a565b915061506382615022565b602082019050919050565b600060208201905081810360008301526150878161504b565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006150ea602a8361429a565b91506150f58261508e565b604082019050919050565b60006020820190508181036000830152615119816150dd565b9050919050565b60008151905061512f816143b7565b92915050565b60006020828403121561514b5761514a61434a565b5b600061515984828501615120565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006151be60248361429a565b91506151c982615162565b604082019050919050565b600060208201905081810360008301526151ed816151b1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061525060228361429a565b915061525b826151f4565b604082019050919050565b6000602082019050818103600083015261527f81615243565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006152e260258361429a565b91506152ed82615286565b604082019050919050565b60006020820190508181036000830152615311816152d5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061537460238361429a565b915061537f82615318565b604082019050919050565b600060208201905081810360008301526153a381615367565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006153e060168361429a565b91506153eb826153aa565b602082019050919050565b6000602082019050818103600083015261540f816153d3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061549860498361429a565b91506154a382615416565b606082019050919050565b600060208201905081810360008301526154c78161548b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061552a60358361429a565b9150615535826154ce565b604082019050919050565b600060208201905081810360008301526155598161551d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061559660138361429a565b91506155a182615560565b602082019050919050565b600060208201905081810360008301526155c581615589565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061562860368361429a565b9150615633826155cc565b604082019050919050565b600060208201905081810360008301526156578161561b565b9050919050565b6000615669826143ad565b9150615674836143ad565b92508282101561568757615686614857565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006156ee60268361429a565b91506156f982615692565b604082019050919050565b6000602082019050818103600083015261571d816156e1565b9050919050565b600081905092915050565b50565b600061573f600083615724565b915061574a8261572f565b600082019050919050565b600061576082615732565b9150819050919050565b600060608201905061577f6000830186614500565b61578c6020830185614500565b6157996040830184614500565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061580e81614381565b92915050565b60006020828403121561582a5761582961434a565b5b6000615838848285016157ff565b91505092915050565b6000819050919050565b600061586661586161585c84615841565b614486565b6143ad565b9050919050565b6158768161584b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6158b18161436f565b82525050565b60006158c383836158a8565b60208301905092915050565b6000602082019050919050565b60006158e78261587c565b6158f18185615887565b93506158fc83615898565b8060005b8381101561592d57815161591488826158b7565b975061591f836158cf565b925050600181019050615900565b5085935050505092915050565b600060a08201905061594f6000830188614500565b61595c602083018761586d565b818103604083015261596e81866158dc565b905061597d60608301856145aa565b61598a6080830184614500565b9695505050505050565b600060c0820190506159a960008301896145aa565b6159b66020830188614500565b6159c3604083018761586d565b6159d0606083018661586d565b6159dd60808301856145aa565b6159ea60a0830184614500565b979650505050505050565b600080600060608486031215615a0e57615a0d61434a565b5b6000615a1c86828701615120565b9350506020615a2d86828701615120565b9250506040615a3e86828701615120565b915050925092509256fea264697066735822122005fa57ffd9c1f17b5dc515ba2c72b4a7e336cf313d36fc9608fae88f32f8528164736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c8063924de9b7116101e7578063c17b5b8c1161010d578063e884f260116100a0578063f8b45b051161006f578063f8b45b0514610e17578063fb002c9714610e42578063fd72e22a14610e6d578063fe72b27a14610e98576103b8565b8063e884f26014610d6d578063f11a24d314610d98578063f2fde38b14610dc3578063f637434214610dec576103b8565b8063d257b34f116100dc578063d257b34f14610c9d578063d85ba06314610cda578063dd62ed3e14610d05578063e2f4560514610d42576103b8565b8063c17b5b8c14610bf5578063c18bc19514610c1e578063c876d0b914610c47578063c8c8ebe414610c72576103b8565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b27578063b62496f514610b64578063bbc0c74214610ba1578063c024666814610bcc576103b8565b80639fccce3214610a69578063a0d82dc514610a94578063a457c2d714610abf578063a4c82a0014610afc576103b8565b80639c3b4fdc116101c15780639c3b4fdc146109ab5780639e93ad8e146109d65780639ec22c0e14610a015780639f27625614610a2c576103b8565b8063924de9b71461092e57806395d89b41146109575780639a7a23d614610982576103b8565b806349bd5a5e116102d7578063715018a61161026a5780638095d564116102395780638095d564146108985780638a8c523c146108c15780638da5cb5b146108d85780638ea5220f14610903576103b8565b8063715018a614610804578063730c18881461081b578063751039fc146108445780637571336a1461086f576103b8565b80635a139dd4116102a65780635a139dd4146107465780636a486a8e146107715780636ddd17131461079c57806370a08231146107c7576103b8565b806349bd5a5e146106885780634a62bb65146106b35780634f77f6c0146106de5780634fbee19314610709576103b8565b80631a8145bb1161034f5780632c3e486c1161031e5780632c3e486c146105ca5780632e82f1a0146105f5578063313ce56714610620578063395093511461064b576103b8565b80631a8145bb1461050e578063203e727e1461053957806323b872dd1461056257806327c8f8351461059f576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d578063184c16c5146104b8578063199ffc72146104e3576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ed5565b6040516103df9190614328565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a91906143e3565b610f67565b60405161041c919061443e565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614459565b610f85565b604051610459919061443e565b60405180910390f35b34801561046e57600080fd5b50610477610fa5565b60405161048491906144e5565b60405180910390f35b34801561049957600080fd5b506104a2610fc9565b6040516104af919061450f565b60405180910390f35b3480156104c457600080fd5b506104cd610fd3565b6040516104da919061450f565b60405180910390f35b3480156104ef57600080fd5b506104f8610fd9565b604051610505919061450f565b60405180910390f35b34801561051a57600080fd5b50610523610fdf565b604051610530919061450f565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b919061452a565b610fe5565b005b34801561056e57600080fd5b5061058960048036038101906105849190614557565b6110f4565b604051610596919061443e565b60405180910390f35b3480156105ab57600080fd5b506105b46111ec565b6040516105c191906145b9565b60405180910390f35b3480156105d657600080fd5b506105df6111f2565b6040516105ec919061450f565b60405180910390f35b34801561060157600080fd5b5061060a6111f8565b604051610617919061443e565b60405180910390f35b34801561062c57600080fd5b5061063561120b565b60405161064291906145f0565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d91906143e3565b611214565b60405161067f919061443e565b60405180910390f35b34801561069457600080fd5b5061069d6112c0565b6040516106aa91906145b9565b60405180910390f35b3480156106bf57600080fd5b506106c86112e4565b6040516106d5919061443e565b60405180910390f35b3480156106ea57600080fd5b506106f36112f7565b604051610700919061450f565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190614459565b6112fd565b60405161073d919061443e565b60405180910390f35b34801561075257600080fd5b5061075b611353565b604051610768919061450f565b60405180910390f35b34801561077d57600080fd5b50610786611359565b604051610793919061450f565b60405180910390f35b3480156107a857600080fd5b506107b161135f565b6040516107be919061443e565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190614459565b611372565b6040516107fb919061450f565b60405180910390f35b34801561081057600080fd5b506108196113ba565b005b34801561082757600080fd5b50610842600480360381019061083d9190614637565b611442565b005b34801561085057600080fd5b50610859611582565b604051610866919061443e565b60405180910390f35b34801561087b57600080fd5b506108966004803603810190610891919061468a565b611622565b005b3480156108a457600080fd5b506108bf60048036038101906108ba91906146ca565b6116f9565b005b3480156108cd57600080fd5b506108d66117f8565b005b3480156108e457600080fd5b506108ed6118b3565b6040516108fa91906145b9565b60405180910390f35b34801561090f57600080fd5b506109186118dd565b60405161092591906145b9565b60405180910390f35b34801561093a57600080fd5b506109556004803603810190610950919061471d565b611903565b005b34801561096357600080fd5b5061096c61199c565b6040516109799190614328565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a4919061468a565b611a2e565b005b3480156109b757600080fd5b506109c0611b47565b6040516109cd919061450f565b60405180910390f35b3480156109e257600080fd5b506109eb611b4d565b6040516109f8919061450f565b60405180910390f35b348015610a0d57600080fd5b50610a16611b53565b604051610a23919061450f565b60405180910390f35b348015610a3857600080fd5b50610a536004803603810190610a4e919061471d565b611b59565b604051610a60919061443e565b60405180910390f35b348015610a7557600080fd5b50610a7e611bfa565b604051610a8b919061450f565b60405180910390f35b348015610aa057600080fd5b50610aa9611c00565b604051610ab6919061450f565b60405180910390f35b348015610acb57600080fd5b50610ae66004803603810190610ae191906143e3565b611c06565b604051610af3919061443e565b60405180910390f35b348015610b0857600080fd5b50610b11611cf1565b604051610b1e919061450f565b60405180910390f35b348015610b3357600080fd5b50610b4e6004803603810190610b4991906143e3565b611cf7565b604051610b5b919061443e565b60405180910390f35b348015610b7057600080fd5b50610b8b6004803603810190610b869190614459565b611d15565b604051610b98919061443e565b60405180910390f35b348015610bad57600080fd5b50610bb6611d35565b604051610bc3919061443e565b60405180910390f35b348015610bd857600080fd5b50610bf36004803603810190610bee919061468a565b611d48565b005b348015610c0157600080fd5b50610c1c6004803603810190610c1791906146ca565b611e6d565b005b348015610c2a57600080fd5b50610c456004803603810190610c40919061452a565b611f6c565b005b348015610c5357600080fd5b50610c5c61207b565b604051610c69919061443e565b60405180910390f35b348015610c7e57600080fd5b50610c8761208e565b604051610c94919061450f565b60405180910390f35b348015610ca957600080fd5b50610cc46004803603810190610cbf919061452a565b612094565b604051610cd1919061443e565b60405180910390f35b348015610ce657600080fd5b50610cef6121e9565b604051610cfc919061450f565b60405180910390f35b348015610d1157600080fd5b50610d2c6004803603810190610d27919061474a565b6121ef565b604051610d39919061450f565b60405180910390f35b348015610d4e57600080fd5b50610d57612276565b604051610d64919061450f565b60405180910390f35b348015610d7957600080fd5b50610d8261227c565b604051610d8f919061443e565b60405180910390f35b348015610da457600080fd5b50610dad61231c565b604051610dba919061450f565b60405180910390f35b348015610dcf57600080fd5b50610dea6004803603810190610de59190614459565b612322565b005b348015610df857600080fd5b50610e0161241a565b604051610e0e919061450f565b60405180910390f35b348015610e2357600080fd5b50610e2c612420565b604051610e39919061450f565b60405180910390f35b348015610e4e57600080fd5b50610e57612426565b604051610e64919061450f565b60405180910390f35b348015610e7957600080fd5b50610e8261242c565b604051610e8f91906145b9565b60405180910390f35b348015610ea457600080fd5b50610ebf6004803603810190610eba919061452a565b612452565b604051610ecc919061443e565b60405180910390f35b606060038054610ee4906147b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f10906147b9565b8015610f5d5780601f10610f3257610100808354040283529160200191610f5d565b820191906000526020600020905b815481529060010190602001808311610f4057829003601f168201915b5050505050905090565b6000610f7b610f7461272a565b8484612732565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600f5481565b600b5481565b601d5481565b610fed61272a565b73ffffffffffffffffffffffffffffffffffffffff1661100b6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890614837565b60405180910390fd5b670de0b6b3a76400006103e86001611077610fc9565b6110819190614886565b61108b919061490f565b611095919061490f565b8110156110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce906149b2565b60405180910390fd5b670de0b6b3a7640000816110eb9190614886565b60088190555050565b60006111018484846128fd565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061114c61272a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390614a44565b60405180910390fd5b6111e0856111d861272a565b858403612732565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006112b661122161272a565b84846001600061122f61272a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b19190614a64565b612732565b6001905092915050565b7f000000000000000000000000aa563733f07f5c6cb3dc1e6ba5471b44f02bcb9e81565b601160009054906101000a900460ff1681565b60195481565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113c261272a565b73ffffffffffffffffffffffffffffffffffffffff166113e06118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90614837565b60405180910390fd5b6114406000613695565b565b61144a61272a565b73ffffffffffffffffffffffffffffffffffffffff166114686118b3565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614837565b60405180910390fd5b610258831015611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90614b2c565b60405180910390fd5b6103e88211158015611516575060008210155b611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90614bbe565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061158c61272a565b73ffffffffffffffffffffffffffffffffffffffff166115aa6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790614837565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61162a61272a565b73ffffffffffffffffffffffffffffffffffffffff166116486118b3565b73ffffffffffffffffffffffffffffffffffffffff161461169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590614837565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61170161272a565b73ffffffffffffffffffffffffffffffffffffffff1661171f6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90614837565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461179d9190614a64565b6117a79190614a64565b601481905550600a60145411156117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90614c2a565b60405180910390fd5b505050565b61180061272a565b73ffffffffffffffffffffffffffffffffffffffff1661181e6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90614837565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61190b61272a565b73ffffffffffffffffffffffffffffffffffffffff166119296118b3565b73ffffffffffffffffffffffffffffffffffffffff161461197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690614837565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119ab906147b9565b80601f01602080910402602001604051908101604052809291908181526020018280546119d7906147b9565b8015611a245780601f106119f957610100808354040283529160200191611a24565b820191906000526020600020905b815481529060010190602001808311611a0757829003601f168201915b5050505050905090565b611a3661272a565b73ffffffffffffffffffffffffffffffffffffffff16611a546118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa190614837565b60405180910390fd5b7f000000000000000000000000aa563733f07f5c6cb3dc1e6ba5471b44f02bcb9e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3090614cbc565b60405180910390fd5b611b43828261375b565b5050565b60175481565b601f5481565b60105481565b6000611b6361272a565b73ffffffffffffffffffffffffffffffffffffffff16611b816118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce90614837565b60405180910390fd5b81601360006101000a81548160ff02191690831515021790555060019050919050565b601e5481565b601b5481565b60008060016000611c1561272a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc990614d4e565b60405180910390fd5b611ce6611cdd61272a565b85858403612732565b600191505092915050565b600e5481565b6000611d0b611d0461272a565b84846128fd565b6001905092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d5061272a565b73ffffffffffffffffffffffffffffffffffffffff16611d6e6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb90614837565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e61919061443e565b60405180910390a25050565b611e7561272a565b73ffffffffffffffffffffffffffffffffffffffff16611e936118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee090614837565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f119190614a64565b611f1b9190614a64565b60188190555060286018541115611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e90614dba565b60405180910390fd5b505050565b611f7461272a565b73ffffffffffffffffffffffffffffffffffffffff16611f926118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf90614837565b60405180910390fd5b670de0b6b3a76400006103e86005611ffe610fc9565b6120089190614886565b612012919061490f565b61201c919061490f565b81101561205e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205590614e4c565b60405180910390fd5b670de0b6b3a7640000816120729190614886565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061209e61272a565b73ffffffffffffffffffffffffffffffffffffffff166120bc6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614612112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210990614837565b60405180910390fd5b620186a06001612120610fc9565b61212a9190614886565b612134919061490f565b821015612176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216d90614ede565b60405180910390fd5b6103e86005612183610fc9565b61218d9190614886565b612197919061490f565b8211156121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090614f70565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061228661272a565b73ffffffffffffffffffffffffffffffffffffffff166122a46118b3565b73ffffffffffffffffffffffffffffffffffffffff16146122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190614837565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61232a61272a565b73ffffffffffffffffffffffffffffffffffffffff166123486118b3565b73ffffffffffffffffffffffffffffffffffffffff161461239e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239590614837565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561240e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240590615002565b60405180910390fd5b61241781613695565b50565b601a5481565b600a5481565b601c5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061245c61272a565b73ffffffffffffffffffffffffffffffffffffffff1661247a6118b3565b73ffffffffffffffffffffffffffffffffffffffff16146124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c790614837565b60405180910390fd5b600f546010546124e09190614a64565b4211612521576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125189061506e565b60405180910390fd5b6103e8821115612566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255d90615100565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000aa563733f07f5c6cb3dc1e6ba5471b44f02bcb9e6040518263ffffffff1660e01b81526004016125c891906145b9565b602060405180830381865afa1580156125e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126099190615135565b9050600061263461271061262686856137fc90919063ffffffff16565b61381290919063ffffffff16565b9050600081111561266d5761266c7f000000000000000000000000aa563733f07f5c6cb3dc1e6ba5471b44f02bcb9e61dead83613828565b5b60007f000000000000000000000000aa563733f07f5c6cb3dc1e6ba5471b44f02bcb9e90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126da57600080fd5b505af11580156126ee573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612799906151d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280990615266565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128f0919061450f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561296d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612964906152f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d49061538a565b60405180910390fd5b60008114156129f7576129f283836000613828565b613690565b601160009054906101000a900460ff16156130ba57612a146118b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a825750612a526118b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612abb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612af5575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b0e5750600560149054906101000a900460ff16155b156130b957601160019054906101000a900460ff16612c0857602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bc85750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfe906153f6565b60405180910390fd5b5b601360009054906101000a900460ff1615612dd057612c256118b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612cac57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d0457507f000000000000000000000000aa563733f07f5c6cb3dc1e6ba5471b44f02bcb9e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612dcf5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d81906154ae565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e735750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a57600854811115612ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb490615540565b60405180910390fd5b600a54612ec983611372565b82612ed49190614a64565b1115612f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0c906155ac565b60405180910390fd5b6130b8565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fbd5750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561300c57600854811115613007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffe9061563e565b60405180910390fd5b6130b7565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130b657600a5461306983611372565b826130749190614a64565b11156130b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ac906155ac565b60405180910390fd5b5b5b5b5b5b60006130c530611372565b9050600060095482101590508080156130ea5750601160029054906101000a900460ff165b80156131035750600560149054906101000a900460ff16155b80156131595750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131af5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132055750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613249576001600560146101000a81548160ff02191690831515021790555061322d613aa9565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156132af5750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132c75750600c60009054906101000a900460ff165b80156132e25750600d54600e546132de9190614a64565b4210155b80156133385750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561334757613345613d90565b505b6000600560149054906101000a900460ff16159050602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133fd5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561340757600090505b6000811561368057602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561346a57506000601854115b15613537576134976064613489601854886137fc90919063ffffffff16565b61381290919063ffffffff16565b9050601854601a54826134aa9190614886565b6134b4919061490f565b601d60008282546134c59190614a64565b92505081905550601854601b54826134dd9190614886565b6134e7919061490f565b601e60008282546134f89190614a64565b92505081905550601854601954826135109190614886565b61351a919061490f565b601c600082825461352b9190614a64565b9250508190555061365c565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561359257506000601454115b1561365b576135bf60646135b1601454886137fc90919063ffffffff16565b61381290919063ffffffff16565b9050601454601654826135d29190614886565b6135dc919061490f565b601d60008282546135ed9190614a64565b92505081905550601454601754826136059190614886565b61360f919061490f565b601e60008282546136209190614a64565b92505081905550601454601554826136389190614886565b613642919061490f565b601c60008282546136539190614a64565b925050819055505b5b600081111561367157613670873083613828565b5b808561367d919061565e565b94505b61368b878787613828565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361380a9190614886565b905092915050565b60008183613820919061490f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388f906152f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ff9061538a565b60405180910390fd5b613913838383613f56565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399090615704565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a2c9190614a64565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a90919061450f565b60405180910390a3613aa3848484613f5b565b50505050565b6000613ab430611372565b90506000601e54601c54601d54613acb9190614a64565b613ad59190614a64565b9050600080831480613ae75750600082145b15613af457505050613d8e565b6014600954613b039190614886565b831115613b1c576014600954613b199190614886565b92505b6000600283601d5486613b2f9190614886565b613b39919061490f565b613b43919061490f565b90506000613b5a8286613f6090919063ffffffff16565b90506000479050613b6a82613f76565b6000613b7f8247613f6090919063ffffffff16565b90506000613baa87613b9c601c54856137fc90919063ffffffff16565b61381290919063ffffffff16565b90506000613bd588613bc7601e54866137fc90919063ffffffff16565b61381290919063ffffffff16565b90506000818385613be6919061565e565b613bf0919061565e565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c5090615755565b60006040518083038185875af1925050503d8060008114613c8d576040519150601f19603f3d011682016040523d82523d6000602084013e613c92565b606091505b505080985050600087118015613ca85750600081115b15613cf557613cb787826141b3565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613cec9392919061576a565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613d3b90615755565b60006040518083038185875af1925050503d8060008114613d78576040519150601f19603f3d011682016040523d82523d6000602084013e613d7d565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000aa563733f07f5c6cb3dc1e6ba5471b44f02bcb9e6040518263ffffffff1660e01b8152600401613df491906145b9565b602060405180830381865afa158015613e11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e359190615135565b90506000613e62612710613e54600b54856137fc90919063ffffffff16565b61381290919063ffffffff16565b90506000811115613e9b57613e9a7f000000000000000000000000aa563733f07f5c6cb3dc1e6ba5471b44f02bcb9e61dead83613828565b5b60007f000000000000000000000000aa563733f07f5c6cb3dc1e6ba5471b44f02bcb9e90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f0857600080fd5b505af1158015613f1c573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613f6e919061565e565b905092915050565b6000600267ffffffffffffffff811115613f9357613f926157a1565b5b604051908082528060200260200182016040528015613fc15781602001602082028036833780820191505090505b5090503081600081518110613fd957613fd86157d0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561407e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140a29190615814565b816001815181106140b6576140b56157d0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061411b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612732565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161417d95949392919061593a565b600060405180830381600087803b15801561419757600080fd5b505af11580156141ab573d6000803e3d6000fd5b505050505050565b6141de307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612732565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161424596959493929190615994565b60606040518083038185885af1158015614263573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061428891906159f5565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142c95780820151818401526020810190506142ae565b838111156142d8576000848401525b50505050565b6000601f19601f8301169050919050565b60006142fa8261428f565b614304818561429a565b93506143148185602086016142ab565b61431d816142de565b840191505092915050565b6000602082019050818103600083015261434281846142ef565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061437a8261434f565b9050919050565b61438a8161436f565b811461439557600080fd5b50565b6000813590506143a781614381565b92915050565b6000819050919050565b6143c0816143ad565b81146143cb57600080fd5b50565b6000813590506143dd816143b7565b92915050565b600080604083850312156143fa576143f961434a565b5b600061440885828601614398565b9250506020614419858286016143ce565b9150509250929050565b60008115159050919050565b61443881614423565b82525050565b6000602082019050614453600083018461442f565b92915050565b60006020828403121561446f5761446e61434a565b5b600061447d84828501614398565b91505092915050565b6000819050919050565b60006144ab6144a66144a18461434f565b614486565b61434f565b9050919050565b60006144bd82614490565b9050919050565b60006144cf826144b2565b9050919050565b6144df816144c4565b82525050565b60006020820190506144fa60008301846144d6565b92915050565b614509816143ad565b82525050565b60006020820190506145246000830184614500565b92915050565b6000602082840312156145405761453f61434a565b5b600061454e848285016143ce565b91505092915050565b6000806000606084860312156145705761456f61434a565b5b600061457e86828701614398565b935050602061458f86828701614398565b92505060406145a0868287016143ce565b9150509250925092565b6145b38161436f565b82525050565b60006020820190506145ce60008301846145aa565b92915050565b600060ff82169050919050565b6145ea816145d4565b82525050565b600060208201905061460560008301846145e1565b92915050565b61461481614423565b811461461f57600080fd5b50565b6000813590506146318161460b565b92915050565b6000806000606084860312156146505761464f61434a565b5b600061465e868287016143ce565b935050602061466f868287016143ce565b925050604061468086828701614622565b9150509250925092565b600080604083850312156146a1576146a061434a565b5b60006146af85828601614398565b92505060206146c085828601614622565b9150509250929050565b6000806000606084860312156146e3576146e261434a565b5b60006146f1868287016143ce565b9350506020614702868287016143ce565b9250506040614713868287016143ce565b9150509250925092565b6000602082840312156147335761473261434a565b5b600061474184828501614622565b91505092915050565b600080604083850312156147615761476061434a565b5b600061476f85828601614398565b925050602061478085828601614398565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806147d157607f821691505b602082108114156147e5576147e461478a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061482160208361429a565b915061482c826147eb565b602082019050919050565b6000602082019050818103600083015261485081614814565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614891826143ad565b915061489c836143ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148d5576148d4614857565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061491a826143ad565b9150614925836143ad565b925082614935576149346148e0565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061499c602f8361429a565b91506149a782614940565b604082019050919050565b600060208201905081810360008301526149cb8161498f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614a2e60288361429a565b9150614a39826149d2565b604082019050919050565b60006020820190508181036000830152614a5d81614a21565b9050919050565b6000614a6f826143ad565b9150614a7a836143ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614aaf57614aae614857565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614b1660338361429a565b9150614b2182614aba565b604082019050919050565b60006020820190508181036000830152614b4581614b09565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614ba860308361429a565b9150614bb382614b4c565b604082019050919050565b60006020820190508181036000830152614bd781614b9b565b9050919050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000614c14601d8361429a565b9150614c1f82614bde565b602082019050919050565b60006020820190508181036000830152614c4381614c07565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614ca660398361429a565b9150614cb182614c4a565b604082019050919050565b60006020820190508181036000830152614cd581614c99565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d3860258361429a565b9150614d4382614cdc565b604082019050919050565b60006020820190508181036000830152614d6781614d2b565b9050919050565b7f4d757374206b656570206665657320617420343025206f72206c657373000000600082015250565b6000614da4601d8361429a565b9150614daf82614d6e565b602082019050919050565b60006020820190508181036000830152614dd381614d97565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614e3660248361429a565b9150614e4182614dda565b604082019050919050565b60006020820190508181036000830152614e6581614e29565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614ec860358361429a565b9150614ed382614e6c565b604082019050919050565b60006020820190508181036000830152614ef781614ebb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614f5a60348361429a565b9150614f6582614efe565b604082019050919050565b60006020820190508181036000830152614f8981614f4d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614fec60268361429a565b9150614ff782614f90565b604082019050919050565b6000602082019050818103600083015261501b81614fdf565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061505860208361429a565b915061506382615022565b602082019050919050565b600060208201905081810360008301526150878161504b565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006150ea602a8361429a565b91506150f58261508e565b604082019050919050565b60006020820190508181036000830152615119816150dd565b9050919050565b60008151905061512f816143b7565b92915050565b60006020828403121561514b5761514a61434a565b5b600061515984828501615120565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006151be60248361429a565b91506151c982615162565b604082019050919050565b600060208201905081810360008301526151ed816151b1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061525060228361429a565b915061525b826151f4565b604082019050919050565b6000602082019050818103600083015261527f81615243565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006152e260258361429a565b91506152ed82615286565b604082019050919050565b60006020820190508181036000830152615311816152d5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061537460238361429a565b915061537f82615318565b604082019050919050565b600060208201905081810360008301526153a381615367565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006153e060168361429a565b91506153eb826153aa565b602082019050919050565b6000602082019050818103600083015261540f816153d3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061549860498361429a565b91506154a382615416565b606082019050919050565b600060208201905081810360008301526154c78161548b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061552a60358361429a565b9150615535826154ce565b604082019050919050565b600060208201905081810360008301526155598161551d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061559660138361429a565b91506155a182615560565b602082019050919050565b600060208201905081810360008301526155c581615589565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061562860368361429a565b9150615633826155cc565b604082019050919050565b600060208201905081810360008301526156578161561b565b9050919050565b6000615669826143ad565b9150615674836143ad565b92508282101561568757615686614857565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006156ee60268361429a565b91506156f982615692565b604082019050919050565b6000602082019050818103600083015261571d816156e1565b9050919050565b600081905092915050565b50565b600061573f600083615724565b915061574a8261572f565b600082019050919050565b600061576082615732565b9150819050919050565b600060608201905061577f6000830186614500565b61578c6020830185614500565b6157996040830184614500565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061580e81614381565b92915050565b60006020828403121561582a5761582961434a565b5b6000615838848285016157ff565b91505092915050565b6000819050919050565b600061586661586161585c84615841565b614486565b6143ad565b9050919050565b6158768161584b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6158b18161436f565b82525050565b60006158c383836158a8565b60208301905092915050565b6000602082019050919050565b60006158e78261587c565b6158f18185615887565b93506158fc83615898565b8060005b8381101561592d57815161591488826158b7565b975061591f836158cf565b925050600181019050615900565b5085935050505092915050565b600060a08201905061594f6000830188614500565b61595c602083018761586d565b818103604083015261596e81866158dc565b905061597d60608301856145aa565b61598a6080830184614500565b9695505050505050565b600060c0820190506159a960008301896145aa565b6159b66020830188614500565b6159c3604083018761586d565b6159d0606083018661586d565b6159dd60808301856145aa565b6159ea60a0830184614500565b979650505050505050565b600080600060608486031215615a0e57615a0d61434a565b5b6000615a1c86828701615120565b9350506020615a2d86828701615120565b9250506040615a3e86828701615120565b915050925092509256fea264697066735822122005fa57ffd9c1f17b5dc515ba2c72b4a7e336cf313d36fc9608fae88f32f8528164736f6c634300080a0033

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.