ETH Price: $3,253.24 (+2.13%)
Gas: 1 Gwei

Token

Womens World Cup Inu (WWCI)
 

Overview

Max Total Supply

32,000,000,000 WWCI

Holders

65

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
85,071,959.381243072436322369 WWCI

Value
$0.00
0xc151e642f368f775fb895e99df65df1e9a3f0b1e
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:
WomensWorldCupInu

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev 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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 2 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 default value returned by this function, unless
     * it's 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 {}
}

File 3 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 4 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 5 of 10 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 6 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// 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 7 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the 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 8 of 10 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

File 9 of 10 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IUniswapV2Router02 {
    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 swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

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

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

File 10 of 10 : WomensWorldCupInu.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.19;

/*
    WOMEN'S WORLD CUP INU
    $WWCI

    Website: https://womensworldcupinu.com
    Twitter: https://twitter.com/WWCUPINU
    Telegram: https://t.me/officialwomensworldcupinu
 */

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

import "./interfaces/IUniswapV2Factory.sol";
import "./interfaces/IUniswapV2Router02.sol";

contract WomensWorldCupInu is ERC20, Ownable {
    using Address for address payable;
    using SafeMath for uint;

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

    bool private swapping;

    address public marketingWallet;
    address public liquidityWallet;

    uint public maxTransactionAmount;
    uint public swapTokensAtAmount;
    uint public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    uint public launchBlock;
    uint private offlineBlocks = 25;

    uint public totalFees;
    uint public marketingFee;
    uint public liquidityFee;

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

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

    constructor() ERC20("Womens World Cup Inu", "WWCI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

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

        uint totalSupply = 32_000_000_000 * 1e18;

        maxTransactionAmount = totalSupply / 100;
        maxWallet = totalSupply * 3 / 200;
        swapTokensAtAmount = totalSupply / 1000;

        marketingFee = 1;
        liquidityFee = 1;
        totalFees = marketingFee + liquidityFee;

        marketingWallet = address(0xaB31C69965e48c9322263436C0D9C793584eDb26);
        liquidityWallet = address(0x244F8F4EA5c4Dd9f023Bd35F2BCBf3E5342Bd573);

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(marketingWallet, true);

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

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

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

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

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

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

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

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

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

    function recoverTokens(address _token) external onlyOwner {
        IERC20(_token).transfer(owner(), IERC20(_token).balanceOf(address(this)));
    }

    function rescueETH() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    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 updateWallets(address newMarketingWallet, address newLiquidityWallet)
        external
        onlyOwner
    {
        marketingWallet = newMarketingWallet;
        liquidityWallet = newLiquidityWallet;
    }

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

    function _transfer(
        address from,
        address to,
        uint amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

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

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

        uint contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && totalFees > 0) {
                if (launchBlock + offlineBlocks > block.number) {
                    fees = amount.mul(90).div(100);
                } else {
                    fees = amount.mul(totalFees).div(100);
                }
            }

            // on buy
            else if (automatedMarketMakerPairs[from] && totalFees > 0) {
                if (launchBlock + offlineBlocks > block.number) {
                    fees = amount.mul(90).div(100);
                } else {
                    fees = amount.mul(totalFees).div(100);
                }
            }

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

            amount -= fees;
        }

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

    function swapBack() private {
        uint contractBalance = balanceOf(address(this));

        if (contractBalance == 0) {
            return;
        }

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

        uint initialBalance = address(this).balance;
        swapTokensForETH(contractBalance);
        uint deltaBalance = address(this).balance - initialBalance;

        uint marketingAmount = deltaBalance * marketingFee / totalFees;
        if (marketingAmount > 0) payable(marketingWallet).sendValue(marketingAmount);
 
        uint liquidityAmount = deltaBalance - marketingAmount;
        if (liquidityAmount > 0) payable(liquidityWallet).sendValue(liquidityAmount);
    }

    function swapTokensForETH(uint amount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(address(this), address(uniswapV2Router), amount);
 
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp + 5 minutes
        );
    }

    receive() external payable {}
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"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":[{"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":"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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","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":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"address","name":"newMarketingWallet","type":"address"},{"internalType":"address","name":"newLiquidityWallet","type":"address"}],"name":"updateWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506019600d553480156200006757600080fd5b506040518060400160405280601481526020017f576f6d656e7320576f726c642043757020496e750000000000000000000000008152506040518060400160405280600481526020017f57574349000000000000000000000000000000000000000000000000000000008152508160039081620000e5919062000c36565b508060049081620000f7919062000c36565b5050506200011a6200010e6200058b60201b60201c565b6200059360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001468160016200065960201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050600060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f0919062000d87565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200025a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000280919062000d87565b6040518363ffffffff1660e01b81526004016200029f92919062000dca565b6020604051808303816000875af1158015620002bf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e5919062000d87565b90508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200032e8160016200065960201b60201c565b62000341816001620006c460201b60201c565b60006b6765c793fa10079d00000000905060648162000361919062000e55565b60088190555060c860038262000378919062000e8d565b62000384919062000e55565b600a819055506103e8816200039a919062000e55565b6009819055506001600f819055506001601081905550601054600f54620003c2919062000ed8565b600e8190555073ab31c69965e48c9322263436c0d9c793584edb26600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073244f8f4ea5c4dd9f023bd35f2bcbf3e5342bd573600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000494620004866200071f60201b60201c565b60016200074960201b60201c565b620004a73060016200074960201b60201c565b620004bc61dead60016200074960201b60201c565b620004f1600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200074960201b60201c565b62000513620005056200071f60201b60201c565b60016200065960201b60201c565b620005263060016200065960201b60201c565b6200053b61dead60016200065960201b60201c565b62000570600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200065960201b60201c565b620005823382620007b460201b60201c565b50505062001036565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006696200092160201b60201c565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007596200092160201b60201c565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000826576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200081d9062000f74565b60405180910390fd5b6200083a60008383620009b260201b60201c565b80600260008282546200084e919062000ed8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000901919062000fa7565b60405180910390a36200091d60008383620009b760201b60201c565b5050565b620009316200058b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009576200071f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620009b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009a79062001014565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a3e57607f821691505b60208210810362000a545762000a53620009f6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000abe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a7f565b62000aca868362000a7f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b1762000b1162000b0b8462000ae2565b62000aec565b62000ae2565b9050919050565b6000819050919050565b62000b338362000af6565b62000b4b62000b428262000b1e565b84845462000a8c565b825550505050565b600090565b62000b6262000b53565b62000b6f81848462000b28565b505050565b5b8181101562000b975762000b8b60008262000b58565b60018101905062000b75565b5050565b601f82111562000be65762000bb08162000a5a565b62000bbb8462000a6f565b8101602085101562000bcb578190505b62000be362000bda8562000a6f565b83018262000b74565b50505b505050565b600082821c905092915050565b600062000c0b6000198460080262000beb565b1980831691505092915050565b600062000c26838362000bf8565b9150826002028217905092915050565b62000c4182620009bc565b67ffffffffffffffff81111562000c5d5762000c5c620009c7565b5b62000c69825462000a25565b62000c7682828562000b9b565b600060209050601f83116001811462000cae576000841562000c99578287015190505b62000ca5858262000c18565b86555062000d15565b601f19841662000cbe8662000a5a565b60005b8281101562000ce85784890151825560018201915060208501945060208101905062000cc1565b8683101562000d08578489015162000d04601f89168262000bf8565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d4f8262000d22565b9050919050565b62000d618162000d42565b811462000d6d57600080fd5b50565b60008151905062000d818162000d56565b92915050565b60006020828403121562000da05762000d9f62000d1d565b5b600062000db08482850162000d70565b91505092915050565b62000dc48162000d42565b82525050565b600060408201905062000de1600083018562000db9565b62000df0602083018462000db9565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e628262000ae2565b915062000e6f8362000ae2565b92508262000e825762000e8162000df7565b5b828204905092915050565b600062000e9a8262000ae2565b915062000ea78362000ae2565b925082820262000eb78162000ae2565b9150828204841483151762000ed15762000ed062000e26565b5b5092915050565b600062000ee58262000ae2565b915062000ef28362000ae2565b925082820190508082111562000f0d5762000f0c62000e26565b5b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f5c601f8362000f13565b915062000f698262000f24565b602082019050919050565b6000602082019050818103600083015262000f8f8162000f4d565b9050919050565b62000fa18162000ae2565b82525050565b600060208201905062000fbe600083018462000f96565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ffc60208362000f13565b9150620010098262000fc4565b602082019050919050565b600060208201905081810360008301526200102f8162000fed565b9050919050565b60805160a051613ed56200107860003960008181610dd001526110bd015260008181610c3a0152818161288b0152818161296c01526129930152613ed56000f3fe60806040526004361061026b5760003560e01c806375f0a87411610144578063c0246668116100b6578063d46980161161007a578063d469801614610943578063dd62ed3e1461096e578063e2f45605146109ab578063e8ba854f146109d6578063f2fde38b146109ff578063f8b45b0514610a2857610272565b8063c02466681461085e578063c18bc19514610887578063c8c8ebe4146108b0578063d00efb2f146108db578063d257b34f1461090657610272565b806398118cb41161010857806398118cb4146107285780639a7a23d614610753578063a457c2d71461077c578063a9059cbb146107b9578063b62496f5146107f6578063bbc0c7421461083357610272565b806375f0a874146106675780638a8c523c146106925780638da5cb5b146106a9578063924de9b7146106d457806395d89b41146106fd57610272565b8063313ce567116101dd5780636b67c4df116101a15780636b67c4df146105695780636ddd17131461059457806370a08231146105bf578063715018a6146105fc578063751039fc146106135780637571336a1461063e57610272565b8063313ce5671461046e578063395093511461049957806349bd5a5e146104d65780634a62bb65146105015780634fbee1931461052c57610272565b80631694505e1161022f5780631694505e1461037057806318160ddd1461039b578063203e727e146103c657806320800a00146103ef57806323b872dd1461040657806327c8f8351461044357610272565b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102df57806313114a9d1461031c57806316114acd1461034757610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a53565b6040516102999190612bba565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612c75565b610ae5565b6040516102d69190612cd0565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612ceb565b610b08565b6040516103139190612cd0565b60405180910390f35b34801561032857600080fd5b50610331610b28565b60405161033e9190612d27565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612ceb565b610b2e565b005b34801561037c57600080fd5b50610385610c38565b6040516103929190612da1565b60405180910390f35b3480156103a757600080fd5b506103b0610c5c565b6040516103bd9190612d27565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e89190612dbc565b610c66565b005b3480156103fb57600080fd5b50610404610d01565b005b34801561041257600080fd5b5061042d60048036038101906104289190612de9565b610d59565b60405161043a9190612cd0565b60405180910390f35b34801561044f57600080fd5b50610458610d88565b6040516104659190612e4b565b60405180910390f35b34801561047a57600080fd5b50610483610d8e565b6040516104909190612e82565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190612c75565b610d97565b6040516104cd9190612cd0565b60405180910390f35b3480156104e257600080fd5b506104eb610dce565b6040516104f89190612e4b565b60405180910390f35b34801561050d57600080fd5b50610516610df2565b6040516105239190612cd0565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190612ceb565b610e05565b6040516105609190612cd0565b60405180910390f35b34801561057557600080fd5b5061057e610e5b565b60405161058b9190612d27565b60405180910390f35b3480156105a057600080fd5b506105a9610e61565b6040516105b69190612cd0565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e19190612ceb565b610e74565b6040516105f39190612d27565b60405180910390f35b34801561060857600080fd5b50610611610ebc565b005b34801561061f57600080fd5b50610628610ed0565b6040516106359190612cd0565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190612ec9565b610efc565b005b34801561067357600080fd5b5061067c610f5f565b6040516106899190612e4b565b60405180910390f35b34801561069e57600080fd5b506106a7610f85565b005b3480156106b557600080fd5b506106be610fcc565b6040516106cb9190612e4b565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f69190612f09565b610ff6565b005b34801561070957600080fd5b5061071261101b565b60405161071f9190612bba565b60405180910390f35b34801561073457600080fd5b5061073d6110ad565b60405161074a9190612d27565b60405180910390f35b34801561075f57600080fd5b5061077a60048036038101906107759190612ec9565b6110b3565b005b34801561078857600080fd5b506107a3600480360381019061079e9190612c75565b611157565b6040516107b09190612cd0565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db9190612c75565b6111ce565b6040516107ed9190612cd0565b60405180910390f35b34801561080257600080fd5b5061081d60048036038101906108189190612ceb565b6111f1565b60405161082a9190612cd0565b60405180910390f35b34801561083f57600080fd5b50610848611211565b6040516108559190612cd0565b60405180910390f35b34801561086a57600080fd5b5061088560048036038101906108809190612ec9565b611224565b005b34801561089357600080fd5b506108ae60048036038101906108a99190612dbc565b611287565b005b3480156108bc57600080fd5b506108c5611322565b6040516108d29190612d27565b60405180910390f35b3480156108e757600080fd5b506108f0611328565b6040516108fd9190612d27565b60405180910390f35b34801561091257600080fd5b5061092d60048036038101906109289190612dbc565b61132e565b60405161093a9190612cd0565b60405180910390f35b34801561094f57600080fd5b5061095861140f565b6040516109659190612e4b565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190612f36565b611435565b6040516109a29190612d27565b60405180910390f35b3480156109b757600080fd5b506109c06114bc565b6040516109cd9190612d27565b60405180910390f35b3480156109e257600080fd5b506109fd60048036038101906109f89190612f36565b6114c2565b005b348015610a0b57600080fd5b50610a266004803603810190610a219190612ceb565b611550565b005b348015610a3457600080fd5b50610a3d6115d3565b604051610a4a9190612d27565b60405180910390f35b606060038054610a6290612fa5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8e90612fa5565b8015610adb5780601f10610ab057610100808354040283529160200191610adb565b820191906000526020600020905b815481529060010190602001808311610abe57829003601f168201915b5050505050905090565b600080610af06115d9565b9050610afd8185856115e1565b600191505092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b600e5481565b610b366117aa565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610b5a610fcc565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b939190612e4b565b602060405180830381865afa158015610bb0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd49190612feb565b6040518363ffffffff1660e01b8152600401610bf1929190613018565b6020604051808303816000875af1158015610c10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c349190613056565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610c6e6117aa565b670de0b6b3a76400006103e86005610c84610c5c565b610c8e91906130b2565b610c989190613123565b610ca29190613123565b811015610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb906131c6565b60405180910390fd5b670de0b6b3a764000081610cf891906130b2565b60088190555050565b610d096117aa565b610d11610fcc565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d56573d6000803e3d6000fd5b50565b600080610d646115d9565b9050610d71858285611828565b610d7c8585856118b4565b60019150509392505050565b61dead81565b60006012905090565b600080610da26115d9565b9050610dc3818585610db48589611435565b610dbe91906131e6565b6115e1565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ec46117aa565b610ece60006122dd565b565b6000610eda6117aa565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b610f046117aa565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f8d6117aa565b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043600c81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ffe6117aa565b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461102a90612fa5565b80601f016020809104026020016040519081016040528092919081815260200182805461105690612fa5565b80156110a35780601f10611078576101008083540402835291602001916110a3565b820191906000526020600020905b81548152906001019060200180831161108657829003601f168201915b5050505050905090565b60105481565b6110bb6117aa565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611149576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111409061328c565b60405180910390fd5b61115382826123a3565b5050565b6000806111626115d9565b905060006111708286611435565b9050838110156111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac9061331e565b60405180910390fd5b6111c282868684036115e1565b60019250505092915050565b6000806111d96115d9565b90506111e68185856118b4565b600191505092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b61122c6117aa565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61128f6117aa565b670de0b6b3a76400006103e860056112a5610c5c565b6112af91906130b2565b6112b99190613123565b6112c39190613123565b811015611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc906133b0565b60405180910390fd5b670de0b6b3a76400008161131991906130b2565b600a8190555050565b60085481565b600c5481565b60006113386117aa565b620186a06001611346610c5c565b61135091906130b2565b61135a9190613123565b82101561139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613442565b60405180910390fd5b6103e860056113a9610c5c565b6113b391906130b2565b6113bd9190613123565b8211156113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f6906134d4565b60405180910390fd5b8160098190555060019050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6114ca6117aa565b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6115586117aa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90613566565b60405180910390fd5b6115d0816122dd565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611650576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611647906135f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b69061368a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161179d9190612d27565b60405180910390a3505050565b6117b26115d9565b73ffffffffffffffffffffffffffffffffffffffff166117d0610fcc565b73ffffffffffffffffffffffffffffffffffffffff1614611826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181d906136f6565b60405180910390fd5b565b60006118348484611435565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118ae57818110156118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790613762565b60405180910390fd5b6118ad84848484036115e1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a906137f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990613886565b60405180910390fd5b600081036119ab576119a6838360006123fe565b6122d8565b600b60009054906101000a900460ff1615611ea6576119c8610fcc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a365750611a06610fcc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a6f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611aa9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ac25750600560149054906101000a900460ff16155b15611ea557600b60019054906101000a900460ff16611bbc57601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611b7c5750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb2906138f2565b60405180910390fd5b5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611c5f5750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d0657600854811115611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca090613984565b60405180910390fd5b600a54611cb583610e74565b82611cc091906131e6565b1115611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf8906139f0565b60405180910390fd5b611ea4565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611da95750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611df857600854811115611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90613a82565b60405180910390fd5b611ea3565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ea257600a54611e5583610e74565b82611e6091906131e6565b1115611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e98906139f0565b60405180910390fd5b5b5b5b5b5b6000611eb130610e74565b905060006009548210159050808015611ed65750600b60029054906101000a900460ff165b8015611eef5750600560149054906101000a900460ff16155b8015611f455750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611f9b5750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611ff15750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612035576001600560146101000a81548160ff021916908315150217905550612019612674565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120eb5750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120f557600090505b600081156122c857601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561215857506000600e54115b156121d25743600d54600c5461216e91906131e6565b11156121a25761219b606461218d605a886127b690919063ffffffff16565b6127cc90919063ffffffff16565b90506121cd565b6121ca60646121bc600e54886127b690919063ffffffff16565b6127cc90919063ffffffff16565b90505b6122a4565b601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561222d57506000600e54115b156122a35743600d54600c5461224391906131e6565b1115612277576122706064612262605a886127b690919063ffffffff16565b6127cc90919063ffffffff16565b90506122a2565b61229f6064612291600e54886127b690919063ffffffff16565b6127cc90919063ffffffff16565b90505b5b5b60008111156122b9576122b88730836123fe565b5b80856122c59190613aa2565b94505b6122d38787876123fe565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361246d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612464906137f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d390613886565b60405180910390fd5b6124e78383836127e2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561256d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256490613b48565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161265b9190612d27565b60405180910390a361266e8484846127e7565b50505050565b600061267f30610e74565b90506000810361268f57506127b4565b600560095461269e91906130b2565b8111156126b75760056009546126b491906130b2565b90505b60004790506126c5826127ec565b600081476126d39190613aa2565b90506000600e54600f54836126e891906130b2565b6126f29190613123565b905060008111156127495761274881600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612a3690919063ffffffff16565b5b600081836127579190613aa2565b905060008111156127ae576127ad81600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612a3690919063ffffffff16565b5b50505050505b565b600081836127c491906130b2565b905092915050565b600081836127da9190613123565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561280957612808613b68565b5b6040519080825280602002602001820160405280156128375781602001602082028036833780820191505090505b509050308160008151811061284f5761284e613b97565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129189190613bdb565b8160018151811061292c5761292b613b97565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612991307f0000000000000000000000000000000000000000000000000000000000000000846115e1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426129e091906131e6565b6040518663ffffffff1660e01b8152600401612a00959493929190613d01565b600060405180830381600087803b158015612a1a57600080fd5b505af1158015612a2e573d6000803e3d6000fd5b505050505050565b80471015612a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7090613da7565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612a9f90613df8565b60006040518083038185875af1925050503d8060008114612adc576040519150601f19603f3d011682016040523d82523d6000602084013e612ae1565b606091505b5050905080612b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1c90613e7f565b60405180910390fd5b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b64578082015181840152602081019050612b49565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b8c82612b2a565b612b968185612b35565b9350612ba6818560208601612b46565b612baf81612b70565b840191505092915050565b60006020820190508181036000830152612bd48184612b81565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c0c82612be1565b9050919050565b612c1c81612c01565b8114612c2757600080fd5b50565b600081359050612c3981612c13565b92915050565b6000819050919050565b612c5281612c3f565b8114612c5d57600080fd5b50565b600081359050612c6f81612c49565b92915050565b60008060408385031215612c8c57612c8b612bdc565b5b6000612c9a85828601612c2a565b9250506020612cab85828601612c60565b9150509250929050565b60008115159050919050565b612cca81612cb5565b82525050565b6000602082019050612ce56000830184612cc1565b92915050565b600060208284031215612d0157612d00612bdc565b5b6000612d0f84828501612c2a565b91505092915050565b612d2181612c3f565b82525050565b6000602082019050612d3c6000830184612d18565b92915050565b6000819050919050565b6000612d67612d62612d5d84612be1565b612d42565b612be1565b9050919050565b6000612d7982612d4c565b9050919050565b6000612d8b82612d6e565b9050919050565b612d9b81612d80565b82525050565b6000602082019050612db66000830184612d92565b92915050565b600060208284031215612dd257612dd1612bdc565b5b6000612de084828501612c60565b91505092915050565b600080600060608486031215612e0257612e01612bdc565b5b6000612e1086828701612c2a565b9350506020612e2186828701612c2a565b9250506040612e3286828701612c60565b9150509250925092565b612e4581612c01565b82525050565b6000602082019050612e606000830184612e3c565b92915050565b600060ff82169050919050565b612e7c81612e66565b82525050565b6000602082019050612e976000830184612e73565b92915050565b612ea681612cb5565b8114612eb157600080fd5b50565b600081359050612ec381612e9d565b92915050565b60008060408385031215612ee057612edf612bdc565b5b6000612eee85828601612c2a565b9250506020612eff85828601612eb4565b9150509250929050565b600060208284031215612f1f57612f1e612bdc565b5b6000612f2d84828501612eb4565b91505092915050565b60008060408385031215612f4d57612f4c612bdc565b5b6000612f5b85828601612c2a565b9250506020612f6c85828601612c2a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fbd57607f821691505b602082108103612fd057612fcf612f76565b5b50919050565b600081519050612fe581612c49565b92915050565b60006020828403121561300157613000612bdc565b5b600061300f84828501612fd6565b91505092915050565b600060408201905061302d6000830185612e3c565b61303a6020830184612d18565b9392505050565b60008151905061305081612e9d565b92915050565b60006020828403121561306c5761306b612bdc565b5b600061307a84828501613041565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130bd82612c3f565b91506130c883612c3f565b92508282026130d681612c3f565b915082820484148315176130ed576130ec613083565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061312e82612c3f565b915061313983612c3f565b925082613149576131486130f4565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b60006131b0602f83612b35565b91506131bb82613154565b604082019050919050565b600060208201905081810360008301526131df816131a3565b9050919050565b60006131f182612c3f565b91506131fc83612c3f565b925082820190508082111561321457613213613083565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613276603983612b35565b91506132818261321a565b604082019050919050565b600060208201905081810360008301526132a581613269565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613308602583612b35565b9150613313826132ac565b604082019050919050565b60006020820190508181036000830152613337816132fb565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061339a602483612b35565b91506133a58261333e565b604082019050919050565b600060208201905081810360008301526133c98161338d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061342c603583612b35565b9150613437826133d0565b604082019050919050565b6000602082019050818103600083015261345b8161341f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006134be603483612b35565b91506134c982613462565b604082019050919050565b600060208201905081810360008301526134ed816134b1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613550602683612b35565b915061355b826134f4565b604082019050919050565b6000602082019050818103600083015261357f81613543565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135e2602483612b35565b91506135ed82613586565b604082019050919050565b60006020820190508181036000830152613611816135d5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613674602283612b35565b915061367f82613618565b604082019050919050565b600060208201905081810360008301526136a381613667565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136e0602083612b35565b91506136eb826136aa565b602082019050919050565b6000602082019050818103600083015261370f816136d3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061374c601d83612b35565b915061375782613716565b602082019050919050565b6000602082019050818103600083015261377b8161373f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137de602583612b35565b91506137e982613782565b604082019050919050565b6000602082019050818103600083015261380d816137d1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613870602383612b35565b915061387b82613814565b604082019050919050565b6000602082019050818103600083015261389f81613863565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006138dc601683612b35565b91506138e7826138a6565b602082019050919050565b6000602082019050818103600083015261390b816138cf565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061396e603583612b35565b915061397982613912565b604082019050919050565b6000602082019050818103600083015261399d81613961565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006139da601383612b35565b91506139e5826139a4565b602082019050919050565b60006020820190508181036000830152613a09816139cd565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613a6c603683612b35565b9150613a7782613a10565b604082019050919050565b60006020820190508181036000830152613a9b81613a5f565b9050919050565b6000613aad82612c3f565b9150613ab883612c3f565b9250828203905081811115613ad057613acf613083565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613b32602683612b35565b9150613b3d82613ad6565b604082019050919050565b60006020820190508181036000830152613b6181613b25565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613bd581612c13565b92915050565b600060208284031215613bf157613bf0612bdc565b5b6000613bff84828501613bc6565b91505092915050565b6000819050919050565b6000613c2d613c28613c2384613c08565b612d42565b612c3f565b9050919050565b613c3d81613c12565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c7881612c01565b82525050565b6000613c8a8383613c6f565b60208301905092915050565b6000602082019050919050565b6000613cae82613c43565b613cb88185613c4e565b9350613cc383613c5f565b8060005b83811015613cf4578151613cdb8882613c7e565b9750613ce683613c96565b925050600181019050613cc7565b5085935050505092915050565b600060a082019050613d166000830188612d18565b613d236020830187613c34565b8181036040830152613d358186613ca3565b9050613d446060830185612e3c565b613d516080830184612d18565b9695505050505050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613d91601d83612b35565b9150613d9c82613d5b565b602082019050919050565b60006020820190508181036000830152613dc081613d84565b9050919050565b600081905092915050565b50565b6000613de2600083613dc7565b9150613ded82613dd2565b600082019050919050565b6000613e0382613dd5565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613e69603a83612b35565b9150613e7482613e0d565b604082019050919050565b60006020820190508181036000830152613e9881613e5c565b905091905056fea2646970667358221220e2e5c26d9ebf4781a71a423d820ba189a2dcd589dd08b2a7240a1f600316294864736f6c63430008130033

Deployed Bytecode

0x60806040526004361061026b5760003560e01c806375f0a87411610144578063c0246668116100b6578063d46980161161007a578063d469801614610943578063dd62ed3e1461096e578063e2f45605146109ab578063e8ba854f146109d6578063f2fde38b146109ff578063f8b45b0514610a2857610272565b8063c02466681461085e578063c18bc19514610887578063c8c8ebe4146108b0578063d00efb2f146108db578063d257b34f1461090657610272565b806398118cb41161010857806398118cb4146107285780639a7a23d614610753578063a457c2d71461077c578063a9059cbb146107b9578063b62496f5146107f6578063bbc0c7421461083357610272565b806375f0a874146106675780638a8c523c146106925780638da5cb5b146106a9578063924de9b7146106d457806395d89b41146106fd57610272565b8063313ce567116101dd5780636b67c4df116101a15780636b67c4df146105695780636ddd17131461059457806370a08231146105bf578063715018a6146105fc578063751039fc146106135780637571336a1461063e57610272565b8063313ce5671461046e578063395093511461049957806349bd5a5e146104d65780634a62bb65146105015780634fbee1931461052c57610272565b80631694505e1161022f5780631694505e1461037057806318160ddd1461039b578063203e727e146103c657806320800a00146103ef57806323b872dd1461040657806327c8f8351461044357610272565b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102df57806313114a9d1461031c57806316114acd1461034757610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a53565b6040516102999190612bba565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612c75565b610ae5565b6040516102d69190612cd0565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612ceb565b610b08565b6040516103139190612cd0565b60405180910390f35b34801561032857600080fd5b50610331610b28565b60405161033e9190612d27565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612ceb565b610b2e565b005b34801561037c57600080fd5b50610385610c38565b6040516103929190612da1565b60405180910390f35b3480156103a757600080fd5b506103b0610c5c565b6040516103bd9190612d27565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e89190612dbc565b610c66565b005b3480156103fb57600080fd5b50610404610d01565b005b34801561041257600080fd5b5061042d60048036038101906104289190612de9565b610d59565b60405161043a9190612cd0565b60405180910390f35b34801561044f57600080fd5b50610458610d88565b6040516104659190612e4b565b60405180910390f35b34801561047a57600080fd5b50610483610d8e565b6040516104909190612e82565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190612c75565b610d97565b6040516104cd9190612cd0565b60405180910390f35b3480156104e257600080fd5b506104eb610dce565b6040516104f89190612e4b565b60405180910390f35b34801561050d57600080fd5b50610516610df2565b6040516105239190612cd0565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190612ceb565b610e05565b6040516105609190612cd0565b60405180910390f35b34801561057557600080fd5b5061057e610e5b565b60405161058b9190612d27565b60405180910390f35b3480156105a057600080fd5b506105a9610e61565b6040516105b69190612cd0565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e19190612ceb565b610e74565b6040516105f39190612d27565b60405180910390f35b34801561060857600080fd5b50610611610ebc565b005b34801561061f57600080fd5b50610628610ed0565b6040516106359190612cd0565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190612ec9565b610efc565b005b34801561067357600080fd5b5061067c610f5f565b6040516106899190612e4b565b60405180910390f35b34801561069e57600080fd5b506106a7610f85565b005b3480156106b557600080fd5b506106be610fcc565b6040516106cb9190612e4b565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f69190612f09565b610ff6565b005b34801561070957600080fd5b5061071261101b565b60405161071f9190612bba565b60405180910390f35b34801561073457600080fd5b5061073d6110ad565b60405161074a9190612d27565b60405180910390f35b34801561075f57600080fd5b5061077a60048036038101906107759190612ec9565b6110b3565b005b34801561078857600080fd5b506107a3600480360381019061079e9190612c75565b611157565b6040516107b09190612cd0565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db9190612c75565b6111ce565b6040516107ed9190612cd0565b60405180910390f35b34801561080257600080fd5b5061081d60048036038101906108189190612ceb565b6111f1565b60405161082a9190612cd0565b60405180910390f35b34801561083f57600080fd5b50610848611211565b6040516108559190612cd0565b60405180910390f35b34801561086a57600080fd5b5061088560048036038101906108809190612ec9565b611224565b005b34801561089357600080fd5b506108ae60048036038101906108a99190612dbc565b611287565b005b3480156108bc57600080fd5b506108c5611322565b6040516108d29190612d27565b60405180910390f35b3480156108e757600080fd5b506108f0611328565b6040516108fd9190612d27565b60405180910390f35b34801561091257600080fd5b5061092d60048036038101906109289190612dbc565b61132e565b60405161093a9190612cd0565b60405180910390f35b34801561094f57600080fd5b5061095861140f565b6040516109659190612e4b565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190612f36565b611435565b6040516109a29190612d27565b60405180910390f35b3480156109b757600080fd5b506109c06114bc565b6040516109cd9190612d27565b60405180910390f35b3480156109e257600080fd5b506109fd60048036038101906109f89190612f36565b6114c2565b005b348015610a0b57600080fd5b50610a266004803603810190610a219190612ceb565b611550565b005b348015610a3457600080fd5b50610a3d6115d3565b604051610a4a9190612d27565b60405180910390f35b606060038054610a6290612fa5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8e90612fa5565b8015610adb5780601f10610ab057610100808354040283529160200191610adb565b820191906000526020600020905b815481529060010190602001808311610abe57829003601f168201915b5050505050905090565b600080610af06115d9565b9050610afd8185856115e1565b600191505092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b600e5481565b610b366117aa565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610b5a610fcc565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b939190612e4b565b602060405180830381865afa158015610bb0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd49190612feb565b6040518363ffffffff1660e01b8152600401610bf1929190613018565b6020604051808303816000875af1158015610c10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c349190613056565b5050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610c6e6117aa565b670de0b6b3a76400006103e86005610c84610c5c565b610c8e91906130b2565b610c989190613123565b610ca29190613123565b811015610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb906131c6565b60405180910390fd5b670de0b6b3a764000081610cf891906130b2565b60088190555050565b610d096117aa565b610d11610fcc565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d56573d6000803e3d6000fd5b50565b600080610d646115d9565b9050610d71858285611828565b610d7c8585856118b4565b60019150509392505050565b61dead81565b60006012905090565b600080610da26115d9565b9050610dc3818585610db48589611435565b610dbe91906131e6565b6115e1565b600191505092915050565b7f000000000000000000000000b3164f89df8d269e280f3dd76f3feccc9bded9ed81565b600b60009054906101000a900460ff1681565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ec46117aa565b610ece60006122dd565b565b6000610eda6117aa565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b610f046117aa565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f8d6117aa565b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043600c81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ffe6117aa565b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461102a90612fa5565b80601f016020809104026020016040519081016040528092919081815260200182805461105690612fa5565b80156110a35780601f10611078576101008083540402835291602001916110a3565b820191906000526020600020905b81548152906001019060200180831161108657829003601f168201915b5050505050905090565b60105481565b6110bb6117aa565b7f000000000000000000000000b3164f89df8d269e280f3dd76f3feccc9bded9ed73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611149576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111409061328c565b60405180910390fd5b61115382826123a3565b5050565b6000806111626115d9565b905060006111708286611435565b9050838110156111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac9061331e565b60405180910390fd5b6111c282868684036115e1565b60019250505092915050565b6000806111d96115d9565b90506111e68185856118b4565b600191505092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b61122c6117aa565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61128f6117aa565b670de0b6b3a76400006103e860056112a5610c5c565b6112af91906130b2565b6112b99190613123565b6112c39190613123565b811015611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc906133b0565b60405180910390fd5b670de0b6b3a76400008161131991906130b2565b600a8190555050565b60085481565b600c5481565b60006113386117aa565b620186a06001611346610c5c565b61135091906130b2565b61135a9190613123565b82101561139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613442565b60405180910390fd5b6103e860056113a9610c5c565b6113b391906130b2565b6113bd9190613123565b8211156113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f6906134d4565b60405180910390fd5b8160098190555060019050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6114ca6117aa565b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6115586117aa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90613566565b60405180910390fd5b6115d0816122dd565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611650576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611647906135f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b69061368a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161179d9190612d27565b60405180910390a3505050565b6117b26115d9565b73ffffffffffffffffffffffffffffffffffffffff166117d0610fcc565b73ffffffffffffffffffffffffffffffffffffffff1614611826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181d906136f6565b60405180910390fd5b565b60006118348484611435565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118ae57818110156118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790613762565b60405180910390fd5b6118ad84848484036115e1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a906137f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990613886565b60405180910390fd5b600081036119ab576119a6838360006123fe565b6122d8565b600b60009054906101000a900460ff1615611ea6576119c8610fcc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a365750611a06610fcc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a6f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611aa9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ac25750600560149054906101000a900460ff16155b15611ea557600b60019054906101000a900460ff16611bbc57601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611b7c5750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb2906138f2565b60405180910390fd5b5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611c5f5750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d0657600854811115611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca090613984565b60405180910390fd5b600a54611cb583610e74565b82611cc091906131e6565b1115611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf8906139f0565b60405180910390fd5b611ea4565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611da95750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611df857600854811115611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90613a82565b60405180910390fd5b611ea3565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ea257600a54611e5583610e74565b82611e6091906131e6565b1115611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e98906139f0565b60405180910390fd5b5b5b5b5b5b6000611eb130610e74565b905060006009548210159050808015611ed65750600b60029054906101000a900460ff165b8015611eef5750600560149054906101000a900460ff16155b8015611f455750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611f9b5750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611ff15750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612035576001600560146101000a81548160ff021916908315150217905550612019612674565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120eb5750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120f557600090505b600081156122c857601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561215857506000600e54115b156121d25743600d54600c5461216e91906131e6565b11156121a25761219b606461218d605a886127b690919063ffffffff16565b6127cc90919063ffffffff16565b90506121cd565b6121ca60646121bc600e54886127b690919063ffffffff16565b6127cc90919063ffffffff16565b90505b6122a4565b601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561222d57506000600e54115b156122a35743600d54600c5461224391906131e6565b1115612277576122706064612262605a886127b690919063ffffffff16565b6127cc90919063ffffffff16565b90506122a2565b61229f6064612291600e54886127b690919063ffffffff16565b6127cc90919063ffffffff16565b90505b5b5b60008111156122b9576122b88730836123fe565b5b80856122c59190613aa2565b94505b6122d38787876123fe565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361246d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612464906137f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d390613886565b60405180910390fd5b6124e78383836127e2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561256d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256490613b48565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161265b9190612d27565b60405180910390a361266e8484846127e7565b50505050565b600061267f30610e74565b90506000810361268f57506127b4565b600560095461269e91906130b2565b8111156126b75760056009546126b491906130b2565b90505b60004790506126c5826127ec565b600081476126d39190613aa2565b90506000600e54600f54836126e891906130b2565b6126f29190613123565b905060008111156127495761274881600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612a3690919063ffffffff16565b5b600081836127579190613aa2565b905060008111156127ae576127ad81600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612a3690919063ffffffff16565b5b50505050505b565b600081836127c491906130b2565b905092915050565b600081836127da9190613123565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561280957612808613b68565b5b6040519080825280602002602001820160405280156128375781602001602082028036833780820191505090505b509050308160008151811061284f5761284e613b97565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129189190613bdb565b8160018151811061292c5761292b613b97565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612991307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846115e1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426129e091906131e6565b6040518663ffffffff1660e01b8152600401612a00959493929190613d01565b600060405180830381600087803b158015612a1a57600080fd5b505af1158015612a2e573d6000803e3d6000fd5b505050505050565b80471015612a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7090613da7565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612a9f90613df8565b60006040518083038185875af1925050503d8060008114612adc576040519150601f19603f3d011682016040523d82523d6000602084013e612ae1565b606091505b5050905080612b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1c90613e7f565b60405180910390fd5b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b64578082015181840152602081019050612b49565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b8c82612b2a565b612b968185612b35565b9350612ba6818560208601612b46565b612baf81612b70565b840191505092915050565b60006020820190508181036000830152612bd48184612b81565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c0c82612be1565b9050919050565b612c1c81612c01565b8114612c2757600080fd5b50565b600081359050612c3981612c13565b92915050565b6000819050919050565b612c5281612c3f565b8114612c5d57600080fd5b50565b600081359050612c6f81612c49565b92915050565b60008060408385031215612c8c57612c8b612bdc565b5b6000612c9a85828601612c2a565b9250506020612cab85828601612c60565b9150509250929050565b60008115159050919050565b612cca81612cb5565b82525050565b6000602082019050612ce56000830184612cc1565b92915050565b600060208284031215612d0157612d00612bdc565b5b6000612d0f84828501612c2a565b91505092915050565b612d2181612c3f565b82525050565b6000602082019050612d3c6000830184612d18565b92915050565b6000819050919050565b6000612d67612d62612d5d84612be1565b612d42565b612be1565b9050919050565b6000612d7982612d4c565b9050919050565b6000612d8b82612d6e565b9050919050565b612d9b81612d80565b82525050565b6000602082019050612db66000830184612d92565b92915050565b600060208284031215612dd257612dd1612bdc565b5b6000612de084828501612c60565b91505092915050565b600080600060608486031215612e0257612e01612bdc565b5b6000612e1086828701612c2a565b9350506020612e2186828701612c2a565b9250506040612e3286828701612c60565b9150509250925092565b612e4581612c01565b82525050565b6000602082019050612e606000830184612e3c565b92915050565b600060ff82169050919050565b612e7c81612e66565b82525050565b6000602082019050612e976000830184612e73565b92915050565b612ea681612cb5565b8114612eb157600080fd5b50565b600081359050612ec381612e9d565b92915050565b60008060408385031215612ee057612edf612bdc565b5b6000612eee85828601612c2a565b9250506020612eff85828601612eb4565b9150509250929050565b600060208284031215612f1f57612f1e612bdc565b5b6000612f2d84828501612eb4565b91505092915050565b60008060408385031215612f4d57612f4c612bdc565b5b6000612f5b85828601612c2a565b9250506020612f6c85828601612c2a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fbd57607f821691505b602082108103612fd057612fcf612f76565b5b50919050565b600081519050612fe581612c49565b92915050565b60006020828403121561300157613000612bdc565b5b600061300f84828501612fd6565b91505092915050565b600060408201905061302d6000830185612e3c565b61303a6020830184612d18565b9392505050565b60008151905061305081612e9d565b92915050565b60006020828403121561306c5761306b612bdc565b5b600061307a84828501613041565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130bd82612c3f565b91506130c883612c3f565b92508282026130d681612c3f565b915082820484148315176130ed576130ec613083565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061312e82612c3f565b915061313983612c3f565b925082613149576131486130f4565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b60006131b0602f83612b35565b91506131bb82613154565b604082019050919050565b600060208201905081810360008301526131df816131a3565b9050919050565b60006131f182612c3f565b91506131fc83612c3f565b925082820190508082111561321457613213613083565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613276603983612b35565b91506132818261321a565b604082019050919050565b600060208201905081810360008301526132a581613269565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613308602583612b35565b9150613313826132ac565b604082019050919050565b60006020820190508181036000830152613337816132fb565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061339a602483612b35565b91506133a58261333e565b604082019050919050565b600060208201905081810360008301526133c98161338d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061342c603583612b35565b9150613437826133d0565b604082019050919050565b6000602082019050818103600083015261345b8161341f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006134be603483612b35565b91506134c982613462565b604082019050919050565b600060208201905081810360008301526134ed816134b1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613550602683612b35565b915061355b826134f4565b604082019050919050565b6000602082019050818103600083015261357f81613543565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135e2602483612b35565b91506135ed82613586565b604082019050919050565b60006020820190508181036000830152613611816135d5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613674602283612b35565b915061367f82613618565b604082019050919050565b600060208201905081810360008301526136a381613667565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136e0602083612b35565b91506136eb826136aa565b602082019050919050565b6000602082019050818103600083015261370f816136d3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061374c601d83612b35565b915061375782613716565b602082019050919050565b6000602082019050818103600083015261377b8161373f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137de602583612b35565b91506137e982613782565b604082019050919050565b6000602082019050818103600083015261380d816137d1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613870602383612b35565b915061387b82613814565b604082019050919050565b6000602082019050818103600083015261389f81613863565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006138dc601683612b35565b91506138e7826138a6565b602082019050919050565b6000602082019050818103600083015261390b816138cf565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061396e603583612b35565b915061397982613912565b604082019050919050565b6000602082019050818103600083015261399d81613961565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006139da601383612b35565b91506139e5826139a4565b602082019050919050565b60006020820190508181036000830152613a09816139cd565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613a6c603683612b35565b9150613a7782613a10565b604082019050919050565b60006020820190508181036000830152613a9b81613a5f565b9050919050565b6000613aad82612c3f565b9150613ab883612c3f565b9250828203905081811115613ad057613acf613083565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613b32602683612b35565b9150613b3d82613ad6565b604082019050919050565b60006020820190508181036000830152613b6181613b25565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613bd581612c13565b92915050565b600060208284031215613bf157613bf0612bdc565b5b6000613bff84828501613bc6565b91505092915050565b6000819050919050565b6000613c2d613c28613c2384613c08565b612d42565b612c3f565b9050919050565b613c3d81613c12565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c7881612c01565b82525050565b6000613c8a8383613c6f565b60208301905092915050565b6000602082019050919050565b6000613cae82613c43565b613cb88185613c4e565b9350613cc383613c5f565b8060005b83811015613cf4578151613cdb8882613c7e565b9750613ce683613c96565b925050600181019050613cc7565b5085935050505092915050565b600060a082019050613d166000830188612d18565b613d236020830187613c34565b8181036040830152613d358186613ca3565b9050613d446060830185612e3c565b613d516080830184612d18565b9695505050505050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613d91601d83612b35565b9150613d9c82613d5b565b602082019050919050565b60006020820190508181036000830152613dc081613d84565b9050919050565b600081905092915050565b50565b6000613de2600083613dc7565b9150613ded82613dd2565b600082019050919050565b6000613e0382613dd5565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613e69603a83612b35565b9150613e7482613e0d565b604082019050919050565b60006020820190508181036000830152613e9881613e5c565b905091905056fea2646970667358221220e2e5c26d9ebf4781a71a423d820ba189a2dcd589dd08b2a7240a1f600316294864736f6c63430008130033

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.