ETH Price: $2,400.12 (-0.22%)
Gas: 1.03 Gwei

Token

Funky Wolves (FW)
 

Overview

Max Total Supply

1,000 FW

Holders

216

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 FW
0x001A181aB8c41045e26DD2245fFCC12818ea742F
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:
FunkyWolves

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 10000 runs

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

/// @title Funky Wolves

//               -=                                    -*:
//             +@@%                        :.          .@@%=
//           +@%=%@.                      .@%          -@#+@@-
//         .%@+  :@#                    .=@@@:         %@: .*@#
//     *%=:@%:    -@*        .:=+*##%%%%#*=*@=::.     #@-    -@#.=#.
//    =@%@@%  -#.  :@@-    -#@#+=::.      .##%@@:   =@%.  :#: .@@@@#
//   .@@  =. *@@@=  .*@%-:%@+                %@@@@%@@+   +@@@= == %@.
//   +@+    *@* +@@+  .+@@@:    ..:::::::..     *@%=  .*@%= #@=   +@+
//   %@:   :@%    -#@= .=@@#%%%%###*****###%%%#%@%:  +@+:    @@   :@#
//   %@:   =@+      @@@@*=:.                  .:=*%@%@+      #@:  .@%
//   +@+   :@%   .+@%+:                            .-*@#-    @@   :@#
//   .@@:   *@+.*@%- .:-===-:.               .--===-:..+@@=.#@=   *@=
//    .@@-   *@@%-=#@@#**+**#@@#=.       .+#@@#*++**%@@*=+@@@=   =@#
//      +@#-:%@=  ==.         .-*@#:   -#@*-.         :=-  +@#.-#@+
//        =@@%.  @@@@%*-.        .%@. -@#.        .=*@@@@%  :@@@=
//     =-=%@+     -@*-*@@%*=:     #@- +@*     :=*@@@+-%@.    .*@*=-:
//     =@@*.      %%  @@@@@@@@@%%@%=   +%@%%@@@@@@@@% :@#      .#@@-
//      .*@#      #@ .%@@@@@@+.#@+       *@*.#@@@@@@% -@*      %@#:
//       %%       .%@=.-+**+::#@*         #@*:-+**+-.+@#       -@*
//      .@*       .+@@@%#**#@@*--=+**#**+=:-*@%#**#%@@@-       :@#
//  .   =@=     :#@#-. :----..%@#*==---=+*#@# :----: .=%@*.    .@@.  .-
//  %@#%@*     *@*.          :@%.         .@@.          :#@+    :#@%%@#
//  +@#-.     *@+             :%@=      .+@%.             *@=     .-%@=
//   =@@*     @@#%@%            =%@*=:=#@%-           :@@%%@%     #@@-
//.-*@%- .-:  +=-%@:              :=#@*=.              =@%-==  =:. =@@+:
//.*@@@@@@@      @@ .*%@@%#+-.    .:%@*:     .--====-:  @@     -@@@%@@%=
// . .-*@%:     :@%  :%@=.-*@@%%%@@@=-+@@@%%%@@%==+@@%+ %@.     -%@*-..:
// #@@%*-        @@  .@%  -@%@# .@@@- +@@@. =@%@=  #@:  @@        -*#@@=
//  *@*          #@: :@%  @@ #@+#@=%@*@#=@#-@#.@%  #@- =@*          +@#
//   -%@*-       :@*  #@+=@*  #@@@+#@@@#+@@@% .@% =@% .@@.        =%@+
//     :+#@%#*++++@@=  =%@@#=+#@%*=+++++=*@@*+*@@@%+  #@*=----=+#@#=
//          .:-----*@*.   :===-.:*@%*+*@@= .-===-.  -%%==+***++-:
//                  -%@#+---=+*@@*-     =%@#*=-:-=*@@*.
//                    .=+*##*+@@=.       :*@%+*#**=:
//                             =*%@####%@#+-


/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

pragma solidity ^0.8.0;

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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://diligence.consensys.net/posts/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.5.11/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 functionCall(target, data, "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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

contract ERC721A is
Context,
ERC165,
IERC721,
IERC721Metadata,
IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) private _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
    constructor(
        string memory name_,
        string memory symbol_
    ) {
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = 10;
        collectionSize = 10000;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
   */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
   */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index <= totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
    function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @dev See {IERC165-supportsInterface}.
   */
    function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC165, IERC165)
    returns (bool)
    {
        return
        interfaceId == type(IERC721).interfaceId ||
        interfaceId == type(IERC721Metadata).interfaceId ||
        interfaceId == type(IERC721Enumerable).interfaceId ||
        super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
   */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), "ERC721A: balance query for the zero address");
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
   */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
   */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
   */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
   */
    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
        bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
   * by default, can be overriden in child contracts.
   */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
   */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721A: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
   */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
   */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
   */
    function isApprovedForAll(address owner, address operator)
    public
    view
    virtual
    override
    returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
   */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
   */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
   */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId <= currentIndex && tokenId > 0;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex + 1;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex - 1;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
        getApproved(tokenId) == _msgSender() ||
        isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
   *
   * Emits a {Approval} event.
   */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
   * The call is not executed if the target address is not a contract.
   *
   * @param from address representing the previous owner of the given token ID
   * @param to target address that will receive the tokens
   * @param tokenId uint256 ID of the token to be transferred
   * @param _data bytes optional data to send along with the call
   * @return bool whether the call correctly returned the expected magic value
   */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
            IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721A: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
    external
    view
    returns (address receiver, uint256 royaltyAmount);
}

/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
contract ERC2981 is IERC2981 {
    struct RoyaltyInfo {
        address recipient;
        uint24 amount;
    }

    RoyaltyInfo private _royalties;

    /// @dev Sets token royalties
    /// @param recipient recipient of the royalties
    /// @param value percentage (using 2 decimals - 10000 = 100, 0 = 0)
    function _setRoyalties(address recipient, uint256 value) internal {
        require(value <= 10000, "ERC2981Royalties: Too high");
        _royalties = RoyaltyInfo(recipient, uint24(value));
    }

    function setRoyalties(address recipient, uint256 value) external {
        require(recipient != address(0), "Invalid address!");
        _setRoyalties(recipient, value);
    }

    /// @inheritdoc IERC2981
    function royaltyInfo(uint256, uint256 value)
    external
    view
    override
    returns (address receiver, uint256 royaltyAmount)
    {
        RoyaltyInfo memory royalties = _royalties;
        receiver = royalties.recipient;
        royaltyAmount = (value * royalties.amount) / 10000;
    }

    /// @inheritdoc IERC165
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || interfaceId == type(IERC165).interfaceId;
    }
}

contract FunkyWolves is ERC721A, Ownable, ReentrancyGuard, ERC2981 {
    using Strings for uint256;

    //NOTE Token values incremented for gas efficiency
    uint256 public maxSalePlusOne = 7778;

    uint256 public tokenPricePresale = 0.055 ether;
    uint256 public tokenPricePublic = 0.11 ether;

    // amount of nfts to be minted per address plus one
    uint256 public saleAllowancePlusOne = 5;

    // merkle proof
    bytes32 public merkleRoot;

    //amount of FP unclaimed
    uint256 public FPUnclaimed = 500;
    //store the tokenIds of claimed passes
    mapping(uint => bool) internal claimedPasses;
    //stores the tokenIds of claimed passes in an array
    uint[] public claimedPassesArray;
    //address of the FP contract
    address public FPContract = 0x8bf311CB2eACD17988fc07DB330374650433e57A;

    mapping(address => uint) public mintsPerAddress;

    enum ContractState {
        OFF,
        ON
    }
    ContractState public contractState = ContractState.OFF;

    string public baseURI;

    constructor() ERC721A("Funky Wolves", "FW") {
        _setRoyalties(msg.sender, 750);
    }

    //
    // Modifiers
    //

    /**
     * Do not allow calls from other contracts.
     */
    modifier noBots() {
        require(msg.sender == tx.origin, "No bots!");
        _;
    }

    /**
     * Ensure current state is correct for this method.
     */
    modifier isContractState(ContractState contractState_) {
        require(contractState == contractState_, "Invalid state");
        _;
    }

    /**
     * Ensure amount of tokens to mint is within the limit.
     */
    modifier withinMintLimit(uint256 quantity) {
        require((totalSupply() + quantity) < maxSalePlusOne - FPUnclaimed, "Exceeds available tokens");
        _;
    }

    /**
     * Ensure correct amount of Ether present in transaction.
     */
    modifier correctValue(uint256 expectedValue) {
        require(expectedValue <= msg.value, "Ether value sent is not correct");
        _;
    }

    //
    // Mint
    //

    /**
     * Public mint.
     * @param quantity Amount of tokens to mint.
     */
    function mintPublic(uint256 quantity)
    external
    payable
    noBots
    isContractState(ContractState.ON)
    withinMintLimit(quantity)
    correctValue(tokenPricePublic * quantity)
    {
        require(quantity < saleAllowancePlusOne, "Exceeds allowance!");
        _safeMint(msg.sender, quantity);
        mintsPerAddress[msg.sender] += quantity;
    }

    /**
     * Mint tokens during the presale.
     * @notice This function is only available to those on the allowlist/funklist or FP holders.
     * @param quantity The number of tokens to mint.
     */
    function mintPresale(uint256 quantity, bytes32[] calldata proof, bytes32 leaf)
    external
    payable
    noBots
    isContractState(ContractState.ON)
    withinMintLimit(quantity)
    correctValue(tokenPricePresale * quantity)
    {
        require(quantity < saleAllowancePlusOne, "Exceeds allowance!");
        require(IERC721(FPContract).balanceOf(msg.sender) > 0 || verify(merkleRoot, leaf, proof), "Not Funklisted nor Funky Pass Holder!");
        _safeMint(msg.sender, quantity);
        mintsPerAddress[msg.sender] += quantity;
    }

    /**
     * Claim a wolf using FP.
     * @param tokenIds the token ids of the FPs.
     */
    function claimWolf(uint[] calldata tokenIds)
    external
    noBots
    {
        require(contractState != ContractState.OFF, "Invalid State");
        require(FPUnclaimed >= tokenIds.length, "Exceeds available tokens!");
        for (uint i; i < tokenIds.length; i++) {
            require(IERC721(FPContract).ownerOf(tokenIds[i]) == msg.sender, "Not Owner of Token!");
            require(!claimedPasses[tokenIds[i]], "Pass has already been used to claim!");
            claimedPasses[tokenIds[i]] = true;
            claimedPassesArray.push(tokenIds[i]);
        }
        FPUnclaimed = FPUnclaimed - tokenIds.length;
        _safeMint(msg.sender, tokenIds.length);
    }

    /**
     * Team reserved mint.
     * @param to Address to mint to.
     * @param quantity Amount of tokens to mint.
     */
    function mintReserved(address to, uint256 quantity) external onlyOwner {
        require(totalSupply() + quantity < maxSalePlusOne, "Exceeds available tokens!");
        _safeMint(to, quantity);
    }

    //
    // Admin
    //

    /**
     * Set contract state.
     * @param contractState_ The new state of the contract.
     */
    function setContractState(uint contractState_) external onlyOwner {
        require(contractState_ < 2, "Invalid Contract State!");
        if (contractState_ == 0) {
            contractState = ContractState.OFF;
        }
        else {
            contractState = ContractState.ON;
        }

    }

    /**
     * Update token price presale
     * @param newPrice The new price.
     */
    function setTokenPricePresale(uint256 newPrice) external onlyOwner {
        tokenPricePresale = newPrice;
    }

    /**
     * Update token price public sale
     * @param newPrice The new price.
     */
    function setTokenPricePublic(uint256 newPrice) external onlyOwner {
        tokenPricePublic = newPrice;
    }

    /**
     * Update maximum number of tokens for sale.
     * @param maxSale The maximum number of tokens available for sale.
     */
    function setMaxSale(uint256 maxSale) external onlyOwner {
        uint256 maxSalePlusOne_ = maxSale + 1;
        maxSalePlusOne = maxSalePlusOne_;
    }

    /**
     * Update sale allowance.
     * @param saleAllowance The new sale allowance.
     */
    function setSaleAllowance(uint256 saleAllowance) external onlyOwner {
        saleAllowancePlusOne = saleAllowance + 1;
    }

    /**
     * Update FP Contract.
     * @param newContract The new FP Contract .
     */
    function setFPContract(address newContract) external onlyOwner {
        require(newContract != address(0), "Invalid Address!");
        FPContract = newContract;
    }


    /**
     * Sets base URI.
     * @param baseURI_ The base URI
     */
    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    /**
     * Set the presale Merkle root.
     * @dev The Merkle root is calculated from [address] pairs.
     * @param merkleRoot_ The new merkle roo
     */
    function setMerkleRoot(bytes32 merkleRoot_) external onlyOwner {
        merkleRoot = merkleRoot_;
    }


    //send the percentage of funds to a shareholder´s wallet
    function withdraw(address payable account, uint256 amount) public onlyOwner {
        (bool sent, ) = account.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }

    //
    // Views
    //

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(uint16(tokenId)), "URI query for nonexistent token");

        return string(abi.encodePacked(baseURI, tokenId.toString()));
    }

    /// @inheritdoc IERC165
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) {
        return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId);
    }

    /**
     * Verify the Merkle proof is valid.
     * @param root The Merkle root. Use the value stored in the contract
     * @param leaf The leaf. A [address, availableAmt] pair
     * @param proof The Merkle proof used to validate the leaf is in the root
     */
    function verify(
        bytes32 root,
        bytes32 leaf,
        bytes32[] memory proof
    ) public pure returns (bool) {
        return MerkleProof.verify(proof, root, leaf);
    }

    //see the current account balance
    function accountBalance() public view returns(uint) {
        return address(this).balance;
    }

    /// MISC

    /**
     * See how many mints an address has executed
     * @param minter the address of the person that
     */
    function getMintsPerAddress(address minter) public view returns(uint) {
        return mintsPerAddress[minter];
    }

    /**
     * Get the array of claimed passes
     */
    function getClaimedPassesArray() public view returns(uint[] memory) {
        return claimedPassesArray;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FPContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FPUnclaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accountBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claimWolf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedPassesArray","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractState","outputs":[{"internalType":"enum FunkyWolves.ContractState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimedPassesArray","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"getMintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSalePlusOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerAddress","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":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleAllowancePlusOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"contractState_","type":"uint256"}],"name":"setContractState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newContract","type":"address"}],"name":"setFPContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSale","type":"uint256"}],"name":"setMaxSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"saleAllowance","type":"uint256"}],"name":"setSaleAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setTokenPricePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setTokenPricePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPricePresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000808055600755611e62600b5566c3663566a58000600c55670186cc6acd4b0000600d556005600e556101f4601055601380546001600160a01b031916738bf311cb2eacd17988fc07db330374650433e57a1790556015805460ff191690553480156200007157600080fd5b50604080518082018252600c81526b46756e6b7920576f6c76657360a01b602080830191825283518085019094526002845261465760f01b908401528151919291620000c091600191620001fb565b508051620000d6906002906020840190620001fb565b5050600a60a05250612710608052620000ef3362000108565b600160095562000102336102ee6200015a565b620002de565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612710811115620001b15760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f2068696768000000000000604482015260640160405180910390fd5b604080518082019091526001600160a01b0390921680835262ffffff9091166020909201829052600a8054600160a01b9093026001600160b81b0319909316909117919091179055565b8280546200020990620002a1565b90600052602060002090601f0160209004810192826200022d576000855562000278565b82601f106200024857805160ff191683800117855562000278565b8280016001018555821562000278579182015b82811115620002785782518255916020019190600101906200025b565b50620002869291506200028a565b5090565b5b808211156200028657600081556001016200028b565b600181811c90821680620002b657607f821691505b60208210811415620002d857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051613f196200030f60003960008181612a5a01528181612a84015261315e015260005050613f196000f3fe6080604052600436106103295760003560e01c80637cb64759116101a5578063b47dff62116100ec578063dcf13a4611610095578063f2fde38b1161006f578063f2fde38b146108ec578063f3fef3a31461090c578063fae965711461092c578063fb7265ff1461096257600080fd5b8063dcf13a461461087d578063e985e9c514610890578063efd0cbf9146108d957600080fd5b8063c87b56dd116100c6578063c87b56dd14610827578063cd2c705214610847578063d7224ba01461086757600080fd5b8063b47dff62146107d1578063b88d4fde146107e7578063c49c1a921461080757600080fd5b80638c7ea24b1161014e57806395d89b411161012857806395d89b4114610789578063a22cb4651461079e578063b0a1c1c4146107be57600080fd5b80638c7ea24b1461072b5780638da5cb5b1461074b57806394a353861461076957600080fd5b80637de69d5f1161017f5780637de69d5f146106ce5780637f478383146106e457806385209ee01461070457600080fd5b80637cb64759146106785780637cf4b367146106985780637de55fe1146106ae57600080fd5b80632f745c59116102745780634f6ccce71161021d5780636a573c1e116101f75780636a573c1e146106185780636c0360eb1461062e57806370a0823114610643578063715018a61461066357600080fd5b80634f6ccce7146105b857806355f804b3146105d85780636352211e146105f857600080fd5b80633423e5481161024e5780633423e5481461055857806342842e0e146105785780634ac4295f1461059857600080fd5b80632f745c59146104eb5780633023eba61461050b578063311df29a1461053857600080fd5b806321c03a03116102d65780632a55205a116102b05780632a55205a146104805780632b038411146104bf5780632eb4a7ab146104d557600080fd5b806321c03a031461041e57806323612f9d1461043e57806323b872dd1461046057600080fd5b806308290dc51161030757806308290dc5146103bd578063095ea7b3146103df57806318160ddd146103ff57600080fd5b806301ffc9a71461032e57806306fdde0314610363578063081812fc14610385575b600080fd5b34801561033a57600080fd5b5061034e610349366004613512565b610982565b60405190151581526020015b60405180910390f35b34801561036f57600080fd5b506103786109a2565b60405161035a91906135ac565b34801561039157600080fd5b506103a56103a03660046135bf565b610a34565b6040516001600160a01b03909116815260200161035a565b3480156103c957600080fd5b506103dd6103d83660046135bf565b610ad2565b005b3480156103eb57600080fd5b506103dd6103fa3660046135ed565b610b40565b34801561040b57600080fd5b506000545b60405190815260200161035a565b34801561042a57600080fd5b506103dd610439366004613619565b610c73565b34801561044a57600080fd5b50610453610d5d565b60405161035a9190613636565b34801561046c57600080fd5b506103dd61047b36600461367a565b610db4565b34801561048c57600080fd5b506104a061049b3660046136bb565b610dbf565b604080516001600160a01b03909316835260208301919091520161035a565b3480156104cb57600080fd5b50610410600c5481565b3480156104e157600080fd5b50610410600f5481565b3480156104f757600080fd5b506104106105063660046135ed565b610e25565b34801561051757600080fd5b50610410610526366004613619565b60146020526000908152604090205481565b34801561054457600080fd5b506103dd6105533660046135bf565b610fce565b34801561056457600080fd5b5061034e61057336600461375b565b61102d565b34801561058457600080fd5b506103dd61059336600461367a565b611042565b3480156105a457600080fd5b506103dd6105b3366004613862565b61105d565b3480156105c457600080fd5b506104106105d33660046135bf565b6113b1565b3480156105e457600080fd5b506103dd6105f336600461391a565b61142e565b34801561060457600080fd5b506103a56106133660046135bf565b61149b565b34801561062457600080fd5b50610410600b5481565b34801561063a57600080fd5b506103786114ad565b34801561064f57600080fd5b5061041061065e366004613619565b61153b565b34801561066f57600080fd5b506103dd6115e7565b34801561068457600080fd5b506103dd6106933660046135bf565b61164d565b3480156106a457600080fd5b50610410600e5481565b3480156106ba57600080fd5b506103dd6106c93660046135ed565b6116ac565b3480156106da57600080fd5b50610410600d5481565b3480156106f057600080fd5b506013546103a5906001600160a01b031681565b34801561071057600080fd5b5060155461071e9060ff1681565b60405161035a9190613992565b34801561073757600080fd5b506103dd6107463660046135ed565b611774565b34801561075757600080fd5b506008546001600160a01b03166103a5565b34801561077557600080fd5b506104106107843660046135bf565b6117d4565b34801561079557600080fd5b506103786117f5565b3480156107aa57600080fd5b506103dd6107b93660046139d3565b611804565b3480156107ca57600080fd5b5047610410565b3480156107dd57600080fd5b5061041060105481565b3480156107f357600080fd5b506103dd610802366004613a11565b6118e7565b34801561081357600080fd5b506103dd6108223660046135bf565b611976565b34801561083357600080fd5b506103786108423660046135bf565b6119e1565b34801561085357600080fd5b506103dd6108623660046135bf565b611a6e565b34801561087357600080fd5b5061041060075481565b6103dd61088b366004613a91565b611acd565b34801561089c57600080fd5b5061034e6108ab366004613ae4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6103dd6108e73660046135bf565b611e29565b3480156108f857600080fd5b506103dd610907366004613619565b612034565b34801561091857600080fd5b506103dd6109273660046135ed565b612116565b34801561093857600080fd5b50610410610947366004613619565b6001600160a01b031660009081526014602052604090205490565b34801561096e57600080fd5b506103dd61097d3660046135bf565b612213565b600061098d8261231b565b8061099c575061099c8261244a565b92915050565b6060600180546109b190613b12565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd90613b12565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b5050505050905090565b6000610a3f826124e2565b610ab65760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6008546001600160a01b03163314610b2c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b6000610b39826001613b95565b600b555050565b6000610b4b8261149b565b9050806001600160a01b0316836001600160a01b03161415610bd55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610aad565b336001600160a01b0382161480610bf15750610bf181336108ab565b610c635760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610aad565b610c6e8383836124f6565b505050565b6008546001600160a01b03163314610ccd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b6001600160a01b038116610d235760405162461bcd60e51b815260206004820152601060248201527f496e76616c6964204164647265737321000000000000000000000000000000006044820152606401610aad565b601380547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60606012805480602002602001604051908101604052809291908181526020018280548015610a2a57602002820191906000526020600020905b815481526020019060010190808311610d97575050505050905090565b610c6e83838361256a565b60408051808201909152600a546001600160a01b0381168083527401000000000000000000000000000000000000000090910462ffffff1660208301819052909160009161271090610e119086613bad565b610e1b9190613c19565b9150509250929050565b6000610e308361153b565b8210610ea45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610aad565b600080549080805b83811015610f5f576000818152600360209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610f1057805192505b876001600160a01b0316836001600160a01b03161415610f4c5786841415610f3e5750935061099c92505050565b83610f4881613c2d565b9450505b5080610f5781613c2d565b915050610eac565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610aad565b6008546001600160a01b031633146110285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b600c55565b600061103a828585612997565b949350505050565b610c6e838383604051806020016040528060008152506118e7565b3332146110ac5760405162461bcd60e51b815260206004820152600860248201527f4e6f20626f7473210000000000000000000000000000000000000000000000006044820152606401610aad565b600060155460ff1660018111156110c5576110c5613963565b14156111135760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964205374617465000000000000000000000000000000000000006044820152606401610aad565b6010548111156111655760405162461bcd60e51b815260206004820152601960248201527f4578636565647320617661696c61626c6520746f6b656e7321000000000000006044820152606401610aad565b60005b818110156113915760135433906001600160a01b0316636352211e85858581811061119557611195613c66565b905060200201356040518263ffffffff1660e01b81526004016111ba91815260200190565b60206040518083038186803b1580156111d257600080fd5b505afa1580156111e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120a9190613c95565b6001600160a01b0316146112605760405162461bcd60e51b815260206004820152601360248201527f4e6f74204f776e6572206f6620546f6b656e21000000000000000000000000006044820152606401610aad565b6011600084848481811061127657611276613c66565b602090810292909201358352508101919091526040016000205460ff16156113055760405162461bcd60e51b8152602060048201526024808201527f506173732068617320616c7265616479206265656e207573656420746f20636c60448201527f61696d21000000000000000000000000000000000000000000000000000000006064820152608401610aad565b60016011600085858581811061131d5761131d613c66565b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550601283838381811061135d5761135d613c66565b835460018101855560009485526020948590209190940292909201359190920155508061138981613c2d565b915050611168565b506010546113a0908290613cb2565b6010556113ad33826129ad565b5050565b6000805482111561142a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610aad565b5090565b6008546001600160a01b031633146114885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b80516113ad906016906020840190613454565b60006114a6826129c7565b5192915050565b601680546114ba90613b12565b80601f01602080910402602001604051908101604052809291908181526020018280546114e690613b12565b80156115335780601f1061150857610100808354040283529160200191611533565b820191906000526020600020905b81548152906001019060200180831161151657829003601f168201915b505050505081565b60006001600160a01b0382166115b95760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610aad565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6008546001600160a01b031633146116415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b61164b6000612ba1565b565b6008546001600160a01b031633146116a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b600f55565b6008546001600160a01b031633146117065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b600b548161171360005490565b61171d9190613b95565b1061176a5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320617661696c61626c6520746f6b656e7321000000000000006044820152606401610aad565b6113ad82826129ad565b6001600160a01b0382166117ca5760405162461bcd60e51b815260206004820152601060248201527f496e76616c6964206164647265737321000000000000000000000000000000006044820152606401610aad565b6113ad8282612c0b565b601281815481106117e457600080fd5b600091825260209091200154905081565b6060600280546109b190613b12565b6001600160a01b03821633141561185d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610aad565b3360008181526006602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6118f284848461256a565b6118fe84848484612cd0565b6119705760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610aad565b50505050565b6008546001600160a01b031633146119d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b6119db816001613b95565b600e5550565b60606119f08261ffff166124e2565b611a3c5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610aad565b6016611a4783612e9b565b604051602001611a58929190613ce5565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314611ac85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b600d55565b333214611b1c5760405162461bcd60e51b815260206004820152600860248201527f4e6f20626f7473210000000000000000000000000000000000000000000000006044820152606401610aad565b60018060155460ff166001811115611b3657611b36613963565b14611b835760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964207374617465000000000000000000000000000000000000006044820152606401610aad565b84601054600b54611b949190613cb2565b81611b9e60005490565b611ba89190613b95565b10611bf55760405162461bcd60e51b815260206004820152601860248201527f4578636565647320617661696c61626c6520746f6b656e7300000000000000006044820152606401610aad565b85600c54611c039190613bad565b34811115611c535760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610aad565b600e548710611ca45760405162461bcd60e51b815260206004820152601260248201527f4578636565647320616c6c6f77616e63652100000000000000000000000000006044820152606401610aad565b6013546040517f70a082310000000000000000000000000000000000000000000000000000000081523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611d0157600080fd5b505afa158015611d15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d399190613dc3565b1180611d805750611d80600f548588888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061102d92505050565b611df25760405162461bcd60e51b815260206004820152602560248201527f4e6f742046756e6b6c6973746564206e6f722046756e6b79205061737320486f60448201527f6c646572210000000000000000000000000000000000000000000000000000006064820152608401610aad565b611dfc33886129ad565b3360009081526014602052604081208054899290611e1b908490613b95565b909155505050505050505050565b333214611e785760405162461bcd60e51b815260206004820152600860248201527f4e6f20626f7473210000000000000000000000000000000000000000000000006044820152606401610aad565b60018060155460ff166001811115611e9257611e92613963565b14611edf5760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964207374617465000000000000000000000000000000000000006044820152606401610aad565b81601054600b54611ef09190613cb2565b81611efa60005490565b611f049190613b95565b10611f515760405162461bcd60e51b815260206004820152601860248201527f4578636565647320617661696c61626c6520746f6b656e7300000000000000006044820152606401610aad565b82600d54611f5f9190613bad565b34811115611faf5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610aad565b600e5484106120005760405162461bcd60e51b815260206004820152601260248201527f4578636565647320616c6c6f77616e63652100000000000000000000000000006044820152606401610aad565b61200a33856129ad565b3360009081526014602052604081208054869290612029908490613b95565b909155505050505050565b6008546001600160a01b0316331461208e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b6001600160a01b03811661210a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610aad565b61211381612ba1565b50565b6008546001600160a01b031633146121705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146121bd576040519150601f19603f3d011682016040523d82523d6000602084013e6121c2565b606091505b5050905080610c6e5760405162461bcd60e51b815260206004820152601460248201527f4661696c656420746f2073656e642045746865720000000000000000000000006044820152606401610aad565b6008546001600160a01b0316331461226d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b600281106122bd5760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420436f6e7472616374205374617465210000000000000000006044820152606401610aad565b806122ed5750601580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b50601580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806123ae57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806123fa57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b8061099c57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461099c565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a00000000000000000000000000000000000000000000000000000000148061099c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f01ffc9a7000000000000000000000000000000000000000000000000000000001492915050565b60008054821115801561099c575050151590565b60008281526005602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612575826129c7565b80519091506000906001600160a01b0316336001600160a01b031614806125ac5750336125a184610a34565b6001600160a01b0316145b806125be575081516125be90336108ab565b9050806126335760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610aad565b846001600160a01b031682600001516001600160a01b0316146126be5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610aad565b6001600160a01b03841661273a5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610aad565b61274a60008484600001516124f6565b6001600160a01b03851660009081526004602052604081208054600192906127859084906fffffffffffffffffffffffffffffffff16613ddc565b82546101009290920a6fffffffffffffffffffffffffffffffff8181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926127da91859116613e0d565b82546fffffffffffffffffffffffffffffffff9182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff42811660208085019182526000898152600390915294852093518454915190921674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091169190921617179055612894846001613b95565b6000818152600360205260409020549091506001600160a01b031661294d576128bc816124e2565b1561294d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff908116828501908152600087815260039093529490912092518354945190911674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000826129a48584612fcd565b14949350505050565b6113ad828260405180602001604052806000815250613079565b60408051808201909152600080825260208201526129e4826124e2565b612a565760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610aad565b60007f00000000000000000000000000000000000000000000000000000000000000008310612ab757612aa97f000000000000000000000000000000000000000000000000000000000000000084613cb2565b612ab4906001613b95565b90505b825b818110612b32576000818152600360209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215612b1f57949350505050565b5080612b2a81613e41565b915050612ab9565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610aad565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612710811115612c5d5760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f20686967680000000000006044820152606401610aad565b604080518082019091526001600160a01b0390921680835262ffffff9091166020909201829052600a8054740100000000000000000000000000000000000000009093027fffffffffffffffffff0000000000000000000000000000000000000000000000909316909117919091179055565b60006001600160a01b0384163b15612e90576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612d2d903390899088908890600401613e76565b602060405180830381600087803b158015612d4757600080fd5b505af1925050508015612d95575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612d9291810190613eb2565b60015b612e45573d808015612dc3576040519150601f19603f3d011682016040523d82523d6000602084013e612dc8565b606091505b508051612e3d5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610aad565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a020000000000000000000000000000000000000000000000000000000014905061103a565b506001949350505050565b606081612edb57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612f055780612eef81613c2d565b9150612efe9050600a83613c19565b9150612edf565b60008167ffffffffffffffff811115612f2057612f206136dd565b6040519080825280601f01601f191660200182016040528015612f4a576020820181803683370190505b5090505b841561103a57612f5f600183613cb2565b9150612f6c600a86613ecf565b612f77906030613b95565b60f81b818381518110612f8c57612f8c613c66565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612fc6600a86613c19565b9450612f4e565b600081815b8451811015613071576000858281518110612fef57612fef613c66565b6020026020010151905080831161303157604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061305e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061306981613c2d565b915050612fd2565b509392505050565b60008054613088906001613b95565b90506001600160a01b0384166131065760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610aad565b61310f816124e2565b1561315c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610aad565b7f00000000000000000000000000000000000000000000000000000000000000008311156131f25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f67680000000000000000000000000000000000000000000000000000000000006064820152608401610aad565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff80821683527001000000000000000000000000000000009091041691810191909152815180830190925280519091908190613264908790613e0d565b6fffffffffffffffffffffffffffffffff16815260200185836020015161328b9190613e0d565b6fffffffffffffffffffffffffffffffff9081169091526001600160a01b03808816600081815260046020908152604080832087519783015187167001000000000000000000000000000000000297909616969096179094558451808601865291825267ffffffffffffffff428116838601908152888352600390955294812091518254945190951674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090941694909216939093179190911790915582905b858110156134405760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46133ae6000888488612cd0565b6134205760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610aad565b8161342a81613c2d565b925050808061343890613c2d565b915050613361565b5061344c600182613cb2565b60005561298f565b82805461346090613b12565b90600052602060002090601f01602090048101928261348257600085556134c8565b82601f1061349b57805160ff19168380011785556134c8565b828001600101855582156134c8579182015b828111156134c85782518255916020019190600101906134ad565b5061142a9291505b8082111561142a57600081556001016134d0565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461211357600080fd5b60006020828403121561352457600080fd5b813561352f816134e4565b9392505050565b60005b83811015613551578181015183820152602001613539565b838111156119705750506000910152565b6000815180845261357a816020860160208601613536565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061352f6020830184613562565b6000602082840312156135d157600080fd5b5035919050565b6001600160a01b038116811461211357600080fd5b6000806040838503121561360057600080fd5b823561360b816135d8565b946020939093013593505050565b60006020828403121561362b57600080fd5b813561352f816135d8565b6020808252825182820181905260009190848201906040850190845b8181101561366e57835183529284019291840191600101613652565b50909695505050505050565b60008060006060848603121561368f57600080fd5b833561369a816135d8565b925060208401356136aa816135d8565b929592945050506040919091013590565b600080604083850312156136ce57600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715613753576137536136dd565b604052919050565b60008060006060848603121561377057600080fd5b833592506020808501359250604085013567ffffffffffffffff8082111561379757600080fd5b818701915087601f8301126137ab57600080fd5b8135818111156137bd576137bd6136dd565b8060051b91506137ce84830161370c565b818152918301840191848101908a8411156137e857600080fd5b938501935b83851015613806578435825293850193908501906137ed565b8096505050505050509250925092565b60008083601f84011261382857600080fd5b50813567ffffffffffffffff81111561384057600080fd5b6020830191508360208260051b850101111561385b57600080fd5b9250929050565b6000806020838503121561387557600080fd5b823567ffffffffffffffff81111561388c57600080fd5b61389885828601613816565b90969095509350505050565b600067ffffffffffffffff8311156138be576138be6136dd565b6138ef60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601160161370c565b905082815283838301111561390357600080fd5b828260208301376000602084830101529392505050565b60006020828403121561392c57600080fd5b813567ffffffffffffffff81111561394357600080fd5b8201601f8101841361395457600080fd5b61103a848235602084016138a4565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60208101600283106139cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b600080604083850312156139e657600080fd5b82356139f1816135d8565b915060208301358015158114613a0657600080fd5b809150509250929050565b60008060008060808587031215613a2757600080fd5b8435613a32816135d8565b93506020850135613a42816135d8565b925060408501359150606085013567ffffffffffffffff811115613a6557600080fd5b8501601f81018713613a7657600080fd5b613a85878235602084016138a4565b91505092959194509250565b60008060008060608587031215613aa757600080fd5b84359350602085013567ffffffffffffffff811115613ac557600080fd5b613ad187828801613816565b9598909750949560400135949350505050565b60008060408385031215613af757600080fd5b8235613b02816135d8565b91506020830135613a06816135d8565b600181811c90821680613b2657607f821691505b60208210811415613b60577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613ba857613ba8613b66565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613be557613be5613b66565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613c2857613c28613bea565b500490565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c5f57613c5f613b66565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215613ca757600080fd5b815161352f816135d8565b600082821015613cc457613cc4613b66565b500390565b60008151613cdb818560208601613536565b9290920192915050565b600080845481600182811c915080831680613d0157607f831692505b6020808410821415613d3a577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b818015613d4e5760018114613d7d57613daa565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00861689528489019650613daa565b60008b81526020902060005b86811015613da25781548b820152908501908301613d89565b505084890196505b505050505050613dba8185613cc9565b95945050505050565b600060208284031215613dd557600080fd5b5051919050565b60006fffffffffffffffffffffffffffffffff83811690831681811015613e0557613e05613b66565b039392505050565b60006fffffffffffffffffffffffffffffffff808316818516808303821115613e3857613e38613b66565b01949350505050565b600081613e5057613e50613b66565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613ea86080830184613562565b9695505050505050565b600060208284031215613ec457600080fd5b815161352f816134e4565b600082613ede57613ede613bea565b50069056fea2646970667358221220f1f47da066f2f65bbb9bce4258ea6250a0f7b896e83769cc3523453a8f7a6af264736f6c63430008090033

Deployed Bytecode

0x6080604052600436106103295760003560e01c80637cb64759116101a5578063b47dff62116100ec578063dcf13a4611610095578063f2fde38b1161006f578063f2fde38b146108ec578063f3fef3a31461090c578063fae965711461092c578063fb7265ff1461096257600080fd5b8063dcf13a461461087d578063e985e9c514610890578063efd0cbf9146108d957600080fd5b8063c87b56dd116100c6578063c87b56dd14610827578063cd2c705214610847578063d7224ba01461086757600080fd5b8063b47dff62146107d1578063b88d4fde146107e7578063c49c1a921461080757600080fd5b80638c7ea24b1161014e57806395d89b411161012857806395d89b4114610789578063a22cb4651461079e578063b0a1c1c4146107be57600080fd5b80638c7ea24b1461072b5780638da5cb5b1461074b57806394a353861461076957600080fd5b80637de69d5f1161017f5780637de69d5f146106ce5780637f478383146106e457806385209ee01461070457600080fd5b80637cb64759146106785780637cf4b367146106985780637de55fe1146106ae57600080fd5b80632f745c59116102745780634f6ccce71161021d5780636a573c1e116101f75780636a573c1e146106185780636c0360eb1461062e57806370a0823114610643578063715018a61461066357600080fd5b80634f6ccce7146105b857806355f804b3146105d85780636352211e146105f857600080fd5b80633423e5481161024e5780633423e5481461055857806342842e0e146105785780634ac4295f1461059857600080fd5b80632f745c59146104eb5780633023eba61461050b578063311df29a1461053857600080fd5b806321c03a03116102d65780632a55205a116102b05780632a55205a146104805780632b038411146104bf5780632eb4a7ab146104d557600080fd5b806321c03a031461041e57806323612f9d1461043e57806323b872dd1461046057600080fd5b806308290dc51161030757806308290dc5146103bd578063095ea7b3146103df57806318160ddd146103ff57600080fd5b806301ffc9a71461032e57806306fdde0314610363578063081812fc14610385575b600080fd5b34801561033a57600080fd5b5061034e610349366004613512565b610982565b60405190151581526020015b60405180910390f35b34801561036f57600080fd5b506103786109a2565b60405161035a91906135ac565b34801561039157600080fd5b506103a56103a03660046135bf565b610a34565b6040516001600160a01b03909116815260200161035a565b3480156103c957600080fd5b506103dd6103d83660046135bf565b610ad2565b005b3480156103eb57600080fd5b506103dd6103fa3660046135ed565b610b40565b34801561040b57600080fd5b506000545b60405190815260200161035a565b34801561042a57600080fd5b506103dd610439366004613619565b610c73565b34801561044a57600080fd5b50610453610d5d565b60405161035a9190613636565b34801561046c57600080fd5b506103dd61047b36600461367a565b610db4565b34801561048c57600080fd5b506104a061049b3660046136bb565b610dbf565b604080516001600160a01b03909316835260208301919091520161035a565b3480156104cb57600080fd5b50610410600c5481565b3480156104e157600080fd5b50610410600f5481565b3480156104f757600080fd5b506104106105063660046135ed565b610e25565b34801561051757600080fd5b50610410610526366004613619565b60146020526000908152604090205481565b34801561054457600080fd5b506103dd6105533660046135bf565b610fce565b34801561056457600080fd5b5061034e61057336600461375b565b61102d565b34801561058457600080fd5b506103dd61059336600461367a565b611042565b3480156105a457600080fd5b506103dd6105b3366004613862565b61105d565b3480156105c457600080fd5b506104106105d33660046135bf565b6113b1565b3480156105e457600080fd5b506103dd6105f336600461391a565b61142e565b34801561060457600080fd5b506103a56106133660046135bf565b61149b565b34801561062457600080fd5b50610410600b5481565b34801561063a57600080fd5b506103786114ad565b34801561064f57600080fd5b5061041061065e366004613619565b61153b565b34801561066f57600080fd5b506103dd6115e7565b34801561068457600080fd5b506103dd6106933660046135bf565b61164d565b3480156106a457600080fd5b50610410600e5481565b3480156106ba57600080fd5b506103dd6106c93660046135ed565b6116ac565b3480156106da57600080fd5b50610410600d5481565b3480156106f057600080fd5b506013546103a5906001600160a01b031681565b34801561071057600080fd5b5060155461071e9060ff1681565b60405161035a9190613992565b34801561073757600080fd5b506103dd6107463660046135ed565b611774565b34801561075757600080fd5b506008546001600160a01b03166103a5565b34801561077557600080fd5b506104106107843660046135bf565b6117d4565b34801561079557600080fd5b506103786117f5565b3480156107aa57600080fd5b506103dd6107b93660046139d3565b611804565b3480156107ca57600080fd5b5047610410565b3480156107dd57600080fd5b5061041060105481565b3480156107f357600080fd5b506103dd610802366004613a11565b6118e7565b34801561081357600080fd5b506103dd6108223660046135bf565b611976565b34801561083357600080fd5b506103786108423660046135bf565b6119e1565b34801561085357600080fd5b506103dd6108623660046135bf565b611a6e565b34801561087357600080fd5b5061041060075481565b6103dd61088b366004613a91565b611acd565b34801561089c57600080fd5b5061034e6108ab366004613ae4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6103dd6108e73660046135bf565b611e29565b3480156108f857600080fd5b506103dd610907366004613619565b612034565b34801561091857600080fd5b506103dd6109273660046135ed565b612116565b34801561093857600080fd5b50610410610947366004613619565b6001600160a01b031660009081526014602052604090205490565b34801561096e57600080fd5b506103dd61097d3660046135bf565b612213565b600061098d8261231b565b8061099c575061099c8261244a565b92915050565b6060600180546109b190613b12565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd90613b12565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b5050505050905090565b6000610a3f826124e2565b610ab65760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6008546001600160a01b03163314610b2c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b6000610b39826001613b95565b600b555050565b6000610b4b8261149b565b9050806001600160a01b0316836001600160a01b03161415610bd55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610aad565b336001600160a01b0382161480610bf15750610bf181336108ab565b610c635760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610aad565b610c6e8383836124f6565b505050565b6008546001600160a01b03163314610ccd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b6001600160a01b038116610d235760405162461bcd60e51b815260206004820152601060248201527f496e76616c6964204164647265737321000000000000000000000000000000006044820152606401610aad565b601380547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60606012805480602002602001604051908101604052809291908181526020018280548015610a2a57602002820191906000526020600020905b815481526020019060010190808311610d97575050505050905090565b610c6e83838361256a565b60408051808201909152600a546001600160a01b0381168083527401000000000000000000000000000000000000000090910462ffffff1660208301819052909160009161271090610e119086613bad565b610e1b9190613c19565b9150509250929050565b6000610e308361153b565b8210610ea45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610aad565b600080549080805b83811015610f5f576000818152600360209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610f1057805192505b876001600160a01b0316836001600160a01b03161415610f4c5786841415610f3e5750935061099c92505050565b83610f4881613c2d565b9450505b5080610f5781613c2d565b915050610eac565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610aad565b6008546001600160a01b031633146110285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b600c55565b600061103a828585612997565b949350505050565b610c6e838383604051806020016040528060008152506118e7565b3332146110ac5760405162461bcd60e51b815260206004820152600860248201527f4e6f20626f7473210000000000000000000000000000000000000000000000006044820152606401610aad565b600060155460ff1660018111156110c5576110c5613963565b14156111135760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964205374617465000000000000000000000000000000000000006044820152606401610aad565b6010548111156111655760405162461bcd60e51b815260206004820152601960248201527f4578636565647320617661696c61626c6520746f6b656e7321000000000000006044820152606401610aad565b60005b818110156113915760135433906001600160a01b0316636352211e85858581811061119557611195613c66565b905060200201356040518263ffffffff1660e01b81526004016111ba91815260200190565b60206040518083038186803b1580156111d257600080fd5b505afa1580156111e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120a9190613c95565b6001600160a01b0316146112605760405162461bcd60e51b815260206004820152601360248201527f4e6f74204f776e6572206f6620546f6b656e21000000000000000000000000006044820152606401610aad565b6011600084848481811061127657611276613c66565b602090810292909201358352508101919091526040016000205460ff16156113055760405162461bcd60e51b8152602060048201526024808201527f506173732068617320616c7265616479206265656e207573656420746f20636c60448201527f61696d21000000000000000000000000000000000000000000000000000000006064820152608401610aad565b60016011600085858581811061131d5761131d613c66565b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550601283838381811061135d5761135d613c66565b835460018101855560009485526020948590209190940292909201359190920155508061138981613c2d565b915050611168565b506010546113a0908290613cb2565b6010556113ad33826129ad565b5050565b6000805482111561142a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610aad565b5090565b6008546001600160a01b031633146114885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b80516113ad906016906020840190613454565b60006114a6826129c7565b5192915050565b601680546114ba90613b12565b80601f01602080910402602001604051908101604052809291908181526020018280546114e690613b12565b80156115335780601f1061150857610100808354040283529160200191611533565b820191906000526020600020905b81548152906001019060200180831161151657829003601f168201915b505050505081565b60006001600160a01b0382166115b95760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610aad565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6008546001600160a01b031633146116415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b61164b6000612ba1565b565b6008546001600160a01b031633146116a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b600f55565b6008546001600160a01b031633146117065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b600b548161171360005490565b61171d9190613b95565b1061176a5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320617661696c61626c6520746f6b656e7321000000000000006044820152606401610aad565b6113ad82826129ad565b6001600160a01b0382166117ca5760405162461bcd60e51b815260206004820152601060248201527f496e76616c6964206164647265737321000000000000000000000000000000006044820152606401610aad565b6113ad8282612c0b565b601281815481106117e457600080fd5b600091825260209091200154905081565b6060600280546109b190613b12565b6001600160a01b03821633141561185d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610aad565b3360008181526006602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6118f284848461256a565b6118fe84848484612cd0565b6119705760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610aad565b50505050565b6008546001600160a01b031633146119d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b6119db816001613b95565b600e5550565b60606119f08261ffff166124e2565b611a3c5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610aad565b6016611a4783612e9b565b604051602001611a58929190613ce5565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314611ac85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b600d55565b333214611b1c5760405162461bcd60e51b815260206004820152600860248201527f4e6f20626f7473210000000000000000000000000000000000000000000000006044820152606401610aad565b60018060155460ff166001811115611b3657611b36613963565b14611b835760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964207374617465000000000000000000000000000000000000006044820152606401610aad565b84601054600b54611b949190613cb2565b81611b9e60005490565b611ba89190613b95565b10611bf55760405162461bcd60e51b815260206004820152601860248201527f4578636565647320617661696c61626c6520746f6b656e7300000000000000006044820152606401610aad565b85600c54611c039190613bad565b34811115611c535760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610aad565b600e548710611ca45760405162461bcd60e51b815260206004820152601260248201527f4578636565647320616c6c6f77616e63652100000000000000000000000000006044820152606401610aad565b6013546040517f70a082310000000000000000000000000000000000000000000000000000000081523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611d0157600080fd5b505afa158015611d15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d399190613dc3565b1180611d805750611d80600f548588888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061102d92505050565b611df25760405162461bcd60e51b815260206004820152602560248201527f4e6f742046756e6b6c6973746564206e6f722046756e6b79205061737320486f60448201527f6c646572210000000000000000000000000000000000000000000000000000006064820152608401610aad565b611dfc33886129ad565b3360009081526014602052604081208054899290611e1b908490613b95565b909155505050505050505050565b333214611e785760405162461bcd60e51b815260206004820152600860248201527f4e6f20626f7473210000000000000000000000000000000000000000000000006044820152606401610aad565b60018060155460ff166001811115611e9257611e92613963565b14611edf5760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964207374617465000000000000000000000000000000000000006044820152606401610aad565b81601054600b54611ef09190613cb2565b81611efa60005490565b611f049190613b95565b10611f515760405162461bcd60e51b815260206004820152601860248201527f4578636565647320617661696c61626c6520746f6b656e7300000000000000006044820152606401610aad565b82600d54611f5f9190613bad565b34811115611faf5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610aad565b600e5484106120005760405162461bcd60e51b815260206004820152601260248201527f4578636565647320616c6c6f77616e63652100000000000000000000000000006044820152606401610aad565b61200a33856129ad565b3360009081526014602052604081208054869290612029908490613b95565b909155505050505050565b6008546001600160a01b0316331461208e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b6001600160a01b03811661210a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610aad565b61211381612ba1565b50565b6008546001600160a01b031633146121705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146121bd576040519150601f19603f3d011682016040523d82523d6000602084013e6121c2565b606091505b5050905080610c6e5760405162461bcd60e51b815260206004820152601460248201527f4661696c656420746f2073656e642045746865720000000000000000000000006044820152606401610aad565b6008546001600160a01b0316331461226d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aad565b600281106122bd5760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420436f6e7472616374205374617465210000000000000000006044820152606401610aad565b806122ed5750601580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b50601580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806123ae57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806123fa57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b8061099c57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461099c565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a00000000000000000000000000000000000000000000000000000000148061099c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f01ffc9a7000000000000000000000000000000000000000000000000000000001492915050565b60008054821115801561099c575050151590565b60008281526005602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612575826129c7565b80519091506000906001600160a01b0316336001600160a01b031614806125ac5750336125a184610a34565b6001600160a01b0316145b806125be575081516125be90336108ab565b9050806126335760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610aad565b846001600160a01b031682600001516001600160a01b0316146126be5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610aad565b6001600160a01b03841661273a5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610aad565b61274a60008484600001516124f6565b6001600160a01b03851660009081526004602052604081208054600192906127859084906fffffffffffffffffffffffffffffffff16613ddc565b82546101009290920a6fffffffffffffffffffffffffffffffff8181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926127da91859116613e0d565b82546fffffffffffffffffffffffffffffffff9182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff42811660208085019182526000898152600390915294852093518454915190921674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091169190921617179055612894846001613b95565b6000818152600360205260409020549091506001600160a01b031661294d576128bc816124e2565b1561294d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff908116828501908152600087815260039093529490912092518354945190911674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000826129a48584612fcd565b14949350505050565b6113ad828260405180602001604052806000815250613079565b60408051808201909152600080825260208201526129e4826124e2565b612a565760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610aad565b60007f000000000000000000000000000000000000000000000000000000000000000a8310612ab757612aa97f000000000000000000000000000000000000000000000000000000000000000a84613cb2565b612ab4906001613b95565b90505b825b818110612b32576000818152600360209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215612b1f57949350505050565b5080612b2a81613e41565b915050612ab9565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610aad565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612710811115612c5d5760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f20686967680000000000006044820152606401610aad565b604080518082019091526001600160a01b0390921680835262ffffff9091166020909201829052600a8054740100000000000000000000000000000000000000009093027fffffffffffffffffff0000000000000000000000000000000000000000000000909316909117919091179055565b60006001600160a01b0384163b15612e90576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612d2d903390899088908890600401613e76565b602060405180830381600087803b158015612d4757600080fd5b505af1925050508015612d95575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612d9291810190613eb2565b60015b612e45573d808015612dc3576040519150601f19603f3d011682016040523d82523d6000602084013e612dc8565b606091505b508051612e3d5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610aad565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a020000000000000000000000000000000000000000000000000000000014905061103a565b506001949350505050565b606081612edb57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612f055780612eef81613c2d565b9150612efe9050600a83613c19565b9150612edf565b60008167ffffffffffffffff811115612f2057612f206136dd565b6040519080825280601f01601f191660200182016040528015612f4a576020820181803683370190505b5090505b841561103a57612f5f600183613cb2565b9150612f6c600a86613ecf565b612f77906030613b95565b60f81b818381518110612f8c57612f8c613c66565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612fc6600a86613c19565b9450612f4e565b600081815b8451811015613071576000858281518110612fef57612fef613c66565b6020026020010151905080831161303157604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061305e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061306981613c2d565b915050612fd2565b509392505050565b60008054613088906001613b95565b90506001600160a01b0384166131065760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610aad565b61310f816124e2565b1561315c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610aad565b7f000000000000000000000000000000000000000000000000000000000000000a8311156131f25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f67680000000000000000000000000000000000000000000000000000000000006064820152608401610aad565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff80821683527001000000000000000000000000000000009091041691810191909152815180830190925280519091908190613264908790613e0d565b6fffffffffffffffffffffffffffffffff16815260200185836020015161328b9190613e0d565b6fffffffffffffffffffffffffffffffff9081169091526001600160a01b03808816600081815260046020908152604080832087519783015187167001000000000000000000000000000000000297909616969096179094558451808601865291825267ffffffffffffffff428116838601908152888352600390955294812091518254945190951674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090941694909216939093179190911790915582905b858110156134405760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46133ae6000888488612cd0565b6134205760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610aad565b8161342a81613c2d565b925050808061343890613c2d565b915050613361565b5061344c600182613cb2565b60005561298f565b82805461346090613b12565b90600052602060002090601f01602090048101928261348257600085556134c8565b82601f1061349b57805160ff19168380011785556134c8565b828001600101855582156134c8579182015b828111156134c85782518255916020019190600101906134ad565b5061142a9291505b8082111561142a57600081556001016134d0565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461211357600080fd5b60006020828403121561352457600080fd5b813561352f816134e4565b9392505050565b60005b83811015613551578181015183820152602001613539565b838111156119705750506000910152565b6000815180845261357a816020860160208601613536565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061352f6020830184613562565b6000602082840312156135d157600080fd5b5035919050565b6001600160a01b038116811461211357600080fd5b6000806040838503121561360057600080fd5b823561360b816135d8565b946020939093013593505050565b60006020828403121561362b57600080fd5b813561352f816135d8565b6020808252825182820181905260009190848201906040850190845b8181101561366e57835183529284019291840191600101613652565b50909695505050505050565b60008060006060848603121561368f57600080fd5b833561369a816135d8565b925060208401356136aa816135d8565b929592945050506040919091013590565b600080604083850312156136ce57600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715613753576137536136dd565b604052919050565b60008060006060848603121561377057600080fd5b833592506020808501359250604085013567ffffffffffffffff8082111561379757600080fd5b818701915087601f8301126137ab57600080fd5b8135818111156137bd576137bd6136dd565b8060051b91506137ce84830161370c565b818152918301840191848101908a8411156137e857600080fd5b938501935b83851015613806578435825293850193908501906137ed565b8096505050505050509250925092565b60008083601f84011261382857600080fd5b50813567ffffffffffffffff81111561384057600080fd5b6020830191508360208260051b850101111561385b57600080fd5b9250929050565b6000806020838503121561387557600080fd5b823567ffffffffffffffff81111561388c57600080fd5b61389885828601613816565b90969095509350505050565b600067ffffffffffffffff8311156138be576138be6136dd565b6138ef60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601160161370c565b905082815283838301111561390357600080fd5b828260208301376000602084830101529392505050565b60006020828403121561392c57600080fd5b813567ffffffffffffffff81111561394357600080fd5b8201601f8101841361395457600080fd5b61103a848235602084016138a4565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60208101600283106139cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b600080604083850312156139e657600080fd5b82356139f1816135d8565b915060208301358015158114613a0657600080fd5b809150509250929050565b60008060008060808587031215613a2757600080fd5b8435613a32816135d8565b93506020850135613a42816135d8565b925060408501359150606085013567ffffffffffffffff811115613a6557600080fd5b8501601f81018713613a7657600080fd5b613a85878235602084016138a4565b91505092959194509250565b60008060008060608587031215613aa757600080fd5b84359350602085013567ffffffffffffffff811115613ac557600080fd5b613ad187828801613816565b9598909750949560400135949350505050565b60008060408385031215613af757600080fd5b8235613b02816135d8565b91506020830135613a06816135d8565b600181811c90821680613b2657607f821691505b60208210811415613b60577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613ba857613ba8613b66565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613be557613be5613b66565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613c2857613c28613bea565b500490565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c5f57613c5f613b66565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215613ca757600080fd5b815161352f816135d8565b600082821015613cc457613cc4613b66565b500390565b60008151613cdb818560208601613536565b9290920192915050565b600080845481600182811c915080831680613d0157607f831692505b6020808410821415613d3a577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b818015613d4e5760018114613d7d57613daa565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00861689528489019650613daa565b60008b81526020902060005b86811015613da25781548b820152908501908301613d89565b505084890196505b505050505050613dba8185613cc9565b95945050505050565b600060208284031215613dd557600080fd5b5051919050565b60006fffffffffffffffffffffffffffffffff83811690831681811015613e0557613e05613b66565b039392505050565b60006fffffffffffffffffffffffffffffffff808316818516808303821115613e3857613e38613b66565b01949350505050565b600081613e5057613e50613b66565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613ea86080830184613562565b9695505050505050565b600060208284031215613ec457600080fd5b815161352f816134e4565b600082613ede57613ede613bea565b50069056fea2646970667358221220f1f47da066f2f65bbb9bce4258ea6250a0f7b896e83769cc3523453a8f7a6af264736f6c63430008090033

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.