ETH Price: $3,334.25 (+4.24%)

Token

xMERGE (xMERGE)
 

Overview

Max Total Supply

100,000,000 xMERGE

Holders

58

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,374,584.041782348879096996 xMERGE

Value
$0.00
0x9dc9b775d61548e8da526a3de0a86be71e327ddc
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:
xMERGE

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : token.sol
// 
// ------------------------
//Welcome to xMerge, the next evolutionary step in decentralized finance (DeFi) and cross-chain interoperability. Bridging the gap between various blockchains, xMerge stands as a beacon for seamless asset transfers, unmatched liquidity, and unparalleled user experience in the crypto world.
// ------------------------

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

// 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 _name;
    string _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.19;

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 xMERGE is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    bool private isSwapping;
    address public marketingWallet;
    address public devWallet;

    uint256 public maxPerTransaction;
    uint256 public swapTokensAtAmount;
    uint256 public maxAllowedPerWallet;

    uint256 public ratioForMarinePairCrematoryActions = 1;
    bool public isLPBurningEnabled = false;
    uint256 public AquaDuoEnzymaticFrequencyAnalytics = 1360000000000 seconds;
    uint256 public ApexAqueousAllianceOxidationChronicle;

    uint256 public manualCatalystFueledOxidationTimeline = 43210 minutes;
    uint256 public priorHumanCenteredCurrentCombustionMarker;

    bool public isLimitEnabled = true;
    bool public isTradingActive = true;
    bool public isSwapEnabled = true;

    mapping(address => uint256) private _holderLastTransferTimestamp;
    bool public transferDelayEnabled = true;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    uint256 public sellTax;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public buyTax;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

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

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

    // limitationArchive
    mapping(address => bool) public limitationArchives;

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

    constructor() ERC20("xMERGE", "xMERGE") {
        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 = 25;
        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 25;
        uint256 totalSupply = 100_000_000 * 1e18;
        // Whale prevention system (during first few blocks of launch)
        maxPerTransaction = (totalSupply * 50) / 10000;
        maxAllowedPerWallet = (totalSupply * 50) / 10000; // 0.5%
        swapTokensAtAmount = (totalSupply * 1) / 10000;
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTax = buyMarketingFee + buyLiquidityFee + buyDevFee;
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTax = 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(msg.sender, totalSupply);
    }

    // once enabled, can never be turned off
    function beginTrading() external onlyOwner {
        isTradingActive = true;
        isSwapEnabled = true;
        ApexAqueousAllianceOxidationChronicle = block.timestamp;
    }

    receive() external payable {}

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

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

    // disable Transfer delay - cannot be reenabled
    function removeTransferDelay() 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 updateMaxBuy(
        uint256 maxPerTx,
        uint256 maxPerWallet
    ) external onlyOwner {
        require(
            maxPerTx >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxPerTransaction lower than 0.1%"
        );
        maxPerTransaction = maxPerTx * (10 ** 18);

        require(
            maxPerWallet >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxAllowedPerWallet lower than 0.5%"
        );
        maxAllowedPerWallet = maxPerWallet * (10 ** 18);
    }

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

    function updatemaxPerWalletDuringInitialAmount(
        uint256 newNum
    ) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxAllowedPerWallet lower than 0.5%"
        );
        maxAllowedPerWallet = 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 {
        isSwapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTax = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTax <= 25, "Must keep fees at 25% or less");
    }

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

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

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[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;
    }

    function updateMarketingWallet(
        address newMarketingWallet
    ) external onlyOwner {
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        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(!limitationArchives[to] && !limitationArchives[from], "limitationArchiveed");

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

        if (isLimitEnabled) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !isSwapping
            ) {
                if (!isTradingActive) {
                    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 <= maxPerTransaction,
                        "Buy transfer amount exceeds the maxPerTransaction."
                    );
                    require(
                        amount + balanceOf(to) <= maxAllowedPerWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxPerTransaction,
                        "Sell transfer amount exceeds the maxPerTransaction."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxAllowedPerWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            isSwapping = false;
        }

        if (
            !isSwapping &&
            automatedMarketMakerPairs[to] &&
            isLPBurningEnabled &&
            block.timestamp >= ApexAqueousAllianceOxidationChronicle + AquaDuoEnzymaticFrequencyAnalytics &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !isSwapping;

        // 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] && sellTax > 0) {
                fees = amount.mul(sellTax).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTax;
                tokensForDev += (fees * sellDevFee) / sellTax;
                tokensForMarketing += (fees * sellMarketingFee) / sellTax;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTax > 0) {
                fees = amount.mul(buyTax).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTax;
                tokensForDev += (fees * buyDevFee) / buyTax;
                tokensForMarketing += (fees * buyMarketingFee) / buyTax;
            }

            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 bootAutomatedFluidicCouplePyroSettings(
        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%"
        );
        AquaDuoEnzymaticFrequencyAnalytics = _frequencyInSeconds;
        ratioForMarinePairCrematoryActions = _percent;
        isLPBurningEnabled = _Enabled;
    }

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

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

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        ApexAqueousAllianceOxidationChronicle = block.timestamp;

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

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(ratioForMarinePairCrematoryActions).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();
        return true;
    }

    function executeManualAquaticDuoTokenExtinction(
        uint256 percent
    ) external onlyOwner returns (bool) {
        require(
            block.timestamp > priorHumanCenteredCurrentCombustionMarker + manualCatalystFueledOxidationTimeline,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        priorHumanCenteredCurrentCombustionMarker = 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();
        return true;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ApexAqueousAllianceOxidationChronicle","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AquaDuoEnzymaticFrequencyAnalytics","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beginTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"bootAutomatedFluidicCouplePyroSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","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":[{"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":"uint256","name":"percent","type":"uint256"}],"name":"executeManualAquaticDuoTokenExtinction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isLPBurningEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_islimitationArchiveing","type":"bool"}],"name":"limitationArchive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"limitationArchives","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualCatalystFueledOxidationTimeline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAllowedPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","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":"priorHumanCenteredCurrentCombustionMarker","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ratioForMarinePairCrematoryActions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeTransferDelay","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":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[{"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":"updateMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","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"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updatemaxPerWalletDuringInitialAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b556000600c60006101000a81548160ff02191690831515021790555065013ca6512000600d5562278f58600f556001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000ae57600080fd5b506040518060400160405280600681526020017f784d4552474500000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f784d45524745000000000000000000000000000000000000000000000000000081525081600390816200012c919062000c88565b5080600490816200013e919062000c88565b5050506200016162000155620005dd60201b60201c565b620005e560201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200018d816001620006ab60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200020d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000233919062000dd9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200029b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c1919062000dd9565b6040518363ffffffff1660e01b8152600401620002e092919062000e1c565b6020604051808303816000875af115801562000300573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000326919062000dd9565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036e60a0516001620006ab60201b60201c565b6200038360a05160016200071660201b60201c565b60008060006019905060008060006019905060006a52b7d2dcc80cd2e40000009050612710603282620003b7919062000e78565b620003c3919062000ef2565b600881905550612710603282620003db919062000e78565b620003e7919062000ef2565b600a81905550612710600182620003ff919062000e78565b6200040b919062000ef2565b60098190555086601c8190555085601d8190555084601e81905550601e54601d54601c546200043b919062000f2a565b62000447919062000f2a565b601b81905550836018819055508260198190555081601a81905550601a5460195460185462000477919062000f2a565b62000483919062000f2a565b601781905550620004996200077160201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004e96200077160201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200054b6200053d6200077160201b60201c565b60016200079b60201b60201c565b6200055e3060016200079b60201b60201c565b6200057361dead60016200079b60201b60201c565b62000595620005876200077160201b60201c565b6001620006ab60201b60201c565b620005a8306001620006ab60201b60201c565b620005bd61dead6001620006ab60201b60201c565b620005cf33826200080660201b60201c565b505050505050505062001088565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006bb6200097360201b60201c565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007ab6200097360201b60201c565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000878576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200086f9062000fc6565b60405180910390fd5b6200088c6000838362000a0460201b60201c565b8060026000828254620008a0919062000f2a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000953919062000ff9565b60405180910390a36200096f6000838362000a0960201b60201c565b5050565b62000983620005dd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009a96200077160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f99062001066565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a9057607f821691505b60208210810362000aa65762000aa562000a48565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b107fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ad1565b62000b1c868362000ad1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b6962000b6362000b5d8462000b34565b62000b3e565b62000b34565b9050919050565b6000819050919050565b62000b858362000b48565b62000b9d62000b948262000b70565b84845462000ade565b825550505050565b600090565b62000bb462000ba5565b62000bc181848462000b7a565b505050565b5b8181101562000be95762000bdd60008262000baa565b60018101905062000bc7565b5050565b601f82111562000c385762000c028162000aac565b62000c0d8462000ac1565b8101602085101562000c1d578190505b62000c3562000c2c8562000ac1565b83018262000bc6565b50505b505050565b600082821c905092915050565b600062000c5d6000198460080262000c3d565b1980831691505092915050565b600062000c78838362000c4a565b9150826002028217905092915050565b62000c938262000a0e565b67ffffffffffffffff81111562000caf5762000cae62000a19565b5b62000cbb825462000a77565b62000cc882828562000bed565b600060209050601f83116001811462000d00576000841562000ceb578287015190505b62000cf7858262000c6a565b86555062000d67565b601f19841662000d108662000aac565b60005b8281101562000d3a5784890151825560018201915060208501945060208101905062000d13565b8683101562000d5a578489015162000d56601f89168262000c4a565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000da18262000d74565b9050919050565b62000db38162000d94565b811462000dbf57600080fd5b50565b60008151905062000dd38162000da8565b92915050565b60006020828403121562000df25762000df162000d6f565b5b600062000e028482850162000dc2565b91505092915050565b62000e168162000d94565b82525050565b600060408201905062000e33600083018562000e0b565b62000e42602083018462000e0b565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e858262000b34565b915062000e928362000b34565b925082820262000ea28162000b34565b9150828204841483151762000ebc5762000ebb62000e49565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000eff8262000b34565b915062000f0c8362000b34565b92508262000f1f5762000f1e62000ec3565b5b828204905092915050565b600062000f378262000b34565b915062000f448362000b34565b925082820190508082111562000f5f5762000f5e62000e49565b5b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fae601f8362000f65565b915062000fbb8262000f76565b602082019050919050565b6000602082019050818103600083015262000fe18162000f9f565b9050919050565b62000ff38162000b34565b82525050565b600060208201905062001010600083018462000fe8565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200104e60208362000f65565b91506200105b8262001016565b602082019050919050565b6000602082019050818103600083015262001081816200103f565b9050919050565b60805160a0516157086200111060003960008181611314015281816115de01528181611695015281816116c201528181611ba9015281816128dc0152818161395201528181613a0b0152613a380152600081816111650152818161288401528181613b8201528181613c6301528181613c8a01528181613d260152613d4d01526157086000f3fe6080604052600436106103dd5760003560e01c806392136913116101fd578063c53d4d5311610118578063e2f45605116100ab578063f2fde38b1161007a578063f2fde38b14610ebc578063f637434214610ee5578063f8686f0714610f10578063fa554d1f14610f3b578063fdbfe44714610f66576103e4565b8063e2f4560514610e10578063eab1c05d14610e3b578063f11a24d314610e66578063f1530b7a14610e91576103e4565b8063d6ecbf24116100e7578063d6ecbf2414610d52578063daf4f66e14610d7d578063db05e5cb14610da8578063dd62ed3e14610dd3576103e4565b8063c53d4d5314610c94578063c876d0b914610cbf578063cc1776d314610cea578063d257b34f14610d15576103e4565b8063a0d82dc511610190578063b62496f51161015f578063b62496f514610bee578063c024666814610c2b578063c17b5b8c14610c54578063c408c24514610c7d576103e4565b8063a0d82dc514610b20578063a457c2d714610b4b578063a9059cbb14610b88578063aacebbe314610bc5576103e4565b806395d89b41116101cc57806395d89b4114610a765780639a7a23d614610aa15780639c3b4fdc14610aca5780639fccce3214610af5576103e4565b806392136913146109ce578063924de9b7146109f957806394c8bbd614610a2257806395c39f2d14610a4d576103e4565b806349bd5a5e116102f857806370a082311161028b5780637b3c10301161025a5780637b3c1030146108fb5780637bce5a04146109245780638095d5641461094f5780638da5cb5b146109785780638ea5220f146109a3576103e4565b806370a0823114610853578063715018a6146108905780637571336a146108a757806375f0a874146108d0576103e4565b806350bf0ed2116102c757806350bf0ed2146107995780635638ef37146107c257806369a926a8146107eb5780636c93831b14610816576103e4565b806349bd5a5e146106db5780634b980d67146107065780634f7041a5146107315780634fbee1931461075c576103e4565b80631f3fed8f116103705780632d0870eb1161033f5780632d0870eb1461061d578063313ce56714610648578063351a964d14610673578063395093511461069e576103e4565b80631f3fed8f14610561578063203e727e1461058c57806323b872dd146105b557806327c8f835146105f2576103e4565b80631694505e116103ac5780631694505e146104b757806318160ddd146104e25780631816467f1461050d5780631a8145bb14610536576103e4565b806306fdde03146103e9578063095ea7b3146104145780631006ee0c1461045157806310d5de531461047a576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610fa3565b60405161040b9190613e8c565b60405180910390f35b34801561042057600080fd5b5061043b60048036038101906104369190613f4c565b611035565b6040516104489190613fa7565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190613fc2565b611058565b005b34801561048657600080fd5b506104a1600480360381019061049c9190614002565b611144565b6040516104ae9190613fa7565b60405180910390f35b3480156104c357600080fd5b506104cc611163565b6040516104d9919061408e565b60405180910390f35b3480156104ee57600080fd5b506104f7611187565b60405161050491906140b8565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190614002565b611191565b005b34801561054257600080fd5b5061054b6111dd565b60405161055891906140b8565b60405180910390f35b34801561056d57600080fd5b506105766111e3565b60405161058391906140b8565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae91906140d3565b6111e9565b005b3480156105c157600080fd5b506105dc60048036038101906105d79190614100565b611284565b6040516105e99190613fa7565b60405180910390f35b3480156105fe57600080fd5b506106076112b3565b6040516106149190614162565b60405180910390f35b34801561062957600080fd5b506106326112b9565b60405161063f91906140b8565b60405180910390f35b34801561065457600080fd5b5061065d6112bf565b60405161066a9190614199565b60405180910390f35b34801561067f57600080fd5b506106886112c8565b6040516106959190613fa7565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190613f4c565b6112db565b6040516106d29190613fa7565b60405180910390f35b3480156106e757600080fd5b506106f0611312565b6040516106fd9190614162565b60405180910390f35b34801561071257600080fd5b5061071b611336565b60405161072891906140b8565b60405180910390f35b34801561073d57600080fd5b5061074661133c565b60405161075391906140b8565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190614002565b611342565b6040516107909190613fa7565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb91906141e0565b611398565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190614298565b611464565b005b3480156107f757600080fd5b50610800611511565b60405161080d91906140b8565b60405180910390f35b34801561082257600080fd5b5061083d600480360381019061083891906140d3565b611517565b60405161084a9190613fa7565b60405180910390f35b34801561085f57600080fd5b5061087a60048036038101906108759190614002565b61174f565b60405161088791906140b8565b60405180910390f35b34801561089c57600080fd5b506108a5611797565b005b3480156108b357600080fd5b506108ce60048036038101906108c991906142f8565b6117ab565b005b3480156108dc57600080fd5b506108e561180e565b6040516108f29190614162565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d9190613fc2565b611834565b005b34801561093057600080fd5b50610939611960565b60405161094691906140b8565b60405180910390f35b34801561095b57600080fd5b5061097660048036038101906109719190614338565b611966565b005b34801561098457600080fd5b5061098d6119f1565b60405161099a9190614162565b60405180910390f35b3480156109af57600080fd5b506109b8611a1b565b6040516109c59190614162565b60405180910390f35b3480156109da57600080fd5b506109e3611a41565b6040516109f091906140b8565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b919061438b565b611a47565b005b348015610a2e57600080fd5b50610a37611a6c565b604051610a4491906140b8565b60405180910390f35b348015610a5957600080fd5b50610a746004803603810190610a6f91906140d3565b611a72565b005b348015610a8257600080fd5b50610a8b611b0d565b604051610a989190613e8c565b60405180910390f35b348015610aad57600080fd5b50610ac86004803603810190610ac391906142f8565b611b9f565b005b348015610ad657600080fd5b50610adf611c43565b604051610aec91906140b8565b60405180910390f35b348015610b0157600080fd5b50610b0a611c49565b604051610b1791906140b8565b60405180910390f35b348015610b2c57600080fd5b50610b35611c4f565b604051610b4291906140b8565b60405180910390f35b348015610b5757600080fd5b50610b726004803603810190610b6d9190613f4c565b611c55565b604051610b7f9190613fa7565b60405180910390f35b348015610b9457600080fd5b50610baf6004803603810190610baa9190613f4c565b611ccc565b604051610bbc9190613fa7565b60405180910390f35b348015610bd157600080fd5b50610bec6004803603810190610be79190614002565b611cef565b005b348015610bfa57600080fd5b50610c156004803603810190610c109190614002565b611d3b565b604051610c229190613fa7565b60405180910390f35b348015610c3757600080fd5b50610c526004803603810190610c4d91906142f8565b611d5b565b005b348015610c6057600080fd5b50610c7b6004803603810190610c769190614338565b611dbe565b005b348015610c8957600080fd5b50610c92611e49565b005b348015610ca057600080fd5b50610ca9611e90565b604051610cb69190613fa7565b60405180910390f35b348015610ccb57600080fd5b50610cd4611ea3565b604051610ce19190613fa7565b60405180910390f35b348015610cf657600080fd5b50610cff611eb6565b604051610d0c91906140b8565b60405180910390f35b348015610d2157600080fd5b50610d3c6004803603810190610d3791906140d3565b611ebc565b604051610d499190613fa7565b60405180910390f35b348015610d5e57600080fd5b50610d67611f9d565b604051610d7491906140b8565b60405180910390f35b348015610d8957600080fd5b50610d92611fa3565b604051610d9f9190613fa7565b60405180910390f35b348015610db457600080fd5b50610dbd611fb6565b604051610dca9190613fa7565b60405180910390f35b348015610ddf57600080fd5b50610dfa6004803603810190610df591906143b8565b611fe2565b604051610e0791906140b8565b60405180910390f35b348015610e1c57600080fd5b50610e25612069565b604051610e3291906140b8565b60405180910390f35b348015610e4757600080fd5b50610e5061206f565b604051610e5d91906140b8565b60405180910390f35b348015610e7257600080fd5b50610e7b612075565b604051610e8891906140b8565b60405180910390f35b348015610e9d57600080fd5b50610ea661207b565b604051610eb391906140b8565b60405180910390f35b348015610ec857600080fd5b50610ee36004803603810190610ede9190614002565b612081565b005b348015610ef157600080fd5b50610efa612104565b604051610f0791906140b8565b60405180910390f35b348015610f1c57600080fd5b50610f2561210a565b604051610f329190613fa7565b60405180910390f35b348015610f4757600080fd5b50610f50612136565b604051610f5d9190613fa7565b60405180910390f35b348015610f7257600080fd5b50610f8d6004803603810190610f889190614002565b612149565b604051610f9a9190613fa7565b60405180910390f35b606060038054610fb290614427565b80601f0160208091040260200160405190810160405280929190818152602001828054610fde90614427565b801561102b5780601f106110005761010080835404028352916020019161102b565b820191906000526020600020905b81548152906001019060200180831161100e57829003601f168201915b5050505050905090565b600080611040612169565b905061104d818585612171565b600191505092915050565b61106061233a565b80601a8190555081601e81905550601a546019546018546110819190614487565b61108b9190614487565b601781905550601e54601d54601c546110a49190614487565b6110ae9190614487565b601b819055506019601b5411156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614507565b60405180910390fd5b60636017541115611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790614573565b60405180910390fd5b5050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b61119961233a565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b60145481565b6111f161233a565b670de0b6b3a76400006103e86001611207611187565b6112119190614593565b61121b9190614604565b6112259190614604565b811015611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e906146a7565b60405180910390fd5b670de0b6b3a76400008161127b9190614593565b60088190555050565b60008061128f612169565b905061129c8582856123b8565b6112a7858585612444565b60019150509392505050565b61dead81565b600e5481565b60006012905090565b601160029054906101000a900460ff1681565b6000806112e6612169565b90506113078185856112f88589611fe2565b6113029190614487565b612171565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60085481565b601b5481565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6113a061233a565b6102588310156113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90614739565b60405180910390fd5b6103e882111580156113f8575060008210155b611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e906147cb565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b61146c61233a565b60005b8383905081101561150b578160216000868685818110611492576114916147eb565b5b90506020020160208101906114a79190614002565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806115039061481a565b91505061146f565b50505050565b600a5481565b600061152161233a565b600f546010546115319190614487565b4211611572576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611569906148ae565b60405180910390fd5b6103e88211156115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90614940565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016116199190614162565b602060405180830381865afa158015611636573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165a9190614975565b9050600061168561271061167786856132bc90919063ffffffff16565b6132d290919063ffffffff16565b905060008111156116be576116bd7f000000000000000000000000000000000000000000000000000000000000000061dead836132e8565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561172b57600080fd5b505af115801561173f573d6000803e3d6000fd5b5050505060019350505050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61179f61233a565b6117a9600061355e565b565b6117b361233a565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61183c61233a565b670de0b6b3a76400006103e86001611852611187565b61185c9190614593565b6118669190614604565b6118709190614604565b8210156118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a9906146a7565b60405180910390fd5b670de0b6b3a7640000826118c69190614593565b600881905550670de0b6b3a76400006103e860056118e2611187565b6118ec9190614593565b6118f69190614604565b6119009190614604565b811015611942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193990614a14565b60405180910390fd5b670de0b6b3a7640000816119569190614593565b600a819055505050565b601c5481565b61196e61233a565b82601c8190555081601d8190555080601e81905550601e54601d54601c546119969190614487565b6119a09190614487565b601b819055506019601b5411156119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e390614507565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60185481565b611a4f61233a565b80601160026101000a81548160ff02191690831515021790555050565b600d5481565b611a7a61233a565b670de0b6b3a76400006103e86005611a90611187565b611a9a9190614593565b611aa49190614604565b611aae9190614604565b811015611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae790614a14565b60405180910390fd5b670de0b6b3a764000081611b049190614593565b600a8190555050565b606060048054611b1c90614427565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4890614427565b8015611b955780601f10611b6a57610100808354040283529160200191611b95565b820191906000526020600020905b815481529060010190602001808311611b7857829003601f168201915b5050505050905090565b611ba761233a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90614aa6565b60405180910390fd5b611c3f8282613624565b5050565b601e5481565b60165481565b601a5481565b600080611c60612169565b90506000611c6e8286611fe2565b905083811015611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa90614b38565b60405180910390fd5b611cc08286868403612171565b60019250505092915050565b600080611cd7612169565b9050611ce4818585612444565b600191505092915050565b611cf761233a565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b611d6361233a565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611dc661233a565b826018819055508160198190555080601a81905550601a54601954601854611dee9190614487565b611df89190614487565b60178190555060636017541115611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90614573565b60405180910390fd5b505050565b611e5161233a565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b601160019054906101000a900460ff1681565b601360009054906101000a900460ff1681565b60175481565b6000611ec661233a565b620186a06001611ed4611187565b611ede9190614593565b611ee89190614604565b821015611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2190614bca565b60405180910390fd5b6103e8600a611f37611187565b611f419190614593565b611f4b9190614604565b821115611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8490614c5c565b60405180910390fd5b8160098190555060019050919050565b600b5481565b601160009054906101000a900460ff1681565b6000611fc061233a565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60105481565b601d5481565b600f5481565b61208961233a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ef90614cee565b60405180910390fd5b6121018161355e565b50565b60195481565b600061211461233a565b6000601360006101000a81548160ff0219169083151502179055506001905090565b600c60009054906101000a900460ff1681565b60216020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d790614d80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361224f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224690614e12565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161232d91906140b8565b60405180910390a3505050565b612342612169565b73ffffffffffffffffffffffffffffffffffffffff166123606119f1565b73ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90614e7e565b60405180910390fd5b565b60006123c48484611fe2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461243e5781811015612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242790614eea565b60405180910390fd5b61243d8484848403612171565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90614f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612522576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125199061500e565b60405180910390fd5b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125c65750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc9061507a565b60405180910390fd5b6000810361261e57612619838360006132e8565b6132b7565b601160009054906101000a900460ff1615612ce15761263b6119f1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126a957506126796119f1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126e25750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561271c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127355750600560149054906101000a900460ff16155b15612ce057601160019054906101000a900460ff1661282f57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127ef5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61282e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612825906150e6565b60405180910390fd5b5b601360009054906101000a900460ff16156129f75761284c6119f1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128d357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561292b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129f65743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106129b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a89061519e565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a9a5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b4157600854811115612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb90615230565b60405180910390fd5b600a54612af08361174f565b82612afb9190614487565b1115612b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b339061529c565b60405180910390fd5b612cdf565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612be45750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3357600854811115612c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c259061532e565b60405180910390fd5b612cde565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612cdd57600a54612c908361174f565b82612c9b9190614487565b1115612cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd39061529c565b60405180910390fd5b5b5b5b5b5b6000612cec3061174f565b905060006009548210159050808015612d115750601160029054906101000a900460ff165b8015612d2a5750600560149054906101000a900460ff16155b8015612d805750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612dd65750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e2c5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e70576001600560146101000a81548160ff021916908315150217905550612e5461367f565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612ed65750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612eee5750600c60009054906101000a900460ff165b8015612f095750600d54600e54612f059190614487565b4210155b8015612f5f5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f6e57612f6c613929565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130245750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561302e57600090505b600081156132a757602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561309157506000601754115b1561315e576130be60646130b0601754886132bc90919063ffffffff16565b6132d290919063ffffffff16565b9050601754601954826130d19190614593565b6130db9190614604565b601560008282546130ec9190614487565b92505081905550601754601a54826131049190614593565b61310e9190614604565b6016600082825461311f9190614487565b92505081905550601754601854826131379190614593565b6131419190614604565b601460008282546131529190614487565b92505081905550613283565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b957506000601b54115b15613282576131e660646131d8601b54886132bc90919063ffffffff16565b6132d290919063ffffffff16565b9050601b54601d54826131f99190614593565b6132039190614604565b601560008282546132149190614487565b92505081905550601b54601e548261322c9190614593565b6132369190614604565b601660008282546132479190614487565b92505081905550601b54601c548261325f9190614593565b6132699190614604565b6014600082825461327a9190614487565b925050819055505b5b6000811115613298576132978730836132e8565b5b80856132a4919061534e565b94505b6132b28787876132e8565b505050505b505050565b600081836132ca9190614593565b905092915050565b600081836132e09190614604565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334e90614f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036133c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133bd9061500e565b60405180910390fd5b6133d1838383613ac3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344e906153f4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161354591906140b8565b60405180910390a3613558848484613ac8565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600061368a3061174f565b905060006016546014546015546136a19190614487565b6136ab9190614487565b90506000808314806136bd5750600082145b156136ca57505050613927565b60146009546136d99190614593565b8311156136f25760146009546136ef9190614593565b92505b6000600283601554866137059190614593565b61370f9190614604565b6137199190614604565b905060006137308286613acd90919063ffffffff16565b9050600047905061374082613ae3565b60006137558247613acd90919063ffffffff16565b9050600061378087613772601454856132bc90919063ffffffff16565b6132d290919063ffffffff16565b905060006137ab8861379d601654866132bc90919063ffffffff16565b6132d290919063ffffffff16565b905060008183856137bc919061534e565b6137c6919061534e565b9050600060158190555060006014819055506000601681905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161382690615445565b60006040518083038185875af1925050503d8060008114613863576040519150601f19603f3d011682016040523d82523d6000602084013e613868565b606091505b50508098505060008711801561387e5750600081115b1561388e5761388d8782613d20565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516138d490615445565b60006040518083038185875af1925050503d8060008114613911576040519150601f19603f3d011682016040523d82523d6000602084013e613916565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161398d9190614162565b602060405180830381865afa1580156139aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139ce9190614975565b905060006139fb6127106139ed600b54856132bc90919063ffffffff16565b6132d290919063ffffffff16565b90506000811115613a3457613a337f000000000000000000000000000000000000000000000000000000000000000061dead836132e8565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613aa157600080fd5b505af1158015613ab5573d6000803e3d6000fd5b505050506001935050505090565b505050565b505050565b60008183613adb919061534e565b905092915050565b6000600267ffffffffffffffff811115613b0057613aff61545a565b5b604051908082528060200260200182016040528015613b2e5781602001602082028036833780820191505090505b5090503081600081518110613b4657613b456147eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613beb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c0f919061549e565b81600181518110613c2357613c226147eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c88307f000000000000000000000000000000000000000000000000000000000000000084612171565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613cea9594939291906155c4565b600060405180830381600087803b158015613d0457600080fd5b505af1158015613d18573d6000803e3d6000fd5b505050505050565b613d4b307f000000000000000000000000000000000000000000000000000000000000000084612171565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613db29695949392919061561e565b60606040518083038185885af1158015613dd0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613df5919061567f565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e36578082015181840152602081019050613e1b565b60008484015250505050565b6000601f19601f8301169050919050565b6000613e5e82613dfc565b613e688185613e07565b9350613e78818560208601613e18565b613e8181613e42565b840191505092915050565b60006020820190508181036000830152613ea68184613e53565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ee382613eb8565b9050919050565b613ef381613ed8565b8114613efe57600080fd5b50565b600081359050613f1081613eea565b92915050565b6000819050919050565b613f2981613f16565b8114613f3457600080fd5b50565b600081359050613f4681613f20565b92915050565b60008060408385031215613f6357613f62613eae565b5b6000613f7185828601613f01565b9250506020613f8285828601613f37565b9150509250929050565b60008115159050919050565b613fa181613f8c565b82525050565b6000602082019050613fbc6000830184613f98565b92915050565b60008060408385031215613fd957613fd8613eae565b5b6000613fe785828601613f37565b9250506020613ff885828601613f37565b9150509250929050565b60006020828403121561401857614017613eae565b5b600061402684828501613f01565b91505092915050565b6000819050919050565b600061405461404f61404a84613eb8565b61402f565b613eb8565b9050919050565b600061406682614039565b9050919050565b60006140788261405b565b9050919050565b6140888161406d565b82525050565b60006020820190506140a3600083018461407f565b92915050565b6140b281613f16565b82525050565b60006020820190506140cd60008301846140a9565b92915050565b6000602082840312156140e9576140e8613eae565b5b60006140f784828501613f37565b91505092915050565b60008060006060848603121561411957614118613eae565b5b600061412786828701613f01565b935050602061413886828701613f01565b925050604061414986828701613f37565b9150509250925092565b61415c81613ed8565b82525050565b60006020820190506141776000830184614153565b92915050565b600060ff82169050919050565b6141938161417d565b82525050565b60006020820190506141ae600083018461418a565b92915050565b6141bd81613f8c565b81146141c857600080fd5b50565b6000813590506141da816141b4565b92915050565b6000806000606084860312156141f9576141f8613eae565b5b600061420786828701613f37565b935050602061421886828701613f37565b9250506040614229868287016141cb565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261425857614257614233565b5b8235905067ffffffffffffffff81111561427557614274614238565b5b6020830191508360208202830111156142915761429061423d565b5b9250929050565b6000806000604084860312156142b1576142b0613eae565b5b600084013567ffffffffffffffff8111156142cf576142ce613eb3565b5b6142db86828701614242565b935093505060206142ee868287016141cb565b9150509250925092565b6000806040838503121561430f5761430e613eae565b5b600061431d85828601613f01565b925050602061432e858286016141cb565b9150509250929050565b60008060006060848603121561435157614350613eae565b5b600061435f86828701613f37565b935050602061437086828701613f37565b925050604061438186828701613f37565b9150509250925092565b6000602082840312156143a1576143a0613eae565b5b60006143af848285016141cb565b91505092915050565b600080604083850312156143cf576143ce613eae565b5b60006143dd85828601613f01565b92505060206143ee85828601613f01565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061443f57607f821691505b602082108103614452576144516143f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061449282613f16565b915061449d83613f16565b92508282019050808211156144b5576144b4614458565b5b92915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006144f1601d83613e07565b91506144fc826144bb565b602082019050919050565b60006020820190508181036000830152614520816144e4565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b600061455d601d83613e07565b915061456882614527565b602082019050919050565b6000602082019050818103600083015261458c81614550565b9050919050565b600061459e82613f16565b91506145a983613f16565b92508282026145b781613f16565b915082820484148315176145ce576145cd614458565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061460f82613f16565b915061461a83613f16565b92508261462a576146296145d5565b5b828204905092915050565b7f43616e6e6f7420736574206d61785065725472616e73616374696f6e206c6f7760008201527f6572207468616e20302e31250000000000000000000000000000000000000000602082015250565b6000614691602c83613e07565b915061469c82614635565b604082019050919050565b600060208201905081810360008301526146c081614684565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614723603383613e07565b915061472e826146c7565b604082019050919050565b6000602082019050818103600083015261475281614716565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b60006147b5603083613e07565b91506147c082614759565b604082019050919050565b600060208201905081810360008301526147e4816147a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061482582613f16565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361485757614856614458565b5b600182019050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614898602083613e07565b91506148a382614862565b602082019050919050565b600060208201905081810360008301526148c78161488b565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b600061492a602a83613e07565b9150614935826148ce565b604082019050919050565b600060208201905081810360008301526149598161491d565b9050919050565b60008151905061496f81613f20565b92915050565b60006020828403121561498b5761498a613eae565b5b600061499984828501614960565b91505092915050565b7f43616e6e6f7420736574206d6178416c6c6f77656450657257616c6c6574206c60008201527f6f776572207468616e20302e3525000000000000000000000000000000000000602082015250565b60006149fe602e83613e07565b9150614a09826149a2565b604082019050919050565b60006020820190508181036000830152614a2d816149f1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614a90603983613e07565b9150614a9b82614a34565b604082019050919050565b60006020820190508181036000830152614abf81614a83565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614b22602583613e07565b9150614b2d82614ac6565b604082019050919050565b60006020820190508181036000830152614b5181614b15565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614bb4603583613e07565b9150614bbf82614b58565b604082019050919050565b60006020820190508181036000830152614be381614ba7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614c46603283613e07565b9150614c5182614bea565b604082019050919050565b60006020820190508181036000830152614c7581614c39565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cd8602683613e07565b9150614ce382614c7c565b604082019050919050565b60006020820190508181036000830152614d0781614ccb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d6a602483613e07565b9150614d7582614d0e565b604082019050919050565b60006020820190508181036000830152614d9981614d5d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614dfc602283613e07565b9150614e0782614da0565b604082019050919050565b60006020820190508181036000830152614e2b81614def565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614e68602083613e07565b9150614e7382614e32565b602082019050919050565b60006020820190508181036000830152614e9781614e5b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614ed4601d83613e07565b9150614edf82614e9e565b602082019050919050565b60006020820190508181036000830152614f0381614ec7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f66602583613e07565b9150614f7182614f0a565b604082019050919050565b60006020820190508181036000830152614f9581614f59565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ff8602383613e07565b915061500382614f9c565b604082019050919050565b6000602082019050818103600083015261502781614feb565b9050919050565b7f6c696d69746174696f6e41726368697665656400000000000000000000000000600082015250565b6000615064601383613e07565b915061506f8261502e565b602082019050919050565b6000602082019050818103600083015261509381615057565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006150d0601683613e07565b91506150db8261509a565b602082019050919050565b600060208201905081810360008301526150ff816150c3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615188604983613e07565b915061519382615106565b606082019050919050565b600060208201905081810360008301526151b78161517b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785065725472616e73616374696f6e2e0000000000000000000000000000602082015250565b600061521a603283613e07565b9150615225826151be565b604082019050919050565b600060208201905081810360008301526152498161520d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615286601383613e07565b915061529182615250565b602082019050919050565b600060208201905081810360008301526152b581615279565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785065725472616e73616374696f6e2e00000000000000000000000000602082015250565b6000615318603383613e07565b9150615323826152bc565b604082019050919050565b600060208201905081810360008301526153478161530b565b9050919050565b600061535982613f16565b915061536483613f16565b925082820390508181111561537c5761537b614458565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006153de602683613e07565b91506153e982615382565b604082019050919050565b6000602082019050818103600083015261540d816153d1565b9050919050565b600081905092915050565b50565b600061542f600083615414565b915061543a8261541f565b600082019050919050565b600061545082615422565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061549881613eea565b92915050565b6000602082840312156154b4576154b3613eae565b5b60006154c284828501615489565b91505092915050565b6000819050919050565b60006154f06154eb6154e6846154cb565b61402f565b613f16565b9050919050565b615500816154d5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61553b81613ed8565b82525050565b600061554d8383615532565b60208301905092915050565b6000602082019050919050565b600061557182615506565b61557b8185615511565b935061558683615522565b8060005b838110156155b757815161559e8882615541565b97506155a983615559565b92505060018101905061558a565b5085935050505092915050565b600060a0820190506155d960008301886140a9565b6155e660208301876154f7565b81810360408301526155f88186615566565b90506156076060830185614153565b61561460808301846140a9565b9695505050505050565b600060c0820190506156336000830189614153565b61564060208301886140a9565b61564d60408301876154f7565b61565a60608301866154f7565b6156676080830185614153565b61567460a08301846140a9565b979650505050505050565b60008060006060848603121561569857615697613eae565b5b60006156a686828701614960565b93505060206156b786828701614960565b92505060406156c886828701614960565b915050925092509256fea264697066735822122040efc99970cc4735be3ba667f8f741ae8581f9d7aed987a19ef2b7bd32d7f76e64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106103dd5760003560e01c806392136913116101fd578063c53d4d5311610118578063e2f45605116100ab578063f2fde38b1161007a578063f2fde38b14610ebc578063f637434214610ee5578063f8686f0714610f10578063fa554d1f14610f3b578063fdbfe44714610f66576103e4565b8063e2f4560514610e10578063eab1c05d14610e3b578063f11a24d314610e66578063f1530b7a14610e91576103e4565b8063d6ecbf24116100e7578063d6ecbf2414610d52578063daf4f66e14610d7d578063db05e5cb14610da8578063dd62ed3e14610dd3576103e4565b8063c53d4d5314610c94578063c876d0b914610cbf578063cc1776d314610cea578063d257b34f14610d15576103e4565b8063a0d82dc511610190578063b62496f51161015f578063b62496f514610bee578063c024666814610c2b578063c17b5b8c14610c54578063c408c24514610c7d576103e4565b8063a0d82dc514610b20578063a457c2d714610b4b578063a9059cbb14610b88578063aacebbe314610bc5576103e4565b806395d89b41116101cc57806395d89b4114610a765780639a7a23d614610aa15780639c3b4fdc14610aca5780639fccce3214610af5576103e4565b806392136913146109ce578063924de9b7146109f957806394c8bbd614610a2257806395c39f2d14610a4d576103e4565b806349bd5a5e116102f857806370a082311161028b5780637b3c10301161025a5780637b3c1030146108fb5780637bce5a04146109245780638095d5641461094f5780638da5cb5b146109785780638ea5220f146109a3576103e4565b806370a0823114610853578063715018a6146108905780637571336a146108a757806375f0a874146108d0576103e4565b806350bf0ed2116102c757806350bf0ed2146107995780635638ef37146107c257806369a926a8146107eb5780636c93831b14610816576103e4565b806349bd5a5e146106db5780634b980d67146107065780634f7041a5146107315780634fbee1931461075c576103e4565b80631f3fed8f116103705780632d0870eb1161033f5780632d0870eb1461061d578063313ce56714610648578063351a964d14610673578063395093511461069e576103e4565b80631f3fed8f14610561578063203e727e1461058c57806323b872dd146105b557806327c8f835146105f2576103e4565b80631694505e116103ac5780631694505e146104b757806318160ddd146104e25780631816467f1461050d5780631a8145bb14610536576103e4565b806306fdde03146103e9578063095ea7b3146104145780631006ee0c1461045157806310d5de531461047a576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610fa3565b60405161040b9190613e8c565b60405180910390f35b34801561042057600080fd5b5061043b60048036038101906104369190613f4c565b611035565b6040516104489190613fa7565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190613fc2565b611058565b005b34801561048657600080fd5b506104a1600480360381019061049c9190614002565b611144565b6040516104ae9190613fa7565b60405180910390f35b3480156104c357600080fd5b506104cc611163565b6040516104d9919061408e565b60405180910390f35b3480156104ee57600080fd5b506104f7611187565b60405161050491906140b8565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190614002565b611191565b005b34801561054257600080fd5b5061054b6111dd565b60405161055891906140b8565b60405180910390f35b34801561056d57600080fd5b506105766111e3565b60405161058391906140b8565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae91906140d3565b6111e9565b005b3480156105c157600080fd5b506105dc60048036038101906105d79190614100565b611284565b6040516105e99190613fa7565b60405180910390f35b3480156105fe57600080fd5b506106076112b3565b6040516106149190614162565b60405180910390f35b34801561062957600080fd5b506106326112b9565b60405161063f91906140b8565b60405180910390f35b34801561065457600080fd5b5061065d6112bf565b60405161066a9190614199565b60405180910390f35b34801561067f57600080fd5b506106886112c8565b6040516106959190613fa7565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190613f4c565b6112db565b6040516106d29190613fa7565b60405180910390f35b3480156106e757600080fd5b506106f0611312565b6040516106fd9190614162565b60405180910390f35b34801561071257600080fd5b5061071b611336565b60405161072891906140b8565b60405180910390f35b34801561073d57600080fd5b5061074661133c565b60405161075391906140b8565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190614002565b611342565b6040516107909190613fa7565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb91906141e0565b611398565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190614298565b611464565b005b3480156107f757600080fd5b50610800611511565b60405161080d91906140b8565b60405180910390f35b34801561082257600080fd5b5061083d600480360381019061083891906140d3565b611517565b60405161084a9190613fa7565b60405180910390f35b34801561085f57600080fd5b5061087a60048036038101906108759190614002565b61174f565b60405161088791906140b8565b60405180910390f35b34801561089c57600080fd5b506108a5611797565b005b3480156108b357600080fd5b506108ce60048036038101906108c991906142f8565b6117ab565b005b3480156108dc57600080fd5b506108e561180e565b6040516108f29190614162565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d9190613fc2565b611834565b005b34801561093057600080fd5b50610939611960565b60405161094691906140b8565b60405180910390f35b34801561095b57600080fd5b5061097660048036038101906109719190614338565b611966565b005b34801561098457600080fd5b5061098d6119f1565b60405161099a9190614162565b60405180910390f35b3480156109af57600080fd5b506109b8611a1b565b6040516109c59190614162565b60405180910390f35b3480156109da57600080fd5b506109e3611a41565b6040516109f091906140b8565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b919061438b565b611a47565b005b348015610a2e57600080fd5b50610a37611a6c565b604051610a4491906140b8565b60405180910390f35b348015610a5957600080fd5b50610a746004803603810190610a6f91906140d3565b611a72565b005b348015610a8257600080fd5b50610a8b611b0d565b604051610a989190613e8c565b60405180910390f35b348015610aad57600080fd5b50610ac86004803603810190610ac391906142f8565b611b9f565b005b348015610ad657600080fd5b50610adf611c43565b604051610aec91906140b8565b60405180910390f35b348015610b0157600080fd5b50610b0a611c49565b604051610b1791906140b8565b60405180910390f35b348015610b2c57600080fd5b50610b35611c4f565b604051610b4291906140b8565b60405180910390f35b348015610b5757600080fd5b50610b726004803603810190610b6d9190613f4c565b611c55565b604051610b7f9190613fa7565b60405180910390f35b348015610b9457600080fd5b50610baf6004803603810190610baa9190613f4c565b611ccc565b604051610bbc9190613fa7565b60405180910390f35b348015610bd157600080fd5b50610bec6004803603810190610be79190614002565b611cef565b005b348015610bfa57600080fd5b50610c156004803603810190610c109190614002565b611d3b565b604051610c229190613fa7565b60405180910390f35b348015610c3757600080fd5b50610c526004803603810190610c4d91906142f8565b611d5b565b005b348015610c6057600080fd5b50610c7b6004803603810190610c769190614338565b611dbe565b005b348015610c8957600080fd5b50610c92611e49565b005b348015610ca057600080fd5b50610ca9611e90565b604051610cb69190613fa7565b60405180910390f35b348015610ccb57600080fd5b50610cd4611ea3565b604051610ce19190613fa7565b60405180910390f35b348015610cf657600080fd5b50610cff611eb6565b604051610d0c91906140b8565b60405180910390f35b348015610d2157600080fd5b50610d3c6004803603810190610d3791906140d3565b611ebc565b604051610d499190613fa7565b60405180910390f35b348015610d5e57600080fd5b50610d67611f9d565b604051610d7491906140b8565b60405180910390f35b348015610d8957600080fd5b50610d92611fa3565b604051610d9f9190613fa7565b60405180910390f35b348015610db457600080fd5b50610dbd611fb6565b604051610dca9190613fa7565b60405180910390f35b348015610ddf57600080fd5b50610dfa6004803603810190610df591906143b8565b611fe2565b604051610e0791906140b8565b60405180910390f35b348015610e1c57600080fd5b50610e25612069565b604051610e3291906140b8565b60405180910390f35b348015610e4757600080fd5b50610e5061206f565b604051610e5d91906140b8565b60405180910390f35b348015610e7257600080fd5b50610e7b612075565b604051610e8891906140b8565b60405180910390f35b348015610e9d57600080fd5b50610ea661207b565b604051610eb391906140b8565b60405180910390f35b348015610ec857600080fd5b50610ee36004803603810190610ede9190614002565b612081565b005b348015610ef157600080fd5b50610efa612104565b604051610f0791906140b8565b60405180910390f35b348015610f1c57600080fd5b50610f2561210a565b604051610f329190613fa7565b60405180910390f35b348015610f4757600080fd5b50610f50612136565b604051610f5d9190613fa7565b60405180910390f35b348015610f7257600080fd5b50610f8d6004803603810190610f889190614002565b612149565b604051610f9a9190613fa7565b60405180910390f35b606060038054610fb290614427565b80601f0160208091040260200160405190810160405280929190818152602001828054610fde90614427565b801561102b5780601f106110005761010080835404028352916020019161102b565b820191906000526020600020905b81548152906001019060200180831161100e57829003601f168201915b5050505050905090565b600080611040612169565b905061104d818585612171565b600191505092915050565b61106061233a565b80601a8190555081601e81905550601a546019546018546110819190614487565b61108b9190614487565b601781905550601e54601d54601c546110a49190614487565b6110ae9190614487565b601b819055506019601b5411156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614507565b60405180910390fd5b60636017541115611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790614573565b60405180910390fd5b5050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b61119961233a565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b60145481565b6111f161233a565b670de0b6b3a76400006103e86001611207611187565b6112119190614593565b61121b9190614604565b6112259190614604565b811015611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e906146a7565b60405180910390fd5b670de0b6b3a76400008161127b9190614593565b60088190555050565b60008061128f612169565b905061129c8582856123b8565b6112a7858585612444565b60019150509392505050565b61dead81565b600e5481565b60006012905090565b601160029054906101000a900460ff1681565b6000806112e6612169565b90506113078185856112f88589611fe2565b6113029190614487565b612171565b600191505092915050565b7f0000000000000000000000001a04d24c362ded4fbab80a979f90296741df523381565b60085481565b601b5481565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6113a061233a565b6102588310156113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90614739565b60405180910390fd5b6103e882111580156113f8575060008210155b611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e906147cb565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b61146c61233a565b60005b8383905081101561150b578160216000868685818110611492576114916147eb565b5b90506020020160208101906114a79190614002565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806115039061481a565b91505061146f565b50505050565b600a5481565b600061152161233a565b600f546010546115319190614487565b4211611572576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611569906148ae565b60405180910390fd5b6103e88211156115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90614940565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000001a04d24c362ded4fbab80a979f90296741df52336040518263ffffffff1660e01b81526004016116199190614162565b602060405180830381865afa158015611636573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165a9190614975565b9050600061168561271061167786856132bc90919063ffffffff16565b6132d290919063ffffffff16565b905060008111156116be576116bd7f0000000000000000000000001a04d24c362ded4fbab80a979f90296741df523361dead836132e8565b5b60007f0000000000000000000000001a04d24c362ded4fbab80a979f90296741df523390508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561172b57600080fd5b505af115801561173f573d6000803e3d6000fd5b5050505060019350505050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61179f61233a565b6117a9600061355e565b565b6117b361233a565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61183c61233a565b670de0b6b3a76400006103e86001611852611187565b61185c9190614593565b6118669190614604565b6118709190614604565b8210156118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a9906146a7565b60405180910390fd5b670de0b6b3a7640000826118c69190614593565b600881905550670de0b6b3a76400006103e860056118e2611187565b6118ec9190614593565b6118f69190614604565b6119009190614604565b811015611942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193990614a14565b60405180910390fd5b670de0b6b3a7640000816119569190614593565b600a819055505050565b601c5481565b61196e61233a565b82601c8190555081601d8190555080601e81905550601e54601d54601c546119969190614487565b6119a09190614487565b601b819055506019601b5411156119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e390614507565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60185481565b611a4f61233a565b80601160026101000a81548160ff02191690831515021790555050565b600d5481565b611a7a61233a565b670de0b6b3a76400006103e86005611a90611187565b611a9a9190614593565b611aa49190614604565b611aae9190614604565b811015611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae790614a14565b60405180910390fd5b670de0b6b3a764000081611b049190614593565b600a8190555050565b606060048054611b1c90614427565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4890614427565b8015611b955780601f10611b6a57610100808354040283529160200191611b95565b820191906000526020600020905b815481529060010190602001808311611b7857829003601f168201915b5050505050905090565b611ba761233a565b7f0000000000000000000000001a04d24c362ded4fbab80a979f90296741df523373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90614aa6565b60405180910390fd5b611c3f8282613624565b5050565b601e5481565b60165481565b601a5481565b600080611c60612169565b90506000611c6e8286611fe2565b905083811015611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa90614b38565b60405180910390fd5b611cc08286868403612171565b60019250505092915050565b600080611cd7612169565b9050611ce4818585612444565b600191505092915050565b611cf761233a565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b611d6361233a565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611dc661233a565b826018819055508160198190555080601a81905550601a54601954601854611dee9190614487565b611df89190614487565b60178190555060636017541115611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90614573565b60405180910390fd5b505050565b611e5161233a565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b601160019054906101000a900460ff1681565b601360009054906101000a900460ff1681565b60175481565b6000611ec661233a565b620186a06001611ed4611187565b611ede9190614593565b611ee89190614604565b821015611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2190614bca565b60405180910390fd5b6103e8600a611f37611187565b611f419190614593565b611f4b9190614604565b821115611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8490614c5c565b60405180910390fd5b8160098190555060019050919050565b600b5481565b601160009054906101000a900460ff1681565b6000611fc061233a565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60105481565b601d5481565b600f5481565b61208961233a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ef90614cee565b60405180910390fd5b6121018161355e565b50565b60195481565b600061211461233a565b6000601360006101000a81548160ff0219169083151502179055506001905090565b600c60009054906101000a900460ff1681565b60216020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d790614d80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361224f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224690614e12565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161232d91906140b8565b60405180910390a3505050565b612342612169565b73ffffffffffffffffffffffffffffffffffffffff166123606119f1565b73ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90614e7e565b60405180910390fd5b565b60006123c48484611fe2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461243e5781811015612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242790614eea565b60405180910390fd5b61243d8484848403612171565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90614f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612522576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125199061500e565b60405180910390fd5b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125c65750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc9061507a565b60405180910390fd5b6000810361261e57612619838360006132e8565b6132b7565b601160009054906101000a900460ff1615612ce15761263b6119f1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126a957506126796119f1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126e25750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561271c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127355750600560149054906101000a900460ff16155b15612ce057601160019054906101000a900460ff1661282f57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127ef5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61282e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612825906150e6565b60405180910390fd5b5b601360009054906101000a900460ff16156129f75761284c6119f1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128d357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561292b57507f0000000000000000000000001a04d24c362ded4fbab80a979f90296741df523373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129f65743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106129b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a89061519e565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a9a5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b4157600854811115612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb90615230565b60405180910390fd5b600a54612af08361174f565b82612afb9190614487565b1115612b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b339061529c565b60405180910390fd5b612cdf565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612be45750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3357600854811115612c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c259061532e565b60405180910390fd5b612cde565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612cdd57600a54612c908361174f565b82612c9b9190614487565b1115612cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd39061529c565b60405180910390fd5b5b5b5b5b5b6000612cec3061174f565b905060006009548210159050808015612d115750601160029054906101000a900460ff165b8015612d2a5750600560149054906101000a900460ff16155b8015612d805750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612dd65750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e2c5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e70576001600560146101000a81548160ff021916908315150217905550612e5461367f565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612ed65750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612eee5750600c60009054906101000a900460ff165b8015612f095750600d54600e54612f059190614487565b4210155b8015612f5f5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f6e57612f6c613929565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130245750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561302e57600090505b600081156132a757602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561309157506000601754115b1561315e576130be60646130b0601754886132bc90919063ffffffff16565b6132d290919063ffffffff16565b9050601754601954826130d19190614593565b6130db9190614604565b601560008282546130ec9190614487565b92505081905550601754601a54826131049190614593565b61310e9190614604565b6016600082825461311f9190614487565b92505081905550601754601854826131379190614593565b6131419190614604565b601460008282546131529190614487565b92505081905550613283565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b957506000601b54115b15613282576131e660646131d8601b54886132bc90919063ffffffff16565b6132d290919063ffffffff16565b9050601b54601d54826131f99190614593565b6132039190614604565b601560008282546132149190614487565b92505081905550601b54601e548261322c9190614593565b6132369190614604565b601660008282546132479190614487565b92505081905550601b54601c548261325f9190614593565b6132699190614604565b6014600082825461327a9190614487565b925050819055505b5b6000811115613298576132978730836132e8565b5b80856132a4919061534e565b94505b6132b28787876132e8565b505050505b505050565b600081836132ca9190614593565b905092915050565b600081836132e09190614604565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334e90614f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036133c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133bd9061500e565b60405180910390fd5b6133d1838383613ac3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344e906153f4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161354591906140b8565b60405180910390a3613558848484613ac8565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600061368a3061174f565b905060006016546014546015546136a19190614487565b6136ab9190614487565b90506000808314806136bd5750600082145b156136ca57505050613927565b60146009546136d99190614593565b8311156136f25760146009546136ef9190614593565b92505b6000600283601554866137059190614593565b61370f9190614604565b6137199190614604565b905060006137308286613acd90919063ffffffff16565b9050600047905061374082613ae3565b60006137558247613acd90919063ffffffff16565b9050600061378087613772601454856132bc90919063ffffffff16565b6132d290919063ffffffff16565b905060006137ab8861379d601654866132bc90919063ffffffff16565b6132d290919063ffffffff16565b905060008183856137bc919061534e565b6137c6919061534e565b9050600060158190555060006014819055506000601681905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161382690615445565b60006040518083038185875af1925050503d8060008114613863576040519150601f19603f3d011682016040523d82523d6000602084013e613868565b606091505b50508098505060008711801561387e5750600081115b1561388e5761388d8782613d20565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516138d490615445565b60006040518083038185875af1925050503d8060008114613911576040519150601f19603f3d011682016040523d82523d6000602084013e613916565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000001a04d24c362ded4fbab80a979f90296741df52336040518263ffffffff1660e01b815260040161398d9190614162565b602060405180830381865afa1580156139aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139ce9190614975565b905060006139fb6127106139ed600b54856132bc90919063ffffffff16565b6132d290919063ffffffff16565b90506000811115613a3457613a337f0000000000000000000000001a04d24c362ded4fbab80a979f90296741df523361dead836132e8565b5b60007f0000000000000000000000001a04d24c362ded4fbab80a979f90296741df523390508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613aa157600080fd5b505af1158015613ab5573d6000803e3d6000fd5b505050506001935050505090565b505050565b505050565b60008183613adb919061534e565b905092915050565b6000600267ffffffffffffffff811115613b0057613aff61545a565b5b604051908082528060200260200182016040528015613b2e5781602001602082028036833780820191505090505b5090503081600081518110613b4657613b456147eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613beb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c0f919061549e565b81600181518110613c2357613c226147eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c88307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612171565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613cea9594939291906155c4565b600060405180830381600087803b158015613d0457600080fd5b505af1158015613d18573d6000803e3d6000fd5b505050505050565b613d4b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612171565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613db29695949392919061561e565b60606040518083038185885af1158015613dd0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613df5919061567f565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e36578082015181840152602081019050613e1b565b60008484015250505050565b6000601f19601f8301169050919050565b6000613e5e82613dfc565b613e688185613e07565b9350613e78818560208601613e18565b613e8181613e42565b840191505092915050565b60006020820190508181036000830152613ea68184613e53565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ee382613eb8565b9050919050565b613ef381613ed8565b8114613efe57600080fd5b50565b600081359050613f1081613eea565b92915050565b6000819050919050565b613f2981613f16565b8114613f3457600080fd5b50565b600081359050613f4681613f20565b92915050565b60008060408385031215613f6357613f62613eae565b5b6000613f7185828601613f01565b9250506020613f8285828601613f37565b9150509250929050565b60008115159050919050565b613fa181613f8c565b82525050565b6000602082019050613fbc6000830184613f98565b92915050565b60008060408385031215613fd957613fd8613eae565b5b6000613fe785828601613f37565b9250506020613ff885828601613f37565b9150509250929050565b60006020828403121561401857614017613eae565b5b600061402684828501613f01565b91505092915050565b6000819050919050565b600061405461404f61404a84613eb8565b61402f565b613eb8565b9050919050565b600061406682614039565b9050919050565b60006140788261405b565b9050919050565b6140888161406d565b82525050565b60006020820190506140a3600083018461407f565b92915050565b6140b281613f16565b82525050565b60006020820190506140cd60008301846140a9565b92915050565b6000602082840312156140e9576140e8613eae565b5b60006140f784828501613f37565b91505092915050565b60008060006060848603121561411957614118613eae565b5b600061412786828701613f01565b935050602061413886828701613f01565b925050604061414986828701613f37565b9150509250925092565b61415c81613ed8565b82525050565b60006020820190506141776000830184614153565b92915050565b600060ff82169050919050565b6141938161417d565b82525050565b60006020820190506141ae600083018461418a565b92915050565b6141bd81613f8c565b81146141c857600080fd5b50565b6000813590506141da816141b4565b92915050565b6000806000606084860312156141f9576141f8613eae565b5b600061420786828701613f37565b935050602061421886828701613f37565b9250506040614229868287016141cb565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261425857614257614233565b5b8235905067ffffffffffffffff81111561427557614274614238565b5b6020830191508360208202830111156142915761429061423d565b5b9250929050565b6000806000604084860312156142b1576142b0613eae565b5b600084013567ffffffffffffffff8111156142cf576142ce613eb3565b5b6142db86828701614242565b935093505060206142ee868287016141cb565b9150509250925092565b6000806040838503121561430f5761430e613eae565b5b600061431d85828601613f01565b925050602061432e858286016141cb565b9150509250929050565b60008060006060848603121561435157614350613eae565b5b600061435f86828701613f37565b935050602061437086828701613f37565b925050604061438186828701613f37565b9150509250925092565b6000602082840312156143a1576143a0613eae565b5b60006143af848285016141cb565b91505092915050565b600080604083850312156143cf576143ce613eae565b5b60006143dd85828601613f01565b92505060206143ee85828601613f01565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061443f57607f821691505b602082108103614452576144516143f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061449282613f16565b915061449d83613f16565b92508282019050808211156144b5576144b4614458565b5b92915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006144f1601d83613e07565b91506144fc826144bb565b602082019050919050565b60006020820190508181036000830152614520816144e4565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b600061455d601d83613e07565b915061456882614527565b602082019050919050565b6000602082019050818103600083015261458c81614550565b9050919050565b600061459e82613f16565b91506145a983613f16565b92508282026145b781613f16565b915082820484148315176145ce576145cd614458565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061460f82613f16565b915061461a83613f16565b92508261462a576146296145d5565b5b828204905092915050565b7f43616e6e6f7420736574206d61785065725472616e73616374696f6e206c6f7760008201527f6572207468616e20302e31250000000000000000000000000000000000000000602082015250565b6000614691602c83613e07565b915061469c82614635565b604082019050919050565b600060208201905081810360008301526146c081614684565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614723603383613e07565b915061472e826146c7565b604082019050919050565b6000602082019050818103600083015261475281614716565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b60006147b5603083613e07565b91506147c082614759565b604082019050919050565b600060208201905081810360008301526147e4816147a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061482582613f16565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361485757614856614458565b5b600182019050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614898602083613e07565b91506148a382614862565b602082019050919050565b600060208201905081810360008301526148c78161488b565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b600061492a602a83613e07565b9150614935826148ce565b604082019050919050565b600060208201905081810360008301526149598161491d565b9050919050565b60008151905061496f81613f20565b92915050565b60006020828403121561498b5761498a613eae565b5b600061499984828501614960565b91505092915050565b7f43616e6e6f7420736574206d6178416c6c6f77656450657257616c6c6574206c60008201527f6f776572207468616e20302e3525000000000000000000000000000000000000602082015250565b60006149fe602e83613e07565b9150614a09826149a2565b604082019050919050565b60006020820190508181036000830152614a2d816149f1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614a90603983613e07565b9150614a9b82614a34565b604082019050919050565b60006020820190508181036000830152614abf81614a83565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614b22602583613e07565b9150614b2d82614ac6565b604082019050919050565b60006020820190508181036000830152614b5181614b15565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614bb4603583613e07565b9150614bbf82614b58565b604082019050919050565b60006020820190508181036000830152614be381614ba7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614c46603283613e07565b9150614c5182614bea565b604082019050919050565b60006020820190508181036000830152614c7581614c39565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cd8602683613e07565b9150614ce382614c7c565b604082019050919050565b60006020820190508181036000830152614d0781614ccb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d6a602483613e07565b9150614d7582614d0e565b604082019050919050565b60006020820190508181036000830152614d9981614d5d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614dfc602283613e07565b9150614e0782614da0565b604082019050919050565b60006020820190508181036000830152614e2b81614def565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614e68602083613e07565b9150614e7382614e32565b602082019050919050565b60006020820190508181036000830152614e9781614e5b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614ed4601d83613e07565b9150614edf82614e9e565b602082019050919050565b60006020820190508181036000830152614f0381614ec7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f66602583613e07565b9150614f7182614f0a565b604082019050919050565b60006020820190508181036000830152614f9581614f59565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ff8602383613e07565b915061500382614f9c565b604082019050919050565b6000602082019050818103600083015261502781614feb565b9050919050565b7f6c696d69746174696f6e41726368697665656400000000000000000000000000600082015250565b6000615064601383613e07565b915061506f8261502e565b602082019050919050565b6000602082019050818103600083015261509381615057565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006150d0601683613e07565b91506150db8261509a565b602082019050919050565b600060208201905081810360008301526150ff816150c3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615188604983613e07565b915061519382615106565b606082019050919050565b600060208201905081810360008301526151b78161517b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785065725472616e73616374696f6e2e0000000000000000000000000000602082015250565b600061521a603283613e07565b9150615225826151be565b604082019050919050565b600060208201905081810360008301526152498161520d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615286601383613e07565b915061529182615250565b602082019050919050565b600060208201905081810360008301526152b581615279565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785065725472616e73616374696f6e2e00000000000000000000000000602082015250565b6000615318603383613e07565b9150615323826152bc565b604082019050919050565b600060208201905081810360008301526153478161530b565b9050919050565b600061535982613f16565b915061536483613f16565b925082820390508181111561537c5761537b614458565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006153de602683613e07565b91506153e982615382565b604082019050919050565b6000602082019050818103600083015261540d816153d1565b9050919050565b600081905092915050565b50565b600061542f600083615414565b915061543a8261541f565b600082019050919050565b600061545082615422565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061549881613eea565b92915050565b6000602082840312156154b4576154b3613eae565b5b60006154c284828501615489565b91505092915050565b6000819050919050565b60006154f06154eb6154e6846154cb565b61402f565b613f16565b9050919050565b615500816154d5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61553b81613ed8565b82525050565b600061554d8383615532565b60208301905092915050565b6000602082019050919050565b600061557182615506565b61557b8185615511565b935061558683615522565b8060005b838110156155b757815161559e8882615541565b97506155a983615559565b92505060018101905061558a565b5085935050505092915050565b600060a0820190506155d960008301886140a9565b6155e660208301876154f7565b81810360408301526155f88186615566565b90506156076060830185614153565b61561460808301846140a9565b9695505050505050565b600060c0820190506156336000830189614153565b61564060208301886140a9565b61564d60408301876154f7565b61565a60608301866154f7565b6156676080830185614153565b61567460a08301846140a9565b979650505050505050565b60008060006060848603121561569857615697613eae565b5b60006156a686828701614960565b93505060206156b786828701614960565b92505060406156c886828701614960565b915050925092509256fea264697066735822122040efc99970cc4735be3ba667f8f741ae8581f9d7aed987a19ef2b7bd32d7f76e64736f6c63430008130033

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.