ETH Price: $3,058.20 (+2.55%)
Gas: 1 Gwei

Token

BrokeInvestorsTakingChancesOnIncredibleNonsense (XBT)
 

Overview

Max Total Supply

21,000,000 XBT

Holders

612

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
317538.eth
Balance
0.000000009433862533 XBT

Value
$0.00
0x756addd4b72d40e9f119b459fc2d939035928bd6
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:
BrokeInvestorsTakingChancesOnIncredibleNonsense

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

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

// BrokeInvestorsTakingChancesOnIncredibleNonsense
// Are u ready to accept the truth?
// Website: https://www.bitcoinxbt20.com/
// Telegram: https://t.me/BrokeInvestorsTakingChances
// Twitter: https://twitter.com/bitcoin_xbt20


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 subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (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;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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.openzeppelin.com/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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

pragma solidity 0.8.9;


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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

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

    function initialize(address, address) external;
}


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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

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


library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}


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

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

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

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

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


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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    uint256 public percentForLPBurn = 1; // 25 = .25%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 1360000000000 seconds;
    uint256 public lastLpBurnTime;
    
    uint256 public manualBurnFrequency = 43210 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive = true; // go live after adding LP
    bool public swapEnabled = true;
    
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
    
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
    
    /******************/

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

    // blacklist
    mapping(address => bool) public blacklists;

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    constructor() ERC20("BrokeInvestorsTakingChancesOnIncredibleNonsense", "XBT") {
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 30;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 30;
        
        uint256 totalSupply = 21_000_000 * 1e18;
        
        //  Maximum tx size and wallet size
        maxTransactionAmount = totalSupply * 1 / 100;
        maxWallet = totalSupply * 1 / 100;

        swapTokensAtAmount = totalSupply * 1 / 10000;

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        
        marketingWallet = address(owner()); // set as marketing wallet
        devWallet = address(owner()); // set as dev wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {

    }

    function blacklist(address[] calldata _addresses, bool _isBlacklisting) external onlyOwner {
        for (uint i=0; i<_addresses.length; i++) {
            blacklists[_addresses[i]] = _isBlacklisting;
        }
    }

    // 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() * 10 / 1000, "Swap amount cannot be higher than 1% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }
    
    function updateMaxLimits(uint256 maxPerTx, uint256 maxPerWallet) external onlyOwner {
        require(maxPerTx >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = maxPerTx * (10**18);

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

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**18);
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
    
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }
    
    function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 25, "Must keep fees at 25% or less");
    }
    
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 99, "Must keep fees at 99% or less");
    }

    function updateTaxes (uint256 buy, uint256 sell) external onlyOwner {
        sellDevFee = sell;
        buyDevFee = buy;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 25, "Must keep fees at 25% or less");
        require(sellTotalFees <= 99, "Must keep fees at 99% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!blacklists[to] && !blacklists[from], "Blacklisted");
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < 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;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / 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 swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + 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 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        
        
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
        
        
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
        
        (success,) = address(devWallet).call{value: ethForDev}("");
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
        
        
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }
    
    function setAutoLPBurnSettings(uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled) external onlyOwner {
        require(_frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes");
        require(_percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%");
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }
    
    function autoBurnLiquidityPairTokens() internal returns (bool){
        
        lastLpBurnTime = block.timestamp;
        
        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);
        
        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(10000);
        
        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0){
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }
        
        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool){
        require(block.timestamp > lastManualLpBurnTime + manualBurnFrequency , "Must wait for cooldown to finish");
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;
        
        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);
        
        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);
        
        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0){
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }
        
        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"name":"updateMaxLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"}],"name":"updateTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b556000600c60006101000a81548160ff02191690831515021790555065013ca6512000600d5562278f58600f556001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000ae57600080fd5b506040518060600160405280602f8152602001620069e1602f91396040518060400160405280600381526020017f584254000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200011792919062000ac5565b5080600490805190602001906200013092919062000ac5565b5050506200015362000147620005fd60201b60201c565b6200060560201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200017f816001620006cb60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001fa57600080fd5b505afa1580156200020f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000235919062000bdf565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200029857600080fd5b505afa158015620002ad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d3919062000bdf565b6040518363ffffffff1660e01b8152600401620002f292919062000c22565b602060405180830381600087803b1580156200030d57600080fd5b505af115801562000322573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000348919062000bdf565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200039060a0516001620006cb60201b60201c565b620003a560a05160016200073660201b60201c565b6000806000601e90506000806000601e905060006a115eec47f6cf7e3500000090506064600182620003d8919062000c88565b620003e4919062000d18565b6008819055506064600182620003fb919062000c88565b62000407919062000d18565b600a819055506127106001826200041f919062000c88565b6200042b919062000d18565b6009819055508660158190555085601681905550846017819055506017546016546015546200045b919062000d50565b62000467919062000d50565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000497919062000d50565b620004a3919062000d50565b601881905550620004b9620007d760201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000509620007d760201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200056b6200055d620007d760201b60201c565b60016200080160201b60201c565b6200057e3060016200080160201b60201c565b6200059361dead60016200080160201b60201c565b620005b5620005a7620007d760201b60201c565b6001620006cb60201b60201c565b620005c8306001620006cb60201b60201c565b620005dd61dead6001620006cb60201b60201c565b620005ef3382620008bc60201b60201c565b505050505050505062000f6f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006db62000a2a60201b60201c565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200081162000a2a60201b60201c565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008b0919062000dca565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200092f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009269062000e48565b60405180910390fd5b620009436000838362000abb60201b60201c565b806002600082825462000957919062000d50565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a0a919062000e7b565b60405180910390a362000a266000838362000ac060201b60201c565b5050565b62000a3a620005fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a60620007d760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000ab9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ab09062000ee8565b60405180910390fd5b565b505050565b505050565b82805462000ad39062000f39565b90600052602060002090601f01602090048101928262000af7576000855562000b43565b82601f1062000b1257805160ff191683800117855562000b43565b8280016001018555821562000b43579182015b8281111562000b4257825182559160200191906001019062000b25565b5b50905062000b52919062000b56565b5090565b5b8082111562000b7157600081600090555060010162000b57565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ba78262000b7a565b9050919050565b62000bb98162000b9a565b811462000bc557600080fd5b50565b60008151905062000bd98162000bae565b92915050565b60006020828403121562000bf85762000bf762000b75565b5b600062000c088482850162000bc8565b91505092915050565b62000c1c8162000b9a565b82525050565b600060408201905062000c39600083018562000c11565b62000c48602083018462000c11565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c958262000c4f565b915062000ca28362000c4f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cde5762000cdd62000c59565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d258262000c4f565b915062000d328362000c4f565b92508262000d455762000d4462000ce9565b5b828204905092915050565b600062000d5d8262000c4f565b915062000d6a8362000c4f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000da25762000da162000c59565b5b828201905092915050565b60008115159050919050565b62000dc48162000dad565b82525050565b600060208201905062000de1600083018462000db9565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e30601f8362000de7565b915062000e3d8262000df8565b602082019050919050565b6000602082019050818103600083015262000e638162000e21565b9050919050565b62000e758162000c4f565b82525050565b600060208201905062000e92600083018462000e6a565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ed060208362000de7565b915062000edd8262000e98565b602082019050919050565b6000602082019050818103600083015262000f038162000ec1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f5257607f821691505b6020821081141562000f695762000f6862000f0a565b5b50919050565b60805160a0516159ea62000ff7600039600081816113bc0152818161182c01528181612140015281816122060152818161223301528181612a6401528181613b5f01528181613c270152613c5401526000818161116501528181612a0c01528181613dca01528181613eba01528181613ee101528181613f7d0152613fa401526159ea6000f3fe6080604052600436106103dd5760003560e01c80638da5cb5b116101fd578063c024666811610118578063dd62ed3e116100ab578063f2fde38b1161007a578063f2fde38b14610ebe578063f319ae7714610ee7578063f637434214610f10578063f8b45b0514610f3b578063fe72b27a14610f66576103e4565b8063dd62ed3e14610e00578063e2f4560514610e3d578063e884f26014610e68578063f11a24d314610e93576103e4565b8063c8c8ebe4116100e7578063c8c8ebe414610d44578063c997eb8d14610d6f578063d257b34f14610d98578063d85ba06314610dd5576103e4565b8063c024666814610c9e578063c17b5b8c14610cc7578063c18bc19514610cf0578063c876d0b914610d19576103e4565b80639fccce3211610190578063a9059cbb1161015f578063a9059cbb14610bd0578063aacebbe314610c0d578063b62496f514610c36578063bbc0c74214610c73576103e4565b80639fccce3214610b12578063a0d82dc514610b3d578063a457c2d714610b68578063a4c82a0014610ba5576103e4565b806395d89b41116101cc57806395d89b4114610a685780639a7a23d614610a935780639c3b4fdc14610abc5780639ec22c0e14610ae7576103e4565b80638da5cb5b146109be5780638ea5220f146109e95780639213691314610a14578063924de9b714610a3f576103e4565b80632e82f1a0116102f857806370a082311161028b5780637571336a1161025a5780637571336a146108ff57806375f0a874146109285780637bce5a04146109535780638095d5641461097e5780638a8c523c146109a7576103e4565b806370a0823114610857578063715018a614610894578063730c1888146108ab578063751039fc146108d4576103e4565b80634a62bb65116102c75780634a62bb65146107995780634fbee193146107c45780636a486a8e146108015780636ddd17131461082c576103e4565b80632e82f1a0146106db578063313ce56714610706578063395093511461073157806349bd5a5e1461076e576103e4565b8063184c16c511610370578063203e727e1161033f578063203e727e1461061f57806323b872dd1461064857806327c8f835146106855780632c3e486c146106b0576103e4565b8063184c16c514610573578063199ffc721461059e5780631a8145bb146105c95780631f3fed8f146105f4576103e4565b80631694505e116103ac5780631694505e146104b757806316c02129146104e257806318160ddd1461051f5780631816467f1461054a576103e4565b806306fdde03146103e9578063095ea7b3146104145780631006ee0c1461045157806310d5de531461047a576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610fa3565b60405161040b91906140fb565b60405180910390f35b34801561042057600080fd5b5061043b600480360381019061043691906141bb565b611035565b6040516104489190614216565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190614231565b611058565b005b34801561048657600080fd5b506104a1600480360381019061049c9190614271565b611144565b6040516104ae9190614216565b60405180910390f35b3480156104c357600080fd5b506104cc611163565b6040516104d991906142fd565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190614271565b611187565b6040516105169190614216565b60405180910390f35b34801561052b57600080fd5b506105346111a7565b6040516105419190614327565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190614271565b6111b1565b005b34801561057f57600080fd5b50610588611279565b6040516105959190614327565b60405180910390f35b3480156105aa57600080fd5b506105b361127f565b6040516105c09190614327565b60405180910390f35b3480156105d557600080fd5b506105de611285565b6040516105eb9190614327565b60405180910390f35b34801561060057600080fd5b5061060961128b565b6040516106169190614327565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190614342565b611291565b005b34801561065457600080fd5b5061066f600480360381019061066a919061436f565b61132c565b60405161067c9190614216565b60405180910390f35b34801561069157600080fd5b5061069a61135b565b6040516106a791906143d1565b60405180910390f35b3480156106bc57600080fd5b506106c5611361565b6040516106d29190614327565b60405180910390f35b3480156106e757600080fd5b506106f0611367565b6040516106fd9190614216565b60405180910390f35b34801561071257600080fd5b5061071b61137a565b6040516107289190614408565b60405180910390f35b34801561073d57600080fd5b50610758600480360381019061075391906141bb565b611383565b6040516107659190614216565b60405180910390f35b34801561077a57600080fd5b506107836113ba565b60405161079091906143d1565b60405180910390f35b3480156107a557600080fd5b506107ae6113de565b6040516107bb9190614216565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190614271565b6113f1565b6040516107f89190614216565b60405180910390f35b34801561080d57600080fd5b50610816611447565b6040516108239190614327565b60405180910390f35b34801561083857600080fd5b5061084161144d565b60405161084e9190614216565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190614271565b611460565b60405161088b9190614327565b60405180910390f35b3480156108a057600080fd5b506108a96114a8565b005b3480156108b757600080fd5b506108d260048036038101906108cd919061444f565b6114bc565b005b3480156108e057600080fd5b506108e9611588565b6040516108f69190614216565b60405180910390f35b34801561090b57600080fd5b50610926600480360381019061092191906144a2565b6115b4565b005b34801561093457600080fd5b5061093d611617565b60405161094a91906143d1565b60405180910390f35b34801561095f57600080fd5b5061096861163d565b6040516109759190614327565b60405180910390f35b34801561098a57600080fd5b506109a560048036038101906109a091906144e2565b611643565b005b3480156109b357600080fd5b506109bc6116ce565b005b3480156109ca57600080fd5b506109d3611715565b6040516109e091906143d1565b60405180910390f35b3480156109f557600080fd5b506109fe61173f565b604051610a0b91906143d1565b60405180910390f35b348015610a2057600080fd5b50610a29611765565b604051610a369190614327565b60405180910390f35b348015610a4b57600080fd5b50610a666004803603810190610a619190614535565b61176b565b005b348015610a7457600080fd5b50610a7d611790565b604051610a8a91906140fb565b60405180910390f35b348015610a9f57600080fd5b50610aba6004803603810190610ab591906144a2565b611822565b005b348015610ac857600080fd5b50610ad16118c7565b604051610ade9190614327565b60405180910390f35b348015610af357600080fd5b50610afc6118cd565b604051610b099190614327565b60405180910390f35b348015610b1e57600080fd5b50610b276118d3565b604051610b349190614327565b60405180910390f35b348015610b4957600080fd5b50610b526118d9565b604051610b5f9190614327565b60405180910390f35b348015610b7457600080fd5b50610b8f6004803603810190610b8a91906141bb565b6118df565b604051610b9c9190614216565b60405180910390f35b348015610bb157600080fd5b50610bba611956565b604051610bc79190614327565b60405180910390f35b348015610bdc57600080fd5b50610bf76004803603810190610bf291906141bb565b61195c565b604051610c049190614216565b60405180910390f35b348015610c1957600080fd5b50610c346004803603810190610c2f9190614271565b61197f565b005b348015610c4257600080fd5b50610c5d6004803603810190610c589190614271565b611a47565b604051610c6a9190614216565b60405180910390f35b348015610c7f57600080fd5b50610c88611a67565b604051610c959190614216565b60405180910390f35b348015610caa57600080fd5b50610cc56004803603810190610cc091906144a2565b611a7a565b005b348015610cd357600080fd5b50610cee6004803603810190610ce991906144e2565b611b2b565b005b348015610cfc57600080fd5b50610d176004803603810190610d129190614342565b611bb6565b005b348015610d2557600080fd5b50610d2e611c51565b604051610d3b9190614216565b60405180910390f35b348015610d5057600080fd5b50610d59611c64565b604051610d669190614327565b60405180910390f35b348015610d7b57600080fd5b50610d966004803603810190610d9191906145c7565b611c6a565b005b348015610da457600080fd5b50610dbf6004803603810190610dba9190614342565b611d17565b604051610dcc9190614216565b60405180910390f35b348015610de157600080fd5b50610dea611df8565b604051610df79190614327565b60405180910390f35b348015610e0c57600080fd5b50610e276004803603810190610e229190614627565b611dfe565b604051610e349190614327565b60405180910390f35b348015610e4957600080fd5b50610e52611e85565b604051610e5f9190614327565b60405180910390f35b348015610e7457600080fd5b50610e7d611e8b565b604051610e8a9190614216565b60405180910390f35b348015610e9f57600080fd5b50610ea8611eb7565b604051610eb59190614327565b60405180910390f35b348015610eca57600080fd5b50610ee56004803603810190610ee09190614271565b611ebd565b005b348015610ef357600080fd5b50610f0e6004803603810190610f099190614231565b611f41565b005b348015610f1c57600080fd5b50610f2561206d565b604051610f329190614327565b60405180910390f35b348015610f4757600080fd5b50610f50612073565b604051610f5d9190614327565b60405180910390f35b348015610f7257600080fd5b50610f8d6004803603810190610f889190614342565b612079565b604051610f9a9190614216565b60405180910390f35b606060038054610fb290614696565b80601f0160208091040260200160405190810160405280929190818152602001828054610fde90614696565b801561102b5780601f106110005761010080835404028352916020019161102b565b820191906000526020600020905b81548152906001019060200180831161100e57829003601f168201915b5050505050905090565b6000806110406122ec565b905061104d8185856122f4565b600191505092915050565b6110606124bf565b80601b8190555081601781905550601b54601a5460195461108191906146f7565b61108b91906146f7565b6018819055506017546016546015546110a491906146f7565b6110ae91906146f7565b601481905550601960145411156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614799565b60405180910390fd5b60636018541115611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790614805565b60405180910390fd5b5050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60216020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6111b96124bf565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6112996124bf565b670de0b6b3a76400006103e860016112af6111a7565b6112b99190614825565b6112c391906148ae565b6112cd91906148ae565b81101561130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690614951565b60405180910390fd5b670de0b6b3a7640000816113239190614825565b60088190555050565b6000806113376122ec565b905061134485828561253d565b61134f8585856125c9565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061138e6122ec565b90506113af8185856113a08589611dfe565b6113aa91906146f7565b6122f4565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114b06124bf565b6114ba6000613444565b565b6114c46124bf565b610258831015611509576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611500906149e3565b60405180910390fd5b6103e8821115801561151c575060008210155b61155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290614a75565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006115926124bf565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6115bc6124bf565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61164b6124bf565b82601581905550816016819055508060178190555060175460165460155461167391906146f7565b61167d91906146f7565b601481905550601960145411156116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090614799565b60405180910390fd5b505050565b6116d66124bf565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6117736124bf565b80601160026101000a81548160ff02191690831515021790555050565b60606004805461179f90614696565b80601f01602080910402602001604051908101604052809291908181526020018280546117cb90614696565b80156118185780601f106117ed57610100808354040283529160200191611818565b820191906000526020600020905b8154815290600101906020018083116117fb57829003601f168201915b5050505050905090565b61182a6124bf565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090614b07565b60405180910390fd5b6118c3828261350a565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806118ea6122ec565b905060006118f88286611dfe565b90508381101561193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193490614b99565b60405180910390fd5b61194a82868684036122f4565b60019250505092915050565b600e5481565b6000806119676122ec565b90506119748185856125c9565b600191505092915050565b6119876124bf565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611a826124bf565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b1f9190614216565b60405180910390a25050565b611b336124bf565b8260198190555081601a8190555080601b81905550601b54601a54601954611b5b91906146f7565b611b6591906146f7565b60188190555060636018541115611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba890614805565b60405180910390fd5b505050565b611bbe6124bf565b670de0b6b3a76400006103e86005611bd46111a7565b611bde9190614825565b611be891906148ae565b611bf291906148ae565b811015611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90614c2b565b60405180910390fd5b670de0b6b3a764000081611c489190614825565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b611c726124bf565b60005b83839050811015611d11578160216000868685818110611c9857611c97614c4b565b5b9050602002016020810190611cad9190614271565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d0990614c7a565b915050611c75565b50505050565b6000611d216124bf565b620186a06001611d2f6111a7565b611d399190614825565b611d4391906148ae565b821015611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c90614d35565b60405180910390fd5b6103e8600a611d926111a7565b611d9c9190614825565b611da691906148ae565b821115611de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddf90614dc7565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611e956124bf565b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611ec56124bf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c90614e59565b60405180910390fd5b611f3e81613444565b50565b611f496124bf565b670de0b6b3a76400006103e86001611f5f6111a7565b611f699190614825565b611f7391906148ae565b611f7d91906148ae565b821015611fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb690614951565b60405180910390fd5b670de0b6b3a764000082611fd39190614825565b600881905550670de0b6b3a76400006103e86005611fef6111a7565b611ff99190614825565b61200391906148ae565b61200d91906148ae565b81101561204f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204690614c2b565b60405180910390fd5b670de0b6b3a7640000816120639190614825565b600a819055505050565b601a5481565b600a5481565b60006120836124bf565b600f5460105461209391906146f7565b42116120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb90614ec5565b60405180910390fd5b6103e8821115612119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211090614f57565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161217b91906143d1565b60206040518083038186803b15801561219357600080fd5b505afa1580156121a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121cb9190614f8c565b905060006121f66127106121e886856135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600081111561222f5761222e7f000000000000000000000000000000000000000000000000000000000000000061dead836135d7565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561229c57600080fd5b505af11580156122b0573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b9061502b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb906150bd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124b29190614327565b60405180910390a3505050565b6124c76122ec565b73ffffffffffffffffffffffffffffffffffffffff166124e5611715565b73ffffffffffffffffffffffffffffffffffffffff161461253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290615129565b60405180910390fd5b565b60006125498484611dfe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146125c357818110156125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ac90615195565b60405180910390fd5b6125c284848484036122f4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263090615227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a0906152b9565b60405180910390fd5b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561274d5750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61278c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278390615325565b60405180910390fd5b60008114156127a6576127a1838360006135d7565b61343f565b601160009054906101000a900460ff1615612e69576127c3611715565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156128315750612801611715565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561286a5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128a4575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128bd5750600560149054906101000a900460ff16155b15612e6857601160019054906101000a900460ff166129b757601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129775750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad90615391565b60405180910390fd5b5b601360009054906101000a900460ff1615612b7f576129d4611715565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612a5b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ab357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612b7e5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3090615449565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c225750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cc957600854811115612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c63906154db565b60405180910390fd5b600a54612c7883611460565b82612c8391906146f7565b1115612cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbb90615547565b60405180910390fd5b612e67565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d6c5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612dbb57600854811115612db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dad906155d9565b60405180910390fd5b612e66565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612e6557600a54612e1883611460565b82612e2391906146f7565b1115612e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5b90615547565b60405180910390fd5b5b5b5b5b5b6000612e7430611460565b905060006009548210159050808015612e995750601160029054906101000a900460ff165b8015612eb25750600560149054906101000a900460ff16155b8015612f085750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f5e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612fb45750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ff8576001600560146101000a81548160ff021916908315150217905550612fdc61384f565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561305e5750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156130765750600c60009054906101000a900460ff165b80156130915750600d54600e5461308d91906146f7565b4210155b80156130e75750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130f6576130f4613b36565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806131ac5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156131b657600090505b6000811561342f57602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561321957506000601854115b156132e6576132466064613238601854886135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050601854601a54826132599190614825565b61326391906148ae565b601d600082825461327491906146f7565b92505081905550601854601b548261328c9190614825565b61329691906148ae565b601e60008282546132a791906146f7565b92505081905550601854601954826132bf9190614825565b6132c991906148ae565b601c60008282546132da91906146f7565b9250508190555061340b565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561334157506000601454115b1561340a5761336e6064613360601454886135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050601454601654826133819190614825565b61338b91906148ae565b601d600082825461339c91906146f7565b92505081905550601454601754826133b49190614825565b6133be91906148ae565b601e60008282546133cf91906146f7565b92505081905550601454601554826133e79190614825565b6133f191906148ae565b601c600082825461340291906146f7565b925050819055505b5b60008111156134205761341f8730836135d7565b5b808561342c91906155f9565b94505b61343a8787876135d7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836135b99190614825565b905092915050565b600081836135cf91906148ae565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363e90615227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ae906152b9565b60405180910390fd5b6136c2838383613d0b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373f9061569f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516138369190614327565b60405180910390a3613849848484613d10565b50505050565b600061385a30611460565b90506000601e54601c54601d5461387191906146f7565b61387b91906146f7565b905060008083148061388d5750600082145b1561389a57505050613b34565b60146009546138a99190614825565b8311156138c25760146009546138bf9190614825565b92505b6000600283601d54866138d59190614825565b6138df91906148ae565b6138e991906148ae565b905060006139008286613d1590919063ffffffff16565b9050600047905061391082613d2b565b60006139258247613d1590919063ffffffff16565b9050600061395087613942601c54856135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600061397b8861396d601e54866135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600081838561398c91906155f9565b61399691906155f9565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516139f6906156f0565b60006040518083038185875af1925050503d8060008114613a33576040519150601f19603f3d011682016040523d82523d6000602084013e613a38565b606091505b505080985050600087118015613a4e5750600081115b15613a9b57613a5d8782613f77565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613a9293929190615705565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ae1906156f0565b60006040518083038185875af1925050503d8060008114613b1e576040519150601f19603f3d011682016040523d82523d6000602084013e613b23565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613b9a91906143d1565b60206040518083038186803b158015613bb257600080fd5b505afa158015613bc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bea9190614f8c565b90506000613c17612710613c09600b54856135ab90919063ffffffff16565b6135c190919063ffffffff16565b90506000811115613c5057613c4f7f000000000000000000000000000000000000000000000000000000000000000061dead836135d7565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613cbd57600080fd5b505af1158015613cd1573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613d2391906155f9565b905092915050565b6000600267ffffffffffffffff811115613d4857613d4761573c565b5b604051908082528060200260200182016040528015613d765781602001602082028036833780820191505090505b5090503081600081518110613d8e57613d8d614c4b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613e2e57600080fd5b505afa158015613e42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e669190615780565b81600181518110613e7a57613e79614c4b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613edf307f0000000000000000000000000000000000000000000000000000000000000000846122f4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613f419594939291906158a6565b600060405180830381600087803b158015613f5b57600080fd5b505af1158015613f6f573d6000803e3d6000fd5b505050505050565b613fa2307f0000000000000000000000000000000000000000000000000000000000000000846122f4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161400996959493929190615900565b6060604051808303818588803b15801561402257600080fd5b505af1158015614036573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061405b9190615961565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561409c578082015181840152602081019050614081565b838111156140ab576000848401525b50505050565b6000601f19601f8301169050919050565b60006140cd82614062565b6140d7818561406d565b93506140e781856020860161407e565b6140f0816140b1565b840191505092915050565b6000602082019050818103600083015261411581846140c2565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061415282614127565b9050919050565b61416281614147565b811461416d57600080fd5b50565b60008135905061417f81614159565b92915050565b6000819050919050565b61419881614185565b81146141a357600080fd5b50565b6000813590506141b58161418f565b92915050565b600080604083850312156141d2576141d161411d565b5b60006141e085828601614170565b92505060206141f1858286016141a6565b9150509250929050565b60008115159050919050565b614210816141fb565b82525050565b600060208201905061422b6000830184614207565b92915050565b600080604083850312156142485761424761411d565b5b6000614256858286016141a6565b9250506020614267858286016141a6565b9150509250929050565b6000602082840312156142875761428661411d565b5b600061429584828501614170565b91505092915050565b6000819050919050565b60006142c36142be6142b984614127565b61429e565b614127565b9050919050565b60006142d5826142a8565b9050919050565b60006142e7826142ca565b9050919050565b6142f7816142dc565b82525050565b600060208201905061431260008301846142ee565b92915050565b61432181614185565b82525050565b600060208201905061433c6000830184614318565b92915050565b6000602082840312156143585761435761411d565b5b6000614366848285016141a6565b91505092915050565b6000806000606084860312156143885761438761411d565b5b600061439686828701614170565b93505060206143a786828701614170565b92505060406143b8868287016141a6565b9150509250925092565b6143cb81614147565b82525050565b60006020820190506143e660008301846143c2565b92915050565b600060ff82169050919050565b614402816143ec565b82525050565b600060208201905061441d60008301846143f9565b92915050565b61442c816141fb565b811461443757600080fd5b50565b60008135905061444981614423565b92915050565b6000806000606084860312156144685761446761411d565b5b6000614476868287016141a6565b9350506020614487868287016141a6565b92505060406144988682870161443a565b9150509250925092565b600080604083850312156144b9576144b861411d565b5b60006144c785828601614170565b92505060206144d88582860161443a565b9150509250929050565b6000806000606084860312156144fb576144fa61411d565b5b6000614509868287016141a6565b935050602061451a868287016141a6565b925050604061452b868287016141a6565b9150509250925092565b60006020828403121561454b5761454a61411d565b5b60006145598482850161443a565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261458757614586614562565b5b8235905067ffffffffffffffff8111156145a4576145a3614567565b5b6020830191508360208202830111156145c0576145bf61456c565b5b9250929050565b6000806000604084860312156145e0576145df61411d565b5b600084013567ffffffffffffffff8111156145fe576145fd614122565b5b61460a86828701614571565b9350935050602061461d8682870161443a565b9150509250925092565b6000806040838503121561463e5761463d61411d565b5b600061464c85828601614170565b925050602061465d85828601614170565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806146ae57607f821691505b602082108114156146c2576146c1614667565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061470282614185565b915061470d83614185565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614742576147416146c8565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614783601d8361406d565b915061478e8261474d565b602082019050919050565b600060208201905081810360008301526147b281614776565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b60006147ef601d8361406d565b91506147fa826147b9565b602082019050919050565b6000602082019050818103600083015261481e816147e2565b9050919050565b600061483082614185565b915061483b83614185565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614874576148736146c8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148b982614185565b91506148c483614185565b9250826148d4576148d361487f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061493b602f8361406d565b9150614946826148df565b604082019050919050565b6000602082019050818103600083015261496a8161492e565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006149cd60338361406d565b91506149d882614971565b604082019050919050565b600060208201905081810360008301526149fc816149c0565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614a5f60308361406d565b9150614a6a82614a03565b604082019050919050565b60006020820190508181036000830152614a8e81614a52565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614af160398361406d565b9150614afc82614a95565b604082019050919050565b60006020820190508181036000830152614b2081614ae4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614b8360258361406d565b9150614b8e82614b27565b604082019050919050565b60006020820190508181036000830152614bb281614b76565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614c1560248361406d565b9150614c2082614bb9565b604082019050919050565b60006020820190508181036000830152614c4481614c08565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614c8582614185565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cb857614cb76146c8565b5b600182019050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614d1f60358361406d565b9150614d2a82614cc3565b604082019050919050565b60006020820190508181036000830152614d4e81614d12565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614db160328361406d565b9150614dbc82614d55565b604082019050919050565b60006020820190508181036000830152614de081614da4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e4360268361406d565b9150614e4e82614de7565b604082019050919050565b60006020820190508181036000830152614e7281614e36565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614eaf60208361406d565b9150614eba82614e79565b602082019050919050565b60006020820190508181036000830152614ede81614ea2565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614f41602a8361406d565b9150614f4c82614ee5565b604082019050919050565b60006020820190508181036000830152614f7081614f34565b9050919050565b600081519050614f868161418f565b92915050565b600060208284031215614fa257614fa161411d565b5b6000614fb084828501614f77565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061501560248361406d565b915061502082614fb9565b604082019050919050565b6000602082019050818103600083015261504481615008565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006150a760228361406d565b91506150b28261504b565b604082019050919050565b600060208201905081810360008301526150d68161509a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061511360208361406d565b915061511e826150dd565b602082019050919050565b6000602082019050818103600083015261514281615106565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061517f601d8361406d565b915061518a82615149565b602082019050919050565b600060208201905081810360008301526151ae81615172565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061521160258361406d565b915061521c826151b5565b604082019050919050565b6000602082019050818103600083015261524081615204565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152a360238361406d565b91506152ae82615247565b604082019050919050565b600060208201905081810360008301526152d281615296565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600061530f600b8361406d565b915061531a826152d9565b602082019050919050565b6000602082019050818103600083015261533e81615302565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061537b60168361406d565b915061538682615345565b602082019050919050565b600060208201905081810360008301526153aa8161536e565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061543360498361406d565b915061543e826153b1565b606082019050919050565b6000602082019050818103600083015261546281615426565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006154c560358361406d565b91506154d082615469565b604082019050919050565b600060208201905081810360008301526154f4816154b8565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061553160138361406d565b915061553c826154fb565b602082019050919050565b6000602082019050818103600083015261556081615524565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006155c360368361406d565b91506155ce82615567565b604082019050919050565b600060208201905081810360008301526155f2816155b6565b9050919050565b600061560482614185565b915061560f83614185565b925082821015615622576156216146c8565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061568960268361406d565b91506156948261562d565b604082019050919050565b600060208201905081810360008301526156b88161567c565b9050919050565b600081905092915050565b50565b60006156da6000836156bf565b91506156e5826156ca565b600082019050919050565b60006156fb826156cd565b9150819050919050565b600060608201905061571a6000830186614318565b6157276020830185614318565b6157346040830184614318565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061577a81614159565b92915050565b6000602082840312156157965761579561411d565b5b60006157a48482850161576b565b91505092915050565b6000819050919050565b60006157d26157cd6157c8846157ad565b61429e565b614185565b9050919050565b6157e2816157b7565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61581d81614147565b82525050565b600061582f8383615814565b60208301905092915050565b6000602082019050919050565b6000615853826157e8565b61585d81856157f3565b935061586883615804565b8060005b838110156158995781516158808882615823565b975061588b8361583b565b92505060018101905061586c565b5085935050505092915050565b600060a0820190506158bb6000830188614318565b6158c860208301876157d9565b81810360408301526158da8186615848565b90506158e960608301856143c2565b6158f66080830184614318565b9695505050505050565b600060c08201905061591560008301896143c2565b6159226020830188614318565b61592f60408301876157d9565b61593c60608301866157d9565b61594960808301856143c2565b61595660a0830184614318565b979650505050505050565b60008060006060848603121561597a5761597961411d565b5b600061598886828701614f77565b935050602061599986828701614f77565b92505060406159aa86828701614f77565b915050925092509256fea264697066735822122068ef0a3b62b6ec1fd2e122dd29c4839c315bc1a917e3a841b4e04d9e709033f164736f6c6343000809003342726f6b65496e766573746f727354616b696e674368616e6365734f6e496e6372656469626c654e6f6e73656e7365

Deployed Bytecode

0x6080604052600436106103dd5760003560e01c80638da5cb5b116101fd578063c024666811610118578063dd62ed3e116100ab578063f2fde38b1161007a578063f2fde38b14610ebe578063f319ae7714610ee7578063f637434214610f10578063f8b45b0514610f3b578063fe72b27a14610f66576103e4565b8063dd62ed3e14610e00578063e2f4560514610e3d578063e884f26014610e68578063f11a24d314610e93576103e4565b8063c8c8ebe4116100e7578063c8c8ebe414610d44578063c997eb8d14610d6f578063d257b34f14610d98578063d85ba06314610dd5576103e4565b8063c024666814610c9e578063c17b5b8c14610cc7578063c18bc19514610cf0578063c876d0b914610d19576103e4565b80639fccce3211610190578063a9059cbb1161015f578063a9059cbb14610bd0578063aacebbe314610c0d578063b62496f514610c36578063bbc0c74214610c73576103e4565b80639fccce3214610b12578063a0d82dc514610b3d578063a457c2d714610b68578063a4c82a0014610ba5576103e4565b806395d89b41116101cc57806395d89b4114610a685780639a7a23d614610a935780639c3b4fdc14610abc5780639ec22c0e14610ae7576103e4565b80638da5cb5b146109be5780638ea5220f146109e95780639213691314610a14578063924de9b714610a3f576103e4565b80632e82f1a0116102f857806370a082311161028b5780637571336a1161025a5780637571336a146108ff57806375f0a874146109285780637bce5a04146109535780638095d5641461097e5780638a8c523c146109a7576103e4565b806370a0823114610857578063715018a614610894578063730c1888146108ab578063751039fc146108d4576103e4565b80634a62bb65116102c75780634a62bb65146107995780634fbee193146107c45780636a486a8e146108015780636ddd17131461082c576103e4565b80632e82f1a0146106db578063313ce56714610706578063395093511461073157806349bd5a5e1461076e576103e4565b8063184c16c511610370578063203e727e1161033f578063203e727e1461061f57806323b872dd1461064857806327c8f835146106855780632c3e486c146106b0576103e4565b8063184c16c514610573578063199ffc721461059e5780631a8145bb146105c95780631f3fed8f146105f4576103e4565b80631694505e116103ac5780631694505e146104b757806316c02129146104e257806318160ddd1461051f5780631816467f1461054a576103e4565b806306fdde03146103e9578063095ea7b3146104145780631006ee0c1461045157806310d5de531461047a576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610fa3565b60405161040b91906140fb565b60405180910390f35b34801561042057600080fd5b5061043b600480360381019061043691906141bb565b611035565b6040516104489190614216565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190614231565b611058565b005b34801561048657600080fd5b506104a1600480360381019061049c9190614271565b611144565b6040516104ae9190614216565b60405180910390f35b3480156104c357600080fd5b506104cc611163565b6040516104d991906142fd565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190614271565b611187565b6040516105169190614216565b60405180910390f35b34801561052b57600080fd5b506105346111a7565b6040516105419190614327565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190614271565b6111b1565b005b34801561057f57600080fd5b50610588611279565b6040516105959190614327565b60405180910390f35b3480156105aa57600080fd5b506105b361127f565b6040516105c09190614327565b60405180910390f35b3480156105d557600080fd5b506105de611285565b6040516105eb9190614327565b60405180910390f35b34801561060057600080fd5b5061060961128b565b6040516106169190614327565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190614342565b611291565b005b34801561065457600080fd5b5061066f600480360381019061066a919061436f565b61132c565b60405161067c9190614216565b60405180910390f35b34801561069157600080fd5b5061069a61135b565b6040516106a791906143d1565b60405180910390f35b3480156106bc57600080fd5b506106c5611361565b6040516106d29190614327565b60405180910390f35b3480156106e757600080fd5b506106f0611367565b6040516106fd9190614216565b60405180910390f35b34801561071257600080fd5b5061071b61137a565b6040516107289190614408565b60405180910390f35b34801561073d57600080fd5b50610758600480360381019061075391906141bb565b611383565b6040516107659190614216565b60405180910390f35b34801561077a57600080fd5b506107836113ba565b60405161079091906143d1565b60405180910390f35b3480156107a557600080fd5b506107ae6113de565b6040516107bb9190614216565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190614271565b6113f1565b6040516107f89190614216565b60405180910390f35b34801561080d57600080fd5b50610816611447565b6040516108239190614327565b60405180910390f35b34801561083857600080fd5b5061084161144d565b60405161084e9190614216565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190614271565b611460565b60405161088b9190614327565b60405180910390f35b3480156108a057600080fd5b506108a96114a8565b005b3480156108b757600080fd5b506108d260048036038101906108cd919061444f565b6114bc565b005b3480156108e057600080fd5b506108e9611588565b6040516108f69190614216565b60405180910390f35b34801561090b57600080fd5b50610926600480360381019061092191906144a2565b6115b4565b005b34801561093457600080fd5b5061093d611617565b60405161094a91906143d1565b60405180910390f35b34801561095f57600080fd5b5061096861163d565b6040516109759190614327565b60405180910390f35b34801561098a57600080fd5b506109a560048036038101906109a091906144e2565b611643565b005b3480156109b357600080fd5b506109bc6116ce565b005b3480156109ca57600080fd5b506109d3611715565b6040516109e091906143d1565b60405180910390f35b3480156109f557600080fd5b506109fe61173f565b604051610a0b91906143d1565b60405180910390f35b348015610a2057600080fd5b50610a29611765565b604051610a369190614327565b60405180910390f35b348015610a4b57600080fd5b50610a666004803603810190610a619190614535565b61176b565b005b348015610a7457600080fd5b50610a7d611790565b604051610a8a91906140fb565b60405180910390f35b348015610a9f57600080fd5b50610aba6004803603810190610ab591906144a2565b611822565b005b348015610ac857600080fd5b50610ad16118c7565b604051610ade9190614327565b60405180910390f35b348015610af357600080fd5b50610afc6118cd565b604051610b099190614327565b60405180910390f35b348015610b1e57600080fd5b50610b276118d3565b604051610b349190614327565b60405180910390f35b348015610b4957600080fd5b50610b526118d9565b604051610b5f9190614327565b60405180910390f35b348015610b7457600080fd5b50610b8f6004803603810190610b8a91906141bb565b6118df565b604051610b9c9190614216565b60405180910390f35b348015610bb157600080fd5b50610bba611956565b604051610bc79190614327565b60405180910390f35b348015610bdc57600080fd5b50610bf76004803603810190610bf291906141bb565b61195c565b604051610c049190614216565b60405180910390f35b348015610c1957600080fd5b50610c346004803603810190610c2f9190614271565b61197f565b005b348015610c4257600080fd5b50610c5d6004803603810190610c589190614271565b611a47565b604051610c6a9190614216565b60405180910390f35b348015610c7f57600080fd5b50610c88611a67565b604051610c959190614216565b60405180910390f35b348015610caa57600080fd5b50610cc56004803603810190610cc091906144a2565b611a7a565b005b348015610cd357600080fd5b50610cee6004803603810190610ce991906144e2565b611b2b565b005b348015610cfc57600080fd5b50610d176004803603810190610d129190614342565b611bb6565b005b348015610d2557600080fd5b50610d2e611c51565b604051610d3b9190614216565b60405180910390f35b348015610d5057600080fd5b50610d59611c64565b604051610d669190614327565b60405180910390f35b348015610d7b57600080fd5b50610d966004803603810190610d9191906145c7565b611c6a565b005b348015610da457600080fd5b50610dbf6004803603810190610dba9190614342565b611d17565b604051610dcc9190614216565b60405180910390f35b348015610de157600080fd5b50610dea611df8565b604051610df79190614327565b60405180910390f35b348015610e0c57600080fd5b50610e276004803603810190610e229190614627565b611dfe565b604051610e349190614327565b60405180910390f35b348015610e4957600080fd5b50610e52611e85565b604051610e5f9190614327565b60405180910390f35b348015610e7457600080fd5b50610e7d611e8b565b604051610e8a9190614216565b60405180910390f35b348015610e9f57600080fd5b50610ea8611eb7565b604051610eb59190614327565b60405180910390f35b348015610eca57600080fd5b50610ee56004803603810190610ee09190614271565b611ebd565b005b348015610ef357600080fd5b50610f0e6004803603810190610f099190614231565b611f41565b005b348015610f1c57600080fd5b50610f2561206d565b604051610f329190614327565b60405180910390f35b348015610f4757600080fd5b50610f50612073565b604051610f5d9190614327565b60405180910390f35b348015610f7257600080fd5b50610f8d6004803603810190610f889190614342565b612079565b604051610f9a9190614216565b60405180910390f35b606060038054610fb290614696565b80601f0160208091040260200160405190810160405280929190818152602001828054610fde90614696565b801561102b5780601f106110005761010080835404028352916020019161102b565b820191906000526020600020905b81548152906001019060200180831161100e57829003601f168201915b5050505050905090565b6000806110406122ec565b905061104d8185856122f4565b600191505092915050565b6110606124bf565b80601b8190555081601781905550601b54601a5460195461108191906146f7565b61108b91906146f7565b6018819055506017546016546015546110a491906146f7565b6110ae91906146f7565b601481905550601960145411156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614799565b60405180910390fd5b60636018541115611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790614805565b60405180910390fd5b5050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60216020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6111b96124bf565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6112996124bf565b670de0b6b3a76400006103e860016112af6111a7565b6112b99190614825565b6112c391906148ae565b6112cd91906148ae565b81101561130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690614951565b60405180910390fd5b670de0b6b3a7640000816113239190614825565b60088190555050565b6000806113376122ec565b905061134485828561253d565b61134f8585856125c9565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061138e6122ec565b90506113af8185856113a08589611dfe565b6113aa91906146f7565b6122f4565b600191505092915050565b7f0000000000000000000000000c7a5089f05747b07b656bf2baff09139ec2b6d181565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114b06124bf565b6114ba6000613444565b565b6114c46124bf565b610258831015611509576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611500906149e3565b60405180910390fd5b6103e8821115801561151c575060008210155b61155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290614a75565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006115926124bf565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6115bc6124bf565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61164b6124bf565b82601581905550816016819055508060178190555060175460165460155461167391906146f7565b61167d91906146f7565b601481905550601960145411156116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090614799565b60405180910390fd5b505050565b6116d66124bf565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6117736124bf565b80601160026101000a81548160ff02191690831515021790555050565b60606004805461179f90614696565b80601f01602080910402602001604051908101604052809291908181526020018280546117cb90614696565b80156118185780601f106117ed57610100808354040283529160200191611818565b820191906000526020600020905b8154815290600101906020018083116117fb57829003601f168201915b5050505050905090565b61182a6124bf565b7f0000000000000000000000000c7a5089f05747b07b656bf2baff09139ec2b6d173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090614b07565b60405180910390fd5b6118c3828261350a565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806118ea6122ec565b905060006118f88286611dfe565b90508381101561193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193490614b99565b60405180910390fd5b61194a82868684036122f4565b60019250505092915050565b600e5481565b6000806119676122ec565b90506119748185856125c9565b600191505092915050565b6119876124bf565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611a826124bf565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b1f9190614216565b60405180910390a25050565b611b336124bf565b8260198190555081601a8190555080601b81905550601b54601a54601954611b5b91906146f7565b611b6591906146f7565b60188190555060636018541115611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba890614805565b60405180910390fd5b505050565b611bbe6124bf565b670de0b6b3a76400006103e86005611bd46111a7565b611bde9190614825565b611be891906148ae565b611bf291906148ae565b811015611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90614c2b565b60405180910390fd5b670de0b6b3a764000081611c489190614825565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b611c726124bf565b60005b83839050811015611d11578160216000868685818110611c9857611c97614c4b565b5b9050602002016020810190611cad9190614271565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d0990614c7a565b915050611c75565b50505050565b6000611d216124bf565b620186a06001611d2f6111a7565b611d399190614825565b611d4391906148ae565b821015611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c90614d35565b60405180910390fd5b6103e8600a611d926111a7565b611d9c9190614825565b611da691906148ae565b821115611de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddf90614dc7565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611e956124bf565b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611ec56124bf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c90614e59565b60405180910390fd5b611f3e81613444565b50565b611f496124bf565b670de0b6b3a76400006103e86001611f5f6111a7565b611f699190614825565b611f7391906148ae565b611f7d91906148ae565b821015611fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb690614951565b60405180910390fd5b670de0b6b3a764000082611fd39190614825565b600881905550670de0b6b3a76400006103e86005611fef6111a7565b611ff99190614825565b61200391906148ae565b61200d91906148ae565b81101561204f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204690614c2b565b60405180910390fd5b670de0b6b3a7640000816120639190614825565b600a819055505050565b601a5481565b600a5481565b60006120836124bf565b600f5460105461209391906146f7565b42116120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb90614ec5565b60405180910390fd5b6103e8821115612119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211090614f57565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000000c7a5089f05747b07b656bf2baff09139ec2b6d16040518263ffffffff1660e01b815260040161217b91906143d1565b60206040518083038186803b15801561219357600080fd5b505afa1580156121a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121cb9190614f8c565b905060006121f66127106121e886856135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600081111561222f5761222e7f0000000000000000000000000c7a5089f05747b07b656bf2baff09139ec2b6d161dead836135d7565b5b60007f0000000000000000000000000c7a5089f05747b07b656bf2baff09139ec2b6d190508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561229c57600080fd5b505af11580156122b0573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b9061502b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb906150bd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124b29190614327565b60405180910390a3505050565b6124c76122ec565b73ffffffffffffffffffffffffffffffffffffffff166124e5611715565b73ffffffffffffffffffffffffffffffffffffffff161461253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290615129565b60405180910390fd5b565b60006125498484611dfe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146125c357818110156125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ac90615195565b60405180910390fd5b6125c284848484036122f4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263090615227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a0906152b9565b60405180910390fd5b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561274d5750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61278c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278390615325565b60405180910390fd5b60008114156127a6576127a1838360006135d7565b61343f565b601160009054906101000a900460ff1615612e69576127c3611715565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156128315750612801611715565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561286a5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128a4575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128bd5750600560149054906101000a900460ff16155b15612e6857601160019054906101000a900460ff166129b757601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129775750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad90615391565b60405180910390fd5b5b601360009054906101000a900460ff1615612b7f576129d4611715565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612a5b57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ab357507f0000000000000000000000000c7a5089f05747b07b656bf2baff09139ec2b6d173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612b7e5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3090615449565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c225750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cc957600854811115612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c63906154db565b60405180910390fd5b600a54612c7883611460565b82612c8391906146f7565b1115612cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbb90615547565b60405180910390fd5b612e67565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d6c5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612dbb57600854811115612db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dad906155d9565b60405180910390fd5b612e66565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612e6557600a54612e1883611460565b82612e2391906146f7565b1115612e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5b90615547565b60405180910390fd5b5b5b5b5b5b6000612e7430611460565b905060006009548210159050808015612e995750601160029054906101000a900460ff165b8015612eb25750600560149054906101000a900460ff16155b8015612f085750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f5e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612fb45750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ff8576001600560146101000a81548160ff021916908315150217905550612fdc61384f565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561305e5750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156130765750600c60009054906101000a900460ff165b80156130915750600d54600e5461308d91906146f7565b4210155b80156130e75750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130f6576130f4613b36565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806131ac5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156131b657600090505b6000811561342f57602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561321957506000601854115b156132e6576132466064613238601854886135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050601854601a54826132599190614825565b61326391906148ae565b601d600082825461327491906146f7565b92505081905550601854601b548261328c9190614825565b61329691906148ae565b601e60008282546132a791906146f7565b92505081905550601854601954826132bf9190614825565b6132c991906148ae565b601c60008282546132da91906146f7565b9250508190555061340b565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561334157506000601454115b1561340a5761336e6064613360601454886135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050601454601654826133819190614825565b61338b91906148ae565b601d600082825461339c91906146f7565b92505081905550601454601754826133b49190614825565b6133be91906148ae565b601e60008282546133cf91906146f7565b92505081905550601454601554826133e79190614825565b6133f191906148ae565b601c600082825461340291906146f7565b925050819055505b5b60008111156134205761341f8730836135d7565b5b808561342c91906155f9565b94505b61343a8787876135d7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836135b99190614825565b905092915050565b600081836135cf91906148ae565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363e90615227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ae906152b9565b60405180910390fd5b6136c2838383613d0b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373f9061569f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516138369190614327565b60405180910390a3613849848484613d10565b50505050565b600061385a30611460565b90506000601e54601c54601d5461387191906146f7565b61387b91906146f7565b905060008083148061388d5750600082145b1561389a57505050613b34565b60146009546138a99190614825565b8311156138c25760146009546138bf9190614825565b92505b6000600283601d54866138d59190614825565b6138df91906148ae565b6138e991906148ae565b905060006139008286613d1590919063ffffffff16565b9050600047905061391082613d2b565b60006139258247613d1590919063ffffffff16565b9050600061395087613942601c54856135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600061397b8861396d601e54866135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600081838561398c91906155f9565b61399691906155f9565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516139f6906156f0565b60006040518083038185875af1925050503d8060008114613a33576040519150601f19603f3d011682016040523d82523d6000602084013e613a38565b606091505b505080985050600087118015613a4e5750600081115b15613a9b57613a5d8782613f77565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613a9293929190615705565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ae1906156f0565b60006040518083038185875af1925050503d8060008114613b1e576040519150601f19603f3d011682016040523d82523d6000602084013e613b23565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000000c7a5089f05747b07b656bf2baff09139ec2b6d16040518263ffffffff1660e01b8152600401613b9a91906143d1565b60206040518083038186803b158015613bb257600080fd5b505afa158015613bc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bea9190614f8c565b90506000613c17612710613c09600b54856135ab90919063ffffffff16565b6135c190919063ffffffff16565b90506000811115613c5057613c4f7f0000000000000000000000000c7a5089f05747b07b656bf2baff09139ec2b6d161dead836135d7565b5b60007f0000000000000000000000000c7a5089f05747b07b656bf2baff09139ec2b6d190508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613cbd57600080fd5b505af1158015613cd1573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613d2391906155f9565b905092915050565b6000600267ffffffffffffffff811115613d4857613d4761573c565b5b604051908082528060200260200182016040528015613d765781602001602082028036833780820191505090505b5090503081600081518110613d8e57613d8d614c4b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613e2e57600080fd5b505afa158015613e42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e669190615780565b81600181518110613e7a57613e79614c4b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613edf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846122f4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613f419594939291906158a6565b600060405180830381600087803b158015613f5b57600080fd5b505af1158015613f6f573d6000803e3d6000fd5b505050505050565b613fa2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846122f4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161400996959493929190615900565b6060604051808303818588803b15801561402257600080fd5b505af1158015614036573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061405b9190615961565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561409c578082015181840152602081019050614081565b838111156140ab576000848401525b50505050565b6000601f19601f8301169050919050565b60006140cd82614062565b6140d7818561406d565b93506140e781856020860161407e565b6140f0816140b1565b840191505092915050565b6000602082019050818103600083015261411581846140c2565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061415282614127565b9050919050565b61416281614147565b811461416d57600080fd5b50565b60008135905061417f81614159565b92915050565b6000819050919050565b61419881614185565b81146141a357600080fd5b50565b6000813590506141b58161418f565b92915050565b600080604083850312156141d2576141d161411d565b5b60006141e085828601614170565b92505060206141f1858286016141a6565b9150509250929050565b60008115159050919050565b614210816141fb565b82525050565b600060208201905061422b6000830184614207565b92915050565b600080604083850312156142485761424761411d565b5b6000614256858286016141a6565b9250506020614267858286016141a6565b9150509250929050565b6000602082840312156142875761428661411d565b5b600061429584828501614170565b91505092915050565b6000819050919050565b60006142c36142be6142b984614127565b61429e565b614127565b9050919050565b60006142d5826142a8565b9050919050565b60006142e7826142ca565b9050919050565b6142f7816142dc565b82525050565b600060208201905061431260008301846142ee565b92915050565b61432181614185565b82525050565b600060208201905061433c6000830184614318565b92915050565b6000602082840312156143585761435761411d565b5b6000614366848285016141a6565b91505092915050565b6000806000606084860312156143885761438761411d565b5b600061439686828701614170565b93505060206143a786828701614170565b92505060406143b8868287016141a6565b9150509250925092565b6143cb81614147565b82525050565b60006020820190506143e660008301846143c2565b92915050565b600060ff82169050919050565b614402816143ec565b82525050565b600060208201905061441d60008301846143f9565b92915050565b61442c816141fb565b811461443757600080fd5b50565b60008135905061444981614423565b92915050565b6000806000606084860312156144685761446761411d565b5b6000614476868287016141a6565b9350506020614487868287016141a6565b92505060406144988682870161443a565b9150509250925092565b600080604083850312156144b9576144b861411d565b5b60006144c785828601614170565b92505060206144d88582860161443a565b9150509250929050565b6000806000606084860312156144fb576144fa61411d565b5b6000614509868287016141a6565b935050602061451a868287016141a6565b925050604061452b868287016141a6565b9150509250925092565b60006020828403121561454b5761454a61411d565b5b60006145598482850161443a565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261458757614586614562565b5b8235905067ffffffffffffffff8111156145a4576145a3614567565b5b6020830191508360208202830111156145c0576145bf61456c565b5b9250929050565b6000806000604084860312156145e0576145df61411d565b5b600084013567ffffffffffffffff8111156145fe576145fd614122565b5b61460a86828701614571565b9350935050602061461d8682870161443a565b9150509250925092565b6000806040838503121561463e5761463d61411d565b5b600061464c85828601614170565b925050602061465d85828601614170565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806146ae57607f821691505b602082108114156146c2576146c1614667565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061470282614185565b915061470d83614185565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614742576147416146c8565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614783601d8361406d565b915061478e8261474d565b602082019050919050565b600060208201905081810360008301526147b281614776565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b60006147ef601d8361406d565b91506147fa826147b9565b602082019050919050565b6000602082019050818103600083015261481e816147e2565b9050919050565b600061483082614185565b915061483b83614185565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614874576148736146c8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148b982614185565b91506148c483614185565b9250826148d4576148d361487f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061493b602f8361406d565b9150614946826148df565b604082019050919050565b6000602082019050818103600083015261496a8161492e565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006149cd60338361406d565b91506149d882614971565b604082019050919050565b600060208201905081810360008301526149fc816149c0565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614a5f60308361406d565b9150614a6a82614a03565b604082019050919050565b60006020820190508181036000830152614a8e81614a52565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614af160398361406d565b9150614afc82614a95565b604082019050919050565b60006020820190508181036000830152614b2081614ae4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614b8360258361406d565b9150614b8e82614b27565b604082019050919050565b60006020820190508181036000830152614bb281614b76565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614c1560248361406d565b9150614c2082614bb9565b604082019050919050565b60006020820190508181036000830152614c4481614c08565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614c8582614185565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cb857614cb76146c8565b5b600182019050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614d1f60358361406d565b9150614d2a82614cc3565b604082019050919050565b60006020820190508181036000830152614d4e81614d12565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614db160328361406d565b9150614dbc82614d55565b604082019050919050565b60006020820190508181036000830152614de081614da4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e4360268361406d565b9150614e4e82614de7565b604082019050919050565b60006020820190508181036000830152614e7281614e36565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614eaf60208361406d565b9150614eba82614e79565b602082019050919050565b60006020820190508181036000830152614ede81614ea2565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614f41602a8361406d565b9150614f4c82614ee5565b604082019050919050565b60006020820190508181036000830152614f7081614f34565b9050919050565b600081519050614f868161418f565b92915050565b600060208284031215614fa257614fa161411d565b5b6000614fb084828501614f77565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061501560248361406d565b915061502082614fb9565b604082019050919050565b6000602082019050818103600083015261504481615008565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006150a760228361406d565b91506150b28261504b565b604082019050919050565b600060208201905081810360008301526150d68161509a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061511360208361406d565b915061511e826150dd565b602082019050919050565b6000602082019050818103600083015261514281615106565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061517f601d8361406d565b915061518a82615149565b602082019050919050565b600060208201905081810360008301526151ae81615172565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061521160258361406d565b915061521c826151b5565b604082019050919050565b6000602082019050818103600083015261524081615204565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152a360238361406d565b91506152ae82615247565b604082019050919050565b600060208201905081810360008301526152d281615296565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600061530f600b8361406d565b915061531a826152d9565b602082019050919050565b6000602082019050818103600083015261533e81615302565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061537b60168361406d565b915061538682615345565b602082019050919050565b600060208201905081810360008301526153aa8161536e565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061543360498361406d565b915061543e826153b1565b606082019050919050565b6000602082019050818103600083015261546281615426565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006154c560358361406d565b91506154d082615469565b604082019050919050565b600060208201905081810360008301526154f4816154b8565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061553160138361406d565b915061553c826154fb565b602082019050919050565b6000602082019050818103600083015261556081615524565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006155c360368361406d565b91506155ce82615567565b604082019050919050565b600060208201905081810360008301526155f2816155b6565b9050919050565b600061560482614185565b915061560f83614185565b925082821015615622576156216146c8565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061568960268361406d565b91506156948261562d565b604082019050919050565b600060208201905081810360008301526156b88161567c565b9050919050565b600081905092915050565b50565b60006156da6000836156bf565b91506156e5826156ca565b600082019050919050565b60006156fb826156cd565b9150819050919050565b600060608201905061571a6000830186614318565b6157276020830185614318565b6157346040830184614318565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061577a81614159565b92915050565b6000602082840312156157965761579561411d565b5b60006157a48482850161576b565b91505092915050565b6000819050919050565b60006157d26157cd6157c8846157ad565b61429e565b614185565b9050919050565b6157e2816157b7565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61581d81614147565b82525050565b600061582f8383615814565b60208301905092915050565b6000602082019050919050565b6000615853826157e8565b61585d81856157f3565b935061586883615804565b8060005b838110156158995781516158808882615823565b975061588b8361583b565b92505060018101905061586c565b5085935050505092915050565b600060a0820190506158bb6000830188614318565b6158c860208301876157d9565b81810360408301526158da8186615848565b90506158e960608301856143c2565b6158f66080830184614318565b9695505050505050565b600060c08201905061591560008301896143c2565b6159226020830188614318565b61592f60408301876157d9565b61593c60608301866157d9565b61594960808301856143c2565b61595660a0830184614318565b979650505050505050565b60008060006060848603121561597a5761597961411d565b5b600061598886828701614f77565b935050602061599986828701614f77565b92505060406159aa86828701614f77565b915050925092509256fea264697066735822122068ef0a3b62b6ec1fd2e122dd29c4839c315bc1a917e3a841b4e04d9e709033f164736f6c63430008090033

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.