ETH Price: $3,170.47 (-7.75%)
Gas: 8 Gwei

Token

Werewolves of Wall Street (WOLF)
 

Overview

Max Total Supply

567 WOLF

Holders

176

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
7 WOLF
0x3d7b16f935b347c12bf0f794fdbc89e0150fe297
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

567 werewolves on ETH blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Wolf

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-20
*/

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://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


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


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


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


// OpenZeppelin Contracts v4.4.1 (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/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @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);

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

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


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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: wolf.sol

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



contract Wolf is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.04 ether;
    uint256 public presaleCost = 0.04 ether;
    uint256 public maxSupply = 10000;
    bool public paused = false;
    bool public inPreSale = true;
    mapping(address => bool) public presaleWallets;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }


    function mint(uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();

        require(!paused);
        require(_mintAmount > 0);
        require(supply + _mintAmount <= maxSupply);

        if (msg.sender != owner()) {
            if(inPreSale == true){
                require(presaleWallets[msg.sender]);
                require(msg.value >= presaleCost * _mintAmount);
            }
            else{
                require(msg.value >= cost * _mintAmount);
            }
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setPresaleCost(uint256 _newCost) public onlyOwner {
        presaleCost = _newCost;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function _price() external view returns (uint) {
        if(inPreSale == true && presaleWallets[msg.sender] == true){
            return presaleCost;
        }
        else{
            return cost;
        }
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function changePreSale() public onlyOwner {
        inPreSale = !inPreSale;
    }

    function addPresaleUser(address _user) public onlyOwner {
        presaleWallets[_user] = true;
    }

    function addMultiplePresaleUser(address[] memory _user) public onlyOwner {
        for (uint i = 0; i< _user.length; i++){
            presaleWallets[_user[i]] = true;
        }
    }

    function removePresaleUser(address _user) public onlyOwner {
        presaleWallets[_user] = false;
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"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":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"}],"name":"addMultiplePresaleUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"addPresaleUser","outputs":[],"stateMutability":"nonpayable","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"changePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"inPreSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removePresaleUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","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":[{"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":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620002ea565b50668e1bc9bf040000600d55668e1bc9bf040000600e55612710600f556000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550348015620000b157600080fd5b5060405162004fb138038062004fb18339818101604052810190620000d7919062000418565b82828160009080519060200190620000f1929190620002ea565b5080600190805190602001906200010a929190620002ea565b5050506200012d620001216200014760201b60201c565b6200014f60201b60201c565b6200013e816200021560201b60201c565b505050620006d8565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002256200014760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200024b620002c060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029b90620004f8565b60405180910390fd5b80600b9080519060200190620002bc929190620002ea565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002f890620005c0565b90600052602060002090601f0160209004810192826200031c576000855562000368565b82601f106200033757805160ff191683800117855562000368565b8280016001018555821562000368579182015b82811115620003675782518255916020019190600101906200034a565b5b5090506200037791906200037b565b5090565b5b80821115620003965760008160009055506001016200037c565b5090565b6000620003b1620003ab8462000543565b6200051a565b905082815260208101848484011115620003d057620003cf6200068f565b5b620003dd8482856200058a565b509392505050565b600082601f830112620003fd57620003fc6200068a565b5b81516200040f8482602086016200039a565b91505092915050565b60008060006060848603121562000434576200043362000699565b5b600084015167ffffffffffffffff81111562000455576200045462000694565b5b6200046386828701620003e5565b935050602084015167ffffffffffffffff81111562000487576200048662000694565b5b6200049586828701620003e5565b925050604084015167ffffffffffffffff811115620004b957620004b862000694565b5b620004c786828701620003e5565b9150509250925092565b6000620004e060208362000579565b9150620004ed82620006af565b602082019050919050565b600060208201905081810360008301526200051381620004d1565b9050919050565b60006200052662000539565b9050620005348282620005f6565b919050565b6000604051905090565b600067ffffffffffffffff8211156200056157620005606200065b565b5b6200056c826200069e565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005aa5780820151818401526020810190506200058d565b83811115620005ba576000848401525b50505050565b60006002820490506001821680620005d957607f821691505b60208210811415620005f057620005ef6200062c565b5b50919050565b62000601826200069e565b810181811067ffffffffffffffff821117156200062357620006226200065b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6148c980620006e86000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063b2f3e85e116100ab578063d634961b1161006f578063d634961b14610869578063da3ef23f14610880578063e985e9c5146108a9578063ed931e17146108e6578063f2fde38b1461090f5761023b565b8063b2f3e85e14610784578063b88d4fde146107ad578063c6682862146107d6578063c87b56dd14610801578063d5abeb011461083e5761023b565b80638da5cb5b116100f25780638da5cb5b146106c05780638fdcf942146106eb57806395d89b4114610714578063a0712d681461073f578063a22cb4651461075b5761023b565b80636352211e146105db5780636c0360eb1461061857806370a0823114610643578063715018a6146106805780637748f375146106975761023b565b80632a23d07d116101bc578063438b630011610180578063438b6300146104e457806344a0d68a146105215780634f6ccce71461054a57806355f804b3146105875780635c975abb146105b05761023b565b80632a23d07d1461040c5780632f745c591461043757806330b2264e146104745780633ccfd60b146104b157806342842e0e146104bb5761023b565b806313faede61161020357806313faede61461033757806318160ddd146103625780631a40626b1461038d578063235b6ea1146103b857806323b872dd146103e35761023b565b806301ffc9a71461024057806302329a291461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061355f565b610938565b6040516102749190613b6b565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190613532565b6109b2565b005b3480156102b257600080fd5b506102bb610a4b565b6040516102c89190613b86565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613602565b610add565b6040516103059190613ae2565b60405180910390f35b34801561031a57600080fd5b50610335600480360381019061033091906134a9565b610b62565b005b34801561034357600080fd5b5061034c610c7a565b6040516103599190613de8565b60405180910390f35b34801561036e57600080fd5b50610377610c80565b6040516103849190613de8565b60405180910390f35b34801561039957600080fd5b506103a2610c8d565b6040516103af9190613b6b565b60405180910390f35b3480156103c457600080fd5b506103cd610ca0565b6040516103da9190613de8565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190613393565b610d2d565b005b34801561041857600080fd5b50610421610d8d565b60405161042e9190613de8565b60405180910390f35b34801561044357600080fd5b5061045e600480360381019061045991906134a9565b610d93565b60405161046b9190613de8565b60405180910390f35b34801561048057600080fd5b5061049b60048036038101906104969190613326565b610e38565b6040516104a89190613b6b565b60405180910390f35b6104b9610e58565b005b3480156104c757600080fd5b506104e260048036038101906104dd9190613393565b610f4d565b005b3480156104f057600080fd5b5061050b60048036038101906105069190613326565b610f6d565b6040516105189190613b49565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190613602565b61101b565b005b34801561055657600080fd5b50610571600480360381019061056c9190613602565b6110a1565b60405161057e9190613de8565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a991906135b9565b611112565b005b3480156105bc57600080fd5b506105c56111a8565b6040516105d29190613b6b565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190613602565b6111bb565b60405161060f9190613ae2565b60405180910390f35b34801561062457600080fd5b5061062d61126d565b60405161063a9190613b86565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190613326565b6112fb565b6040516106779190613de8565b60405180910390f35b34801561068c57600080fd5b506106956113b3565b005b3480156106a357600080fd5b506106be60048036038101906106b991906134e9565b61143b565b005b3480156106cc57600080fd5b506106d561154c565b6040516106e29190613ae2565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d9190613602565b611576565b005b34801561072057600080fd5b506107296115fc565b6040516107369190613b86565b60405180910390f35b61075960048036038101906107549190613602565b61168e565b005b34801561076757600080fd5b50610782600480360381019061077d9190613469565b6117fd565b005b34801561079057600080fd5b506107ab60048036038101906107a69190613326565b611813565b005b3480156107b957600080fd5b506107d460048036038101906107cf91906133e6565b6118ea565b005b3480156107e257600080fd5b506107eb61194c565b6040516107f89190613b86565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190613602565b6119da565b6040516108359190613b86565b60405180910390f35b34801561084a57600080fd5b50610853611a84565b6040516108609190613de8565b60405180910390f35b34801561087557600080fd5b5061087e611a8a565b005b34801561088c57600080fd5b506108a760048036038101906108a291906135b9565b611b32565b005b3480156108b557600080fd5b506108d060048036038101906108cb9190613353565b611bc8565b6040516108dd9190613b6b565b60405180910390f35b3480156108f257600080fd5b5061090d60048036038101906109089190613326565b611c5c565b005b34801561091b57600080fd5b5061093660048036038101906109319190613326565b611d33565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ab57506109aa82611e2b565b5b9050919050565b6109ba611f0d565b73ffffffffffffffffffffffffffffffffffffffff166109d861154c565b73ffffffffffffffffffffffffffffffffffffffff1614610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590613d48565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060008054610a5a9061411d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a869061411d565b8015610ad35780601f10610aa857610100808354040283529160200191610ad3565b820191906000526020600020905b815481529060010190602001808311610ab657829003601f168201915b5050505050905090565b6000610ae882611f15565b610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e90613d28565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6d826111bb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613d88565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfd611f0d565b73ffffffffffffffffffffffffffffffffffffffff161480610c2c5750610c2b81610c26611f0d565b611bc8565b5b610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6290613ca8565b60405180910390fd5b610c758383611f81565b505050565b600d5481565b6000600880549050905090565b601060019054906101000a900460ff1681565b600060011515601060019054906101000a900460ff161515148015610d15575060011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b15610d2457600e549050610d2a565b600d5490505b90565b610d3e610d38611f0d565b8261203a565b610d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7490613da8565b60405180910390fd5b610d88838383612118565b505050565b600e5481565b6000610d9e836112fb565b8210610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690613ba8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b610e60611f0d565b73ffffffffffffffffffffffffffffffffffffffff16610e7e61154c565b73ffffffffffffffffffffffffffffffffffffffff1614610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90613d48565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610efa90613acd565b60006040518083038185875af1925050503d8060008114610f37576040519150601f19603f3d011682016040523d82523d6000602084013e610f3c565b606091505b5050905080610f4a57600080fd5b50565b610f68838383604051806020016040528060008152506118ea565b505050565b60606000610f7a836112fb565b905060008167ffffffffffffffff811115610f9857610f976142e5565b5b604051908082528060200260200182016040528015610fc65781602001602082028036833780820191505090505b50905060005b8281101561101057610fde8582610d93565b828281518110610ff157610ff06142b6565b5b602002602001018181525050808061100890614180565b915050610fcc565b508092505050919050565b611023611f0d565b73ffffffffffffffffffffffffffffffffffffffff1661104161154c565b73ffffffffffffffffffffffffffffffffffffffff1614611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90613d48565b60405180910390fd5b80600d8190555050565b60006110ab610c80565b82106110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390613dc8565b60405180910390fd5b60088281548110611100576110ff6142b6565b5b90600052602060002001549050919050565b61111a611f0d565b73ffffffffffffffffffffffffffffffffffffffff1661113861154c565b73ffffffffffffffffffffffffffffffffffffffff161461118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590613d48565b60405180910390fd5b80600b90805190602001906111a492919061309c565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b90613ce8565b60405180910390fd5b80915050919050565b600b805461127a9061411d565b80601f01602080910402602001604051908101604052809291908181526020018280546112a69061411d565b80156112f35780601f106112c8576101008083540402835291602001916112f3565b820191906000526020600020905b8154815290600101906020018083116112d657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390613cc8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113bb611f0d565b73ffffffffffffffffffffffffffffffffffffffff166113d961154c565b73ffffffffffffffffffffffffffffffffffffffff161461142f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142690613d48565b60405180910390fd5b611439600061237f565b565b611443611f0d565b73ffffffffffffffffffffffffffffffffffffffff1661146161154c565b73ffffffffffffffffffffffffffffffffffffffff16146114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae90613d48565b60405180910390fd5b60005b8151811015611548576001601160008484815181106114dc576114db6142b6565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061154090614180565b9150506114ba565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61157e611f0d565b73ffffffffffffffffffffffffffffffffffffffff1661159c61154c565b73ffffffffffffffffffffffffffffffffffffffff16146115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e990613d48565b60405180910390fd5b80600e8190555050565b60606001805461160b9061411d565b80601f01602080910402602001604051908101604052809291908181526020018280546116379061411d565b80156116845780601f1061165957610100808354040283529160200191611684565b820191906000526020600020905b81548152906001019060200180831161166757829003601f168201915b5050505050905090565b6000611698610c80565b9050601060009054906101000a900460ff16156116b457600080fd5b600082116116c157600080fd5b600f5482826116d09190613f52565b11156116db57600080fd5b6116e361154c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117c25760011515601060019054906101000a900460ff16151514156117a657601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661178757600080fd5b81600e546117959190613fd9565b3410156117a157600080fd5b6117c1565b81600d546117b49190613fd9565b3410156117c057600080fd5b5b5b6000600190505b8281116117f8576117e53382846117e09190613f52565b612445565b80806117f090614180565b9150506117c9565b505050565b61180f611808611f0d565b8383612463565b5050565b61181b611f0d565b73ffffffffffffffffffffffffffffffffffffffff1661183961154c565b73ffffffffffffffffffffffffffffffffffffffff161461188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613d48565b60405180910390fd5b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6118fb6118f5611f0d565b8361203a565b61193a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193190613da8565b60405180910390fd5b611946848484846125d0565b50505050565b600c80546119599061411d565b80601f01602080910402602001604051908101604052809291908181526020018280546119859061411d565b80156119d25780601f106119a7576101008083540402835291602001916119d2565b820191906000526020600020905b8154815290600101906020018083116119b557829003601f168201915b505050505081565b60606119e582611f15565b611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90613d68565b60405180910390fd5b6000611a2e61262c565b90506000815111611a4e5760405180602001604052806000815250611a7c565b80611a58846126be565b600c604051602001611a6c93929190613a9c565b6040516020818303038152906040525b915050919050565b600f5481565b611a92611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611ab061154c565b73ffffffffffffffffffffffffffffffffffffffff1614611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90613d48565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b611b3a611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611b5861154c565b73ffffffffffffffffffffffffffffffffffffffff1614611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590613d48565b60405180910390fd5b80600c9080519060200190611bc492919061309c565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c64611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611c8261154c565b73ffffffffffffffffffffffffffffffffffffffff1614611cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccf90613d48565b60405180910390fd5b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611d3b611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611d5961154c565b73ffffffffffffffffffffffffffffffffffffffff1614611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690613d48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1690613be8565b60405180910390fd5b611e288161237f565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ef657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f065750611f058261281f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ff4836111bb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061204582611f15565b612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90613c88565b60405180910390fd5b600061208f836111bb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120fe57508373ffffffffffffffffffffffffffffffffffffffff166120e684610add565b73ffffffffffffffffffffffffffffffffffffffff16145b8061210f575061210e8185611bc8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612138826111bb565b73ffffffffffffffffffffffffffffffffffffffff161461218e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218590613c08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f590613c48565b60405180910390fd5b612209838383612889565b612214600082611f81565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122649190614033565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122bb9190613f52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461237a83838361299d565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61245f8282604051806020016040528060008152506129a2565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990613c68565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125c39190613b6b565b60405180910390a3505050565b6125db848484612118565b6125e7848484846129fd565b612626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261d90613bc8565b60405180910390fd5b50505050565b6060600b805461263b9061411d565b80601f01602080910402602001604051908101604052809291908181526020018280546126679061411d565b80156126b45780601f10612689576101008083540402835291602001916126b4565b820191906000526020600020905b81548152906001019060200180831161269757829003601f168201915b5050505050905090565b60606000821415612706576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061281a565b600082905060005b6000821461273857808061272190614180565b915050600a826127319190613fa8565b915061270e565b60008167ffffffffffffffff811115612754576127536142e5565b5b6040519080825280601f01601f1916602001820160405280156127865781602001600182028036833780820191505090505b5090505b600085146128135760018261279f9190614033565b9150600a856127ae91906141c9565b60306127ba9190613f52565b60f81b8183815181106127d0576127cf6142b6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561280c9190613fa8565b945061278a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612894838383612b94565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128d7576128d281612b99565b612916565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612915576129148382612be2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129595761295481612d4f565b612998565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612997576129968282612e20565b5b5b505050565b505050565b6129ac8383612e9f565b6129b960008484846129fd565b6129f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ef90613bc8565b60405180910390fd5b505050565b6000612a1e8473ffffffffffffffffffffffffffffffffffffffff16613079565b15612b87578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a47611f0d565b8786866040518563ffffffff1660e01b8152600401612a699493929190613afd565b602060405180830381600087803b158015612a8357600080fd5b505af1925050508015612ab457506040513d601f19601f82011682018060405250810190612ab1919061358c565b60015b612b37573d8060008114612ae4576040519150601f19603f3d011682016040523d82523d6000602084013e612ae9565b606091505b50600081511415612b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2690613bc8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b8c565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bef846112fb565b612bf99190614033565b9050600060076000848152602001908152602001600020549050818114612cde576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d639190614033565b9050600060096000848152602001908152602001600020549050600060088381548110612d9357612d926142b6565b5b906000526020600020015490508060088381548110612db557612db46142b6565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e0457612e03614287565b5b6001900381819060005260206000200160009055905550505050565b6000612e2b836112fb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0690613d08565b60405180910390fd5b612f1881611f15565b15612f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4f90613c28565b60405180910390fd5b612f6460008383612889565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fb49190613f52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130756000838361299d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546130a89061411d565b90600052602060002090601f0160209004810192826130ca5760008555613111565b82601f106130e357805160ff1916838001178555613111565b82800160010185558215613111579182015b828111156131105782518255916020019190600101906130f5565b5b50905061311e9190613122565b5090565b5b8082111561313b576000816000905550600101613123565b5090565b600061315261314d84613e28565b613e03565b9050808382526020820190508285602086028201111561317557613174614319565b5b60005b858110156131a5578161318b8882613233565b845260208401935060208301925050600181019050613178565b5050509392505050565b60006131c26131bd84613e54565b613e03565b9050828152602081018484840111156131de576131dd61431e565b5b6131e98482856140db565b509392505050565b60006132046131ff84613e85565b613e03565b9050828152602081018484840111156132205761321f61431e565b5b61322b8482856140db565b509392505050565b60008135905061324281614837565b92915050565b600082601f83011261325d5761325c614314565b5b813561326d84826020860161313f565b91505092915050565b6000813590506132858161484e565b92915050565b60008135905061329a81614865565b92915050565b6000815190506132af81614865565b92915050565b600082601f8301126132ca576132c9614314565b5b81356132da8482602086016131af565b91505092915050565b600082601f8301126132f8576132f7614314565b5b81356133088482602086016131f1565b91505092915050565b6000813590506133208161487c565b92915050565b60006020828403121561333c5761333b614328565b5b600061334a84828501613233565b91505092915050565b6000806040838503121561336a57613369614328565b5b600061337885828601613233565b925050602061338985828601613233565b9150509250929050565b6000806000606084860312156133ac576133ab614328565b5b60006133ba86828701613233565b93505060206133cb86828701613233565b92505060406133dc86828701613311565b9150509250925092565b60008060008060808587031215613400576133ff614328565b5b600061340e87828801613233565b945050602061341f87828801613233565b935050604061343087828801613311565b925050606085013567ffffffffffffffff81111561345157613450614323565b5b61345d878288016132b5565b91505092959194509250565b600080604083850312156134805761347f614328565b5b600061348e85828601613233565b925050602061349f85828601613276565b9150509250929050565b600080604083850312156134c0576134bf614328565b5b60006134ce85828601613233565b92505060206134df85828601613311565b9150509250929050565b6000602082840312156134ff576134fe614328565b5b600082013567ffffffffffffffff81111561351d5761351c614323565b5b61352984828501613248565b91505092915050565b60006020828403121561354857613547614328565b5b600061355684828501613276565b91505092915050565b60006020828403121561357557613574614328565b5b60006135838482850161328b565b91505092915050565b6000602082840312156135a2576135a1614328565b5b60006135b0848285016132a0565b91505092915050565b6000602082840312156135cf576135ce614328565b5b600082013567ffffffffffffffff8111156135ed576135ec614323565b5b6135f9848285016132e3565b91505092915050565b60006020828403121561361857613617614328565b5b600061362684828501613311565b91505092915050565b600061363b8383613a7e565b60208301905092915050565b61365081614067565b82525050565b600061366182613edb565b61366b8185613f09565b935061367683613eb6565b8060005b838110156136a757815161368e888261362f565b975061369983613efc565b92505060018101905061367a565b5085935050505092915050565b6136bd81614079565b82525050565b60006136ce82613ee6565b6136d88185613f1a565b93506136e88185602086016140ea565b6136f18161432d565b840191505092915050565b600061370782613ef1565b6137118185613f36565b93506137218185602086016140ea565b61372a8161432d565b840191505092915050565b600061374082613ef1565b61374a8185613f47565b935061375a8185602086016140ea565b80840191505092915050565b600081546137738161411d565b61377d8186613f47565b9450600182166000811461379857600181146137a9576137dc565b60ff198316865281860193506137dc565b6137b285613ec6565b60005b838110156137d4578154818901526001820191506020810190506137b5565b838801955050505b50505092915050565b60006137f2602b83613f36565b91506137fd8261433e565b604082019050919050565b6000613815603283613f36565b91506138208261438d565b604082019050919050565b6000613838602683613f36565b9150613843826143dc565b604082019050919050565b600061385b602583613f36565b91506138668261442b565b604082019050919050565b600061387e601c83613f36565b91506138898261447a565b602082019050919050565b60006138a1602483613f36565b91506138ac826144a3565b604082019050919050565b60006138c4601983613f36565b91506138cf826144f2565b602082019050919050565b60006138e7602c83613f36565b91506138f28261451b565b604082019050919050565b600061390a603883613f36565b91506139158261456a565b604082019050919050565b600061392d602a83613f36565b9150613938826145b9565b604082019050919050565b6000613950602983613f36565b915061395b82614608565b604082019050919050565b6000613973602083613f36565b915061397e82614657565b602082019050919050565b6000613996602c83613f36565b91506139a182614680565b604082019050919050565b60006139b9602083613f36565b91506139c4826146cf565b602082019050919050565b60006139dc602f83613f36565b91506139e7826146f8565b604082019050919050565b60006139ff602183613f36565b9150613a0a82614747565b604082019050919050565b6000613a22600083613f2b565b9150613a2d82614796565b600082019050919050565b6000613a45603183613f36565b9150613a5082614799565b604082019050919050565b6000613a68602c83613f36565b9150613a73826147e8565b604082019050919050565b613a87816140d1565b82525050565b613a96816140d1565b82525050565b6000613aa88286613735565b9150613ab48285613735565b9150613ac08284613766565b9150819050949350505050565b6000613ad882613a15565b9150819050919050565b6000602082019050613af76000830184613647565b92915050565b6000608082019050613b126000830187613647565b613b1f6020830186613647565b613b2c6040830185613a8d565b8181036060830152613b3e81846136c3565b905095945050505050565b60006020820190508181036000830152613b638184613656565b905092915050565b6000602082019050613b8060008301846136b4565b92915050565b60006020820190508181036000830152613ba081846136fc565b905092915050565b60006020820190508181036000830152613bc1816137e5565b9050919050565b60006020820190508181036000830152613be181613808565b9050919050565b60006020820190508181036000830152613c018161382b565b9050919050565b60006020820190508181036000830152613c218161384e565b9050919050565b60006020820190508181036000830152613c4181613871565b9050919050565b60006020820190508181036000830152613c6181613894565b9050919050565b60006020820190508181036000830152613c81816138b7565b9050919050565b60006020820190508181036000830152613ca1816138da565b9050919050565b60006020820190508181036000830152613cc1816138fd565b9050919050565b60006020820190508181036000830152613ce181613920565b9050919050565b60006020820190508181036000830152613d0181613943565b9050919050565b60006020820190508181036000830152613d2181613966565b9050919050565b60006020820190508181036000830152613d4181613989565b9050919050565b60006020820190508181036000830152613d61816139ac565b9050919050565b60006020820190508181036000830152613d81816139cf565b9050919050565b60006020820190508181036000830152613da1816139f2565b9050919050565b60006020820190508181036000830152613dc181613a38565b9050919050565b60006020820190508181036000830152613de181613a5b565b9050919050565b6000602082019050613dfd6000830184613a8d565b92915050565b6000613e0d613e1e565b9050613e19828261414f565b919050565b6000604051905090565b600067ffffffffffffffff821115613e4357613e426142e5565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613e6f57613e6e6142e5565b5b613e788261432d565b9050602081019050919050565b600067ffffffffffffffff821115613ea057613e9f6142e5565b5b613ea98261432d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f5d826140d1565b9150613f68836140d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f9d57613f9c6141fa565b5b828201905092915050565b6000613fb3826140d1565b9150613fbe836140d1565b925082613fce57613fcd614229565b5b828204905092915050565b6000613fe4826140d1565b9150613fef836140d1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614028576140276141fa565b5b828202905092915050565b600061403e826140d1565b9150614049836140d1565b92508282101561405c5761405b6141fa565b5b828203905092915050565b6000614072826140b1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141085780820151818401526020810190506140ed565b83811115614117576000848401525b50505050565b6000600282049050600182168061413557607f821691505b6020821081141561414957614148614258565b5b50919050565b6141588261432d565b810181811067ffffffffffffffff82111715614177576141766142e5565b5b80604052505050565b600061418b826140d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141be576141bd6141fa565b5b600182019050919050565b60006141d4826140d1565b91506141df836140d1565b9250826141ef576141ee614229565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61484081614067565b811461484b57600080fd5b50565b61485781614079565b811461486257600080fd5b50565b61486e81614085565b811461487957600080fd5b50565b614885816140d1565b811461489057600080fd5b5056fea264697066735822122036225683c4417434cd8cc5bfd5bbada887e2397eb7ed9fed27236a866d62b09264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001957657265776f6c766573206f662057616c6c20537472656574000000000000000000000000000000000000000000000000000000000000000000000000000004574f4c46000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d636842397a624b663571396138553174326f386b56696f713944534346574a436556597245357566524c6b482f00000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063b2f3e85e116100ab578063d634961b1161006f578063d634961b14610869578063da3ef23f14610880578063e985e9c5146108a9578063ed931e17146108e6578063f2fde38b1461090f5761023b565b8063b2f3e85e14610784578063b88d4fde146107ad578063c6682862146107d6578063c87b56dd14610801578063d5abeb011461083e5761023b565b80638da5cb5b116100f25780638da5cb5b146106c05780638fdcf942146106eb57806395d89b4114610714578063a0712d681461073f578063a22cb4651461075b5761023b565b80636352211e146105db5780636c0360eb1461061857806370a0823114610643578063715018a6146106805780637748f375146106975761023b565b80632a23d07d116101bc578063438b630011610180578063438b6300146104e457806344a0d68a146105215780634f6ccce71461054a57806355f804b3146105875780635c975abb146105b05761023b565b80632a23d07d1461040c5780632f745c591461043757806330b2264e146104745780633ccfd60b146104b157806342842e0e146104bb5761023b565b806313faede61161020357806313faede61461033757806318160ddd146103625780631a40626b1461038d578063235b6ea1146103b857806323b872dd146103e35761023b565b806301ffc9a71461024057806302329a291461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061355f565b610938565b6040516102749190613b6b565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190613532565b6109b2565b005b3480156102b257600080fd5b506102bb610a4b565b6040516102c89190613b86565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613602565b610add565b6040516103059190613ae2565b60405180910390f35b34801561031a57600080fd5b50610335600480360381019061033091906134a9565b610b62565b005b34801561034357600080fd5b5061034c610c7a565b6040516103599190613de8565b60405180910390f35b34801561036e57600080fd5b50610377610c80565b6040516103849190613de8565b60405180910390f35b34801561039957600080fd5b506103a2610c8d565b6040516103af9190613b6b565b60405180910390f35b3480156103c457600080fd5b506103cd610ca0565b6040516103da9190613de8565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190613393565b610d2d565b005b34801561041857600080fd5b50610421610d8d565b60405161042e9190613de8565b60405180910390f35b34801561044357600080fd5b5061045e600480360381019061045991906134a9565b610d93565b60405161046b9190613de8565b60405180910390f35b34801561048057600080fd5b5061049b60048036038101906104969190613326565b610e38565b6040516104a89190613b6b565b60405180910390f35b6104b9610e58565b005b3480156104c757600080fd5b506104e260048036038101906104dd9190613393565b610f4d565b005b3480156104f057600080fd5b5061050b60048036038101906105069190613326565b610f6d565b6040516105189190613b49565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190613602565b61101b565b005b34801561055657600080fd5b50610571600480360381019061056c9190613602565b6110a1565b60405161057e9190613de8565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a991906135b9565b611112565b005b3480156105bc57600080fd5b506105c56111a8565b6040516105d29190613b6b565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190613602565b6111bb565b60405161060f9190613ae2565b60405180910390f35b34801561062457600080fd5b5061062d61126d565b60405161063a9190613b86565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190613326565b6112fb565b6040516106779190613de8565b60405180910390f35b34801561068c57600080fd5b506106956113b3565b005b3480156106a357600080fd5b506106be60048036038101906106b991906134e9565b61143b565b005b3480156106cc57600080fd5b506106d561154c565b6040516106e29190613ae2565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d9190613602565b611576565b005b34801561072057600080fd5b506107296115fc565b6040516107369190613b86565b60405180910390f35b61075960048036038101906107549190613602565b61168e565b005b34801561076757600080fd5b50610782600480360381019061077d9190613469565b6117fd565b005b34801561079057600080fd5b506107ab60048036038101906107a69190613326565b611813565b005b3480156107b957600080fd5b506107d460048036038101906107cf91906133e6565b6118ea565b005b3480156107e257600080fd5b506107eb61194c565b6040516107f89190613b86565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190613602565b6119da565b6040516108359190613b86565b60405180910390f35b34801561084a57600080fd5b50610853611a84565b6040516108609190613de8565b60405180910390f35b34801561087557600080fd5b5061087e611a8a565b005b34801561088c57600080fd5b506108a760048036038101906108a291906135b9565b611b32565b005b3480156108b557600080fd5b506108d060048036038101906108cb9190613353565b611bc8565b6040516108dd9190613b6b565b60405180910390f35b3480156108f257600080fd5b5061090d60048036038101906109089190613326565b611c5c565b005b34801561091b57600080fd5b5061093660048036038101906109319190613326565b611d33565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ab57506109aa82611e2b565b5b9050919050565b6109ba611f0d565b73ffffffffffffffffffffffffffffffffffffffff166109d861154c565b73ffffffffffffffffffffffffffffffffffffffff1614610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590613d48565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060008054610a5a9061411d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a869061411d565b8015610ad35780601f10610aa857610100808354040283529160200191610ad3565b820191906000526020600020905b815481529060010190602001808311610ab657829003601f168201915b5050505050905090565b6000610ae882611f15565b610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e90613d28565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6d826111bb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613d88565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfd611f0d565b73ffffffffffffffffffffffffffffffffffffffff161480610c2c5750610c2b81610c26611f0d565b611bc8565b5b610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6290613ca8565b60405180910390fd5b610c758383611f81565b505050565b600d5481565b6000600880549050905090565b601060019054906101000a900460ff1681565b600060011515601060019054906101000a900460ff161515148015610d15575060011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b15610d2457600e549050610d2a565b600d5490505b90565b610d3e610d38611f0d565b8261203a565b610d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7490613da8565b60405180910390fd5b610d88838383612118565b505050565b600e5481565b6000610d9e836112fb565b8210610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690613ba8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b610e60611f0d565b73ffffffffffffffffffffffffffffffffffffffff16610e7e61154c565b73ffffffffffffffffffffffffffffffffffffffff1614610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90613d48565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610efa90613acd565b60006040518083038185875af1925050503d8060008114610f37576040519150601f19603f3d011682016040523d82523d6000602084013e610f3c565b606091505b5050905080610f4a57600080fd5b50565b610f68838383604051806020016040528060008152506118ea565b505050565b60606000610f7a836112fb565b905060008167ffffffffffffffff811115610f9857610f976142e5565b5b604051908082528060200260200182016040528015610fc65781602001602082028036833780820191505090505b50905060005b8281101561101057610fde8582610d93565b828281518110610ff157610ff06142b6565b5b602002602001018181525050808061100890614180565b915050610fcc565b508092505050919050565b611023611f0d565b73ffffffffffffffffffffffffffffffffffffffff1661104161154c565b73ffffffffffffffffffffffffffffffffffffffff1614611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90613d48565b60405180910390fd5b80600d8190555050565b60006110ab610c80565b82106110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390613dc8565b60405180910390fd5b60088281548110611100576110ff6142b6565b5b90600052602060002001549050919050565b61111a611f0d565b73ffffffffffffffffffffffffffffffffffffffff1661113861154c565b73ffffffffffffffffffffffffffffffffffffffff161461118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590613d48565b60405180910390fd5b80600b90805190602001906111a492919061309c565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b90613ce8565b60405180910390fd5b80915050919050565b600b805461127a9061411d565b80601f01602080910402602001604051908101604052809291908181526020018280546112a69061411d565b80156112f35780601f106112c8576101008083540402835291602001916112f3565b820191906000526020600020905b8154815290600101906020018083116112d657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390613cc8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113bb611f0d565b73ffffffffffffffffffffffffffffffffffffffff166113d961154c565b73ffffffffffffffffffffffffffffffffffffffff161461142f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142690613d48565b60405180910390fd5b611439600061237f565b565b611443611f0d565b73ffffffffffffffffffffffffffffffffffffffff1661146161154c565b73ffffffffffffffffffffffffffffffffffffffff16146114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae90613d48565b60405180910390fd5b60005b8151811015611548576001601160008484815181106114dc576114db6142b6565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061154090614180565b9150506114ba565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61157e611f0d565b73ffffffffffffffffffffffffffffffffffffffff1661159c61154c565b73ffffffffffffffffffffffffffffffffffffffff16146115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e990613d48565b60405180910390fd5b80600e8190555050565b60606001805461160b9061411d565b80601f01602080910402602001604051908101604052809291908181526020018280546116379061411d565b80156116845780601f1061165957610100808354040283529160200191611684565b820191906000526020600020905b81548152906001019060200180831161166757829003601f168201915b5050505050905090565b6000611698610c80565b9050601060009054906101000a900460ff16156116b457600080fd5b600082116116c157600080fd5b600f5482826116d09190613f52565b11156116db57600080fd5b6116e361154c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117c25760011515601060019054906101000a900460ff16151514156117a657601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661178757600080fd5b81600e546117959190613fd9565b3410156117a157600080fd5b6117c1565b81600d546117b49190613fd9565b3410156117c057600080fd5b5b5b6000600190505b8281116117f8576117e53382846117e09190613f52565b612445565b80806117f090614180565b9150506117c9565b505050565b61180f611808611f0d565b8383612463565b5050565b61181b611f0d565b73ffffffffffffffffffffffffffffffffffffffff1661183961154c565b73ffffffffffffffffffffffffffffffffffffffff161461188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613d48565b60405180910390fd5b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6118fb6118f5611f0d565b8361203a565b61193a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193190613da8565b60405180910390fd5b611946848484846125d0565b50505050565b600c80546119599061411d565b80601f01602080910402602001604051908101604052809291908181526020018280546119859061411d565b80156119d25780601f106119a7576101008083540402835291602001916119d2565b820191906000526020600020905b8154815290600101906020018083116119b557829003601f168201915b505050505081565b60606119e582611f15565b611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90613d68565b60405180910390fd5b6000611a2e61262c565b90506000815111611a4e5760405180602001604052806000815250611a7c565b80611a58846126be565b600c604051602001611a6c93929190613a9c565b6040516020818303038152906040525b915050919050565b600f5481565b611a92611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611ab061154c565b73ffffffffffffffffffffffffffffffffffffffff1614611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90613d48565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b611b3a611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611b5861154c565b73ffffffffffffffffffffffffffffffffffffffff1614611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590613d48565b60405180910390fd5b80600c9080519060200190611bc492919061309c565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c64611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611c8261154c565b73ffffffffffffffffffffffffffffffffffffffff1614611cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccf90613d48565b60405180910390fd5b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611d3b611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611d5961154c565b73ffffffffffffffffffffffffffffffffffffffff1614611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690613d48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1690613be8565b60405180910390fd5b611e288161237f565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ef657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f065750611f058261281f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ff4836111bb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061204582611f15565b612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90613c88565b60405180910390fd5b600061208f836111bb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120fe57508373ffffffffffffffffffffffffffffffffffffffff166120e684610add565b73ffffffffffffffffffffffffffffffffffffffff16145b8061210f575061210e8185611bc8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612138826111bb565b73ffffffffffffffffffffffffffffffffffffffff161461218e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218590613c08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f590613c48565b60405180910390fd5b612209838383612889565b612214600082611f81565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122649190614033565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122bb9190613f52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461237a83838361299d565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61245f8282604051806020016040528060008152506129a2565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990613c68565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125c39190613b6b565b60405180910390a3505050565b6125db848484612118565b6125e7848484846129fd565b612626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261d90613bc8565b60405180910390fd5b50505050565b6060600b805461263b9061411d565b80601f01602080910402602001604051908101604052809291908181526020018280546126679061411d565b80156126b45780601f10612689576101008083540402835291602001916126b4565b820191906000526020600020905b81548152906001019060200180831161269757829003601f168201915b5050505050905090565b60606000821415612706576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061281a565b600082905060005b6000821461273857808061272190614180565b915050600a826127319190613fa8565b915061270e565b60008167ffffffffffffffff811115612754576127536142e5565b5b6040519080825280601f01601f1916602001820160405280156127865781602001600182028036833780820191505090505b5090505b600085146128135760018261279f9190614033565b9150600a856127ae91906141c9565b60306127ba9190613f52565b60f81b8183815181106127d0576127cf6142b6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561280c9190613fa8565b945061278a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612894838383612b94565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128d7576128d281612b99565b612916565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612915576129148382612be2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129595761295481612d4f565b612998565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612997576129968282612e20565b5b5b505050565b505050565b6129ac8383612e9f565b6129b960008484846129fd565b6129f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ef90613bc8565b60405180910390fd5b505050565b6000612a1e8473ffffffffffffffffffffffffffffffffffffffff16613079565b15612b87578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a47611f0d565b8786866040518563ffffffff1660e01b8152600401612a699493929190613afd565b602060405180830381600087803b158015612a8357600080fd5b505af1925050508015612ab457506040513d601f19601f82011682018060405250810190612ab1919061358c565b60015b612b37573d8060008114612ae4576040519150601f19603f3d011682016040523d82523d6000602084013e612ae9565b606091505b50600081511415612b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2690613bc8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b8c565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bef846112fb565b612bf99190614033565b9050600060076000848152602001908152602001600020549050818114612cde576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d639190614033565b9050600060096000848152602001908152602001600020549050600060088381548110612d9357612d926142b6565b5b906000526020600020015490508060088381548110612db557612db46142b6565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e0457612e03614287565b5b6001900381819060005260206000200160009055905550505050565b6000612e2b836112fb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0690613d08565b60405180910390fd5b612f1881611f15565b15612f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4f90613c28565b60405180910390fd5b612f6460008383612889565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fb49190613f52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130756000838361299d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546130a89061411d565b90600052602060002090601f0160209004810192826130ca5760008555613111565b82601f106130e357805160ff1916838001178555613111565b82800160010185558215613111579182015b828111156131105782518255916020019190600101906130f5565b5b50905061311e9190613122565b5090565b5b8082111561313b576000816000905550600101613123565b5090565b600061315261314d84613e28565b613e03565b9050808382526020820190508285602086028201111561317557613174614319565b5b60005b858110156131a5578161318b8882613233565b845260208401935060208301925050600181019050613178565b5050509392505050565b60006131c26131bd84613e54565b613e03565b9050828152602081018484840111156131de576131dd61431e565b5b6131e98482856140db565b509392505050565b60006132046131ff84613e85565b613e03565b9050828152602081018484840111156132205761321f61431e565b5b61322b8482856140db565b509392505050565b60008135905061324281614837565b92915050565b600082601f83011261325d5761325c614314565b5b813561326d84826020860161313f565b91505092915050565b6000813590506132858161484e565b92915050565b60008135905061329a81614865565b92915050565b6000815190506132af81614865565b92915050565b600082601f8301126132ca576132c9614314565b5b81356132da8482602086016131af565b91505092915050565b600082601f8301126132f8576132f7614314565b5b81356133088482602086016131f1565b91505092915050565b6000813590506133208161487c565b92915050565b60006020828403121561333c5761333b614328565b5b600061334a84828501613233565b91505092915050565b6000806040838503121561336a57613369614328565b5b600061337885828601613233565b925050602061338985828601613233565b9150509250929050565b6000806000606084860312156133ac576133ab614328565b5b60006133ba86828701613233565b93505060206133cb86828701613233565b92505060406133dc86828701613311565b9150509250925092565b60008060008060808587031215613400576133ff614328565b5b600061340e87828801613233565b945050602061341f87828801613233565b935050604061343087828801613311565b925050606085013567ffffffffffffffff81111561345157613450614323565b5b61345d878288016132b5565b91505092959194509250565b600080604083850312156134805761347f614328565b5b600061348e85828601613233565b925050602061349f85828601613276565b9150509250929050565b600080604083850312156134c0576134bf614328565b5b60006134ce85828601613233565b92505060206134df85828601613311565b9150509250929050565b6000602082840312156134ff576134fe614328565b5b600082013567ffffffffffffffff81111561351d5761351c614323565b5b61352984828501613248565b91505092915050565b60006020828403121561354857613547614328565b5b600061355684828501613276565b91505092915050565b60006020828403121561357557613574614328565b5b60006135838482850161328b565b91505092915050565b6000602082840312156135a2576135a1614328565b5b60006135b0848285016132a0565b91505092915050565b6000602082840312156135cf576135ce614328565b5b600082013567ffffffffffffffff8111156135ed576135ec614323565b5b6135f9848285016132e3565b91505092915050565b60006020828403121561361857613617614328565b5b600061362684828501613311565b91505092915050565b600061363b8383613a7e565b60208301905092915050565b61365081614067565b82525050565b600061366182613edb565b61366b8185613f09565b935061367683613eb6565b8060005b838110156136a757815161368e888261362f565b975061369983613efc565b92505060018101905061367a565b5085935050505092915050565b6136bd81614079565b82525050565b60006136ce82613ee6565b6136d88185613f1a565b93506136e88185602086016140ea565b6136f18161432d565b840191505092915050565b600061370782613ef1565b6137118185613f36565b93506137218185602086016140ea565b61372a8161432d565b840191505092915050565b600061374082613ef1565b61374a8185613f47565b935061375a8185602086016140ea565b80840191505092915050565b600081546137738161411d565b61377d8186613f47565b9450600182166000811461379857600181146137a9576137dc565b60ff198316865281860193506137dc565b6137b285613ec6565b60005b838110156137d4578154818901526001820191506020810190506137b5565b838801955050505b50505092915050565b60006137f2602b83613f36565b91506137fd8261433e565b604082019050919050565b6000613815603283613f36565b91506138208261438d565b604082019050919050565b6000613838602683613f36565b9150613843826143dc565b604082019050919050565b600061385b602583613f36565b91506138668261442b565b604082019050919050565b600061387e601c83613f36565b91506138898261447a565b602082019050919050565b60006138a1602483613f36565b91506138ac826144a3565b604082019050919050565b60006138c4601983613f36565b91506138cf826144f2565b602082019050919050565b60006138e7602c83613f36565b91506138f28261451b565b604082019050919050565b600061390a603883613f36565b91506139158261456a565b604082019050919050565b600061392d602a83613f36565b9150613938826145b9565b604082019050919050565b6000613950602983613f36565b915061395b82614608565b604082019050919050565b6000613973602083613f36565b915061397e82614657565b602082019050919050565b6000613996602c83613f36565b91506139a182614680565b604082019050919050565b60006139b9602083613f36565b91506139c4826146cf565b602082019050919050565b60006139dc602f83613f36565b91506139e7826146f8565b604082019050919050565b60006139ff602183613f36565b9150613a0a82614747565b604082019050919050565b6000613a22600083613f2b565b9150613a2d82614796565b600082019050919050565b6000613a45603183613f36565b9150613a5082614799565b604082019050919050565b6000613a68602c83613f36565b9150613a73826147e8565b604082019050919050565b613a87816140d1565b82525050565b613a96816140d1565b82525050565b6000613aa88286613735565b9150613ab48285613735565b9150613ac08284613766565b9150819050949350505050565b6000613ad882613a15565b9150819050919050565b6000602082019050613af76000830184613647565b92915050565b6000608082019050613b126000830187613647565b613b1f6020830186613647565b613b2c6040830185613a8d565b8181036060830152613b3e81846136c3565b905095945050505050565b60006020820190508181036000830152613b638184613656565b905092915050565b6000602082019050613b8060008301846136b4565b92915050565b60006020820190508181036000830152613ba081846136fc565b905092915050565b60006020820190508181036000830152613bc1816137e5565b9050919050565b60006020820190508181036000830152613be181613808565b9050919050565b60006020820190508181036000830152613c018161382b565b9050919050565b60006020820190508181036000830152613c218161384e565b9050919050565b60006020820190508181036000830152613c4181613871565b9050919050565b60006020820190508181036000830152613c6181613894565b9050919050565b60006020820190508181036000830152613c81816138b7565b9050919050565b60006020820190508181036000830152613ca1816138da565b9050919050565b60006020820190508181036000830152613cc1816138fd565b9050919050565b60006020820190508181036000830152613ce181613920565b9050919050565b60006020820190508181036000830152613d0181613943565b9050919050565b60006020820190508181036000830152613d2181613966565b9050919050565b60006020820190508181036000830152613d4181613989565b9050919050565b60006020820190508181036000830152613d61816139ac565b9050919050565b60006020820190508181036000830152613d81816139cf565b9050919050565b60006020820190508181036000830152613da1816139f2565b9050919050565b60006020820190508181036000830152613dc181613a38565b9050919050565b60006020820190508181036000830152613de181613a5b565b9050919050565b6000602082019050613dfd6000830184613a8d565b92915050565b6000613e0d613e1e565b9050613e19828261414f565b919050565b6000604051905090565b600067ffffffffffffffff821115613e4357613e426142e5565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613e6f57613e6e6142e5565b5b613e788261432d565b9050602081019050919050565b600067ffffffffffffffff821115613ea057613e9f6142e5565b5b613ea98261432d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f5d826140d1565b9150613f68836140d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f9d57613f9c6141fa565b5b828201905092915050565b6000613fb3826140d1565b9150613fbe836140d1565b925082613fce57613fcd614229565b5b828204905092915050565b6000613fe4826140d1565b9150613fef836140d1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614028576140276141fa565b5b828202905092915050565b600061403e826140d1565b9150614049836140d1565b92508282101561405c5761405b6141fa565b5b828203905092915050565b6000614072826140b1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141085780820151818401526020810190506140ed565b83811115614117576000848401525b50505050565b6000600282049050600182168061413557607f821691505b6020821081141561414957614148614258565b5b50919050565b6141588261432d565b810181811067ffffffffffffffff82111715614177576141766142e5565b5b80604052505050565b600061418b826140d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141be576141bd6141fa565b5b600182019050919050565b60006141d4826140d1565b91506141df836140d1565b9250826141ef576141ee614229565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61484081614067565b811461484b57600080fd5b50565b61485781614079565b811461486257600080fd5b50565b61486e81614085565b811461487957600080fd5b50565b614885816140d1565b811461489057600080fd5b5056fea264697066735822122036225683c4417434cd8cc5bfd5bbada887e2397eb7ed9fed27236a866d62b09264736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001957657265776f6c766573206f662057616c6c20537472656574000000000000000000000000000000000000000000000000000000000000000000000000000004574f4c46000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d636842397a624b663571396138553174326f386b56696f713944534346574a436556597245357566524c6b482f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Werewolves of Wall Street
Arg [1] : _symbol (string): WOLF
Arg [2] : _initBaseURI (string): ipfs://QmchB9zbKf5q9a8U1t2o8kVioq9DSCFWJCeVYrE5ufRLkH/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [4] : 57657265776f6c766573206f662057616c6c2053747265657400000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 574f4c4600000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d636842397a624b663571396138553174326f386b56696f
Arg [9] : 713944534346574a436556597245357566524c6b482f00000000000000000000


Deployed Bytecode Sourcemap

45546:3929:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39314:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48681:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26134:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27693:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27216:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45702:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39954:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45859:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48452:221;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28443:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45741:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39622:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45894:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49280:192;;;:::i;:::-;;28853:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46913:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47979:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40144:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48181:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45826:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25828:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45630:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25558:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;48970:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48073:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26303:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46259:646;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27986:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48859:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29109:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45658:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47311:642;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45787:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48768:83;;;;;;;;;;;;;:::i;:::-;;48293:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28212:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49165:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39314:224;39416:4;39455:35;39440:50;;;:11;:50;;;;:90;;;;39494:36;39518:11;39494:23;:36::i;:::-;39440:90;39433:97;;39314:224;;;:::o;48681:79::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48746:6:::1;48737;;:15;;;;;;;;;;;;;;;;;;48681:79:::0;:::o;26134:100::-;26188:13;26221:5;26214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26134:100;:::o;27693:221::-;27769:7;27797:16;27805:7;27797;:16::i;:::-;27789:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27882:15;:24;27898:7;27882:24;;;;;;;;;;;;;;;;;;;;;27875:31;;27693:221;;;:::o;27216:411::-;27297:13;27313:23;27328:7;27313:14;:23::i;:::-;27297:39;;27361:5;27355:11;;:2;:11;;;;27347:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27455:5;27439:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27464:37;27481:5;27488:12;:10;:12::i;:::-;27464:16;:37::i;:::-;27439:62;27417:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27598:21;27607:2;27611:7;27598:8;:21::i;:::-;27286:341;27216:411;;:::o;45702:32::-;;;;:::o;39954:113::-;40015:7;40042:10;:17;;;;40035:24;;39954:113;:::o;45859:28::-;;;;;;;;;;;;;:::o;48452:221::-;48493:4;48526;48513:17;;:9;;;;;;;;;;;:17;;;:55;;;;;48564:4;48534:34;;:14;:26;48549:10;48534:26;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;48513:55;48510:156;;;48591:11;;48584:18;;;;48510:156;48650:4;;48643:11;;48452:221;;:::o;28443:339::-;28638:41;28657:12;:10;:12::i;:::-;28671:7;28638:18;:41::i;:::-;28630:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28746:28;28756:4;28762:2;28766:7;28746:9;:28::i;:::-;28443:339;;;:::o;45741:39::-;;;;:::o;39622:256::-;39719:7;39755:23;39772:5;39755:16;:23::i;:::-;39747:5;:31;39739:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39844:12;:19;39857:5;39844:19;;;;;;;;;;;;;;;:26;39864:5;39844:26;;;;;;;;;;;;39837:33;;39622:256;;;;:::o;45894:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;49280:192::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49337:12:::1;49363:10;49355:24;;49401:21;49355:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49336:101;;;49456:7;49448:16;;;::::0;::::1;;49325:147;49280:192::o:0;28853:185::-;28991:39;29008:4;29014:2;29018:7;28991:39;;;;;;;;;;;;:16;:39::i;:::-;28853:185;;;:::o;46913:390::-;47000:16;47034:23;47060:17;47070:6;47060:9;:17::i;:::-;47034:43;;47088:25;47130:15;47116:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47088:58;;47162:9;47157:113;47177:15;47173:1;:19;47157:113;;;47228:30;47248:6;47256:1;47228:19;:30::i;:::-;47214:8;47223:1;47214:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;47194:3;;;;;:::i;:::-;;;;47157:113;;;;47287:8;47280:15;;;;46913:390;;;:::o;47979:86::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48049:8:::1;48042:4;:15;;;;47979:86:::0;:::o;40144:233::-;40219:7;40255:30;:28;:30::i;:::-;40247:5;:38;40239:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40352:10;40363:5;40352:17;;;;;;;;:::i;:::-;;;;;;;;;;40345:24;;40144:233;;;:::o;48181:104::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48266:11:::1;48256:7;:21;;;;;;;;;;;;:::i;:::-;;48181:104:::0;:::o;45826:26::-;;;;;;;;;;;;;:::o;25828:239::-;25900:7;25920:13;25936:7;:16;25944:7;25936:16;;;;;;;;;;;;;;;;;;;;;25920:32;;25988:1;25971:19;;:5;:19;;;;25963:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26054:5;26047:12;;;25828:239;;;:::o;45630:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25558:208::-;25630:7;25675:1;25658:19;;:5;:19;;;;25650:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25742:9;:16;25752:5;25742:16;;;;;;;;;;;;;;;;25735:23;;25558:208;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;48970:187::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49059:6:::1;49054:96;49074:5;:12;49071:1;:15;49054:96;;;49134:4;49107:14;:24;49122:5;49128:1;49122:8;;;;;;;;:::i;:::-;;;;;;;;49107:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;49088:3;;;;;:::i;:::-;;;;49054:96;;;;48970:187:::0;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;48073:100::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48157:8:::1;48143:11;:22;;;;48073:100:::0;:::o;26303:104::-;26359:13;26392:7;26385:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26303:104;:::o;46259:646::-;46320:14;46337:13;:11;:13::i;:::-;46320:30;;46372:6;;;;;;;;;;;46371:7;46363:16;;;;;;46412:1;46398:11;:15;46390:24;;;;;;46457:9;;46442:11;46433:6;:20;;;;:::i;:::-;:33;;46425:42;;;;;;46498:7;:5;:7::i;:::-;46484:21;;:10;:21;;;46480:303;;46538:4;46525:17;;:9;;;;;;;;;;;:17;;;46522:250;;;46570:14;:26;46585:10;46570:26;;;;;;;;;;;;;;;;;;;;;;;;;46562:35;;;;;;46651:11;46637;;:25;;;;:::i;:::-;46624:9;:38;;46616:47;;;;;;46522:250;;;46744:11;46737:4;;:18;;;;:::i;:::-;46724:9;:31;;46716:40;;;;;;46522:250;46480:303;46800:9;46812:1;46800:13;;46795:103;46820:11;46815:1;:16;46795:103;;46853:33;46863:10;46884:1;46875:6;:10;;;;:::i;:::-;46853:9;:33::i;:::-;46833:3;;;;;:::i;:::-;;;;46795:103;;;;46309:596;46259:646;:::o;27986:155::-;28081:52;28100:12;:10;:12::i;:::-;28114:8;28124;28081:18;:52::i;:::-;27986:155;;:::o;48859:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48950:4:::1;48926:14;:21;48941:5;48926:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;48859:103:::0;:::o;29109:328::-;29284:41;29303:12;:10;:12::i;:::-;29317:7;29284:18;:41::i;:::-;29276:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29390:39;29404:4;29410:2;29414:7;29423:5;29390:13;:39::i;:::-;29109:328;;;;:::o;45658:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47311:642::-;47429:13;47482:16;47490:7;47482;:16::i;:::-;47460:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;47586:28;47617:10;:8;:10::i;:::-;47586:41;;47689:1;47664:14;47658:28;:32;:287;;;;;;;;;;;;;;;;;47782:14;47823:18;:7;:16;:18::i;:::-;47868:13;47739:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47658:287;47638:307;;;47311:642;;;:::o;45787:32::-;;;;:::o;48768:83::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48834:9:::1;;;;;;;;;;;48833:10;48821:9;;:22;;;;;;;;;;;;;;;;;;48768:83::o:0;48293:151::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48419:17:::1;48403:13;:33;;;;;;;;;;;;:::i;:::-;;48293:151:::0;:::o;28212:164::-;28309:4;28333:18;:25;28352:5;28333:25;;;;;;;;;;;;;;;:35;28359:8;28333:35;;;;;;;;;;;;;;;;;;;;;;;;;28326:42;;28212:164;;;;:::o;49165:107::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49259:5:::1;49235:14;:21;49250:5;49235:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;49165:107:::0;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;25189:305::-;25291:4;25343:25;25328:40;;;:11;:40;;;;:105;;;;25400:33;25385:48;;;:11;:48;;;;25328:105;:158;;;;25450:36;25474:11;25450:23;:36::i;:::-;25328:158;25308:178;;25189:305;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;30947:127::-;31012:4;31064:1;31036:30;;:7;:16;31044:7;31036:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31029:37;;30947:127;;;:::o;35093:174::-;35195:2;35168:15;:24;35184:7;35168:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35251:7;35247:2;35213:46;;35222:23;35237:7;35222:14;:23::i;:::-;35213:46;;;;;;;;;;;;35093:174;;:::o;31241:348::-;31334:4;31359:16;31367:7;31359;:16::i;:::-;31351:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31435:13;31451:23;31466:7;31451:14;:23::i;:::-;31435:39;;31504:5;31493:16;;:7;:16;;;:51;;;;31537:7;31513:31;;:20;31525:7;31513:11;:20::i;:::-;:31;;;31493:51;:87;;;;31548:32;31565:5;31572:7;31548:16;:32::i;:::-;31493:87;31485:96;;;31241:348;;;;:::o;34350:625::-;34509:4;34482:31;;:23;34497:7;34482:14;:23::i;:::-;:31;;;34474:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34588:1;34574:16;;:2;:16;;;;34566:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34644:39;34665:4;34671:2;34675:7;34644:20;:39::i;:::-;34748:29;34765:1;34769:7;34748:8;:29::i;:::-;34809:1;34790:9;:15;34800:4;34790:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34838:1;34821:9;:13;34831:2;34821:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34869:2;34850:7;:16;34858:7;34850:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34908:7;34904:2;34889:27;;34898:4;34889:27;;;;;;;;;;;;34929:38;34949:4;34955:2;34959:7;34929:19;:38::i;:::-;34350:625;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;31931:110::-;32007:26;32017:2;32021:7;32007:26;;;;;;;;;;;;:9;:26::i;:::-;31931:110;;:::o;35409:315::-;35564:8;35555:17;;:5;:17;;;;35547:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35651:8;35613:18;:25;35632:5;35613:25;;;;;;;;;;;;;;;:35;35639:8;35613:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35697:8;35675:41;;35690:5;35675:41;;;35707:8;35675:41;;;;;;:::i;:::-;;;;;;;;35409:315;;;:::o;30319:::-;30476:28;30486:4;30492:2;30496:7;30476:9;:28::i;:::-;30523:48;30546:4;30552:2;30556:7;30565:5;30523:22;:48::i;:::-;30515:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30319:315;;;;:::o;46141:108::-;46201:13;46234:7;46227:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46141:108;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;16863:157::-;16948:4;16987:25;16972:40;;;:11;:40;;;;16965:47;;16863:157;;;:::o;40990:589::-;41134:45;41161:4;41167:2;41171:7;41134:26;:45::i;:::-;41212:1;41196:18;;:4;:18;;;41192:187;;;41231:40;41263:7;41231:31;:40::i;:::-;41192:187;;;41301:2;41293:10;;:4;:10;;;41289:90;;41320:47;41353:4;41359:7;41320:32;:47::i;:::-;41289:90;41192:187;41407:1;41393:16;;:2;:16;;;41389:183;;;41426:45;41463:7;41426:36;:45::i;:::-;41389:183;;;41499:4;41493:10;;:2;:10;;;41489:83;;41520:40;41548:2;41552:7;41520:27;:40::i;:::-;41489:83;41389:183;40990:589;;;:::o;38171:125::-;;;;:::o;32268:321::-;32398:18;32404:2;32408:7;32398:5;:18::i;:::-;32449:54;32480:1;32484:2;32488:7;32497:5;32449:22;:54::i;:::-;32427:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32268:321;;;:::o;36289:799::-;36444:4;36465:15;:2;:13;;;:15::i;:::-;36461:620;;;36517:2;36501:36;;;36538:12;:10;:12::i;:::-;36552:4;36558:7;36567:5;36501:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36497:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36760:1;36743:6;:13;:18;36739:272;;;36786:60;;;;;;;;;;:::i;:::-;;;;;;;;36739:272;36961:6;36955:13;36946:6;36942:2;36938:15;36931:38;36497:529;36634:41;;;36624:51;;;:6;:51;;;;36617:58;;;;;36461:620;37065:4;37058:11;;36289:799;;;;;;;:::o;37660:126::-;;;;:::o;42302:164::-;42406:10;:17;;;;42379:15;:24;42395:7;42379:24;;;;;;;;;;;:44;;;;42434:10;42450:7;42434:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42302:164;:::o;43093:988::-;43359:22;43409:1;43384:22;43401:4;43384:16;:22::i;:::-;:26;;;;:::i;:::-;43359:51;;43421:18;43442:17;:26;43460:7;43442:26;;;;;;;;;;;;43421:47;;43589:14;43575:10;:28;43571:328;;43620:19;43642:12;:18;43655:4;43642:18;;;;;;;;;;;;;;;:34;43661:14;43642:34;;;;;;;;;;;;43620:56;;43726:11;43693:12;:18;43706:4;43693:18;;;;;;;;;;;;;;;:30;43712:10;43693:30;;;;;;;;;;;:44;;;;43843:10;43810:17;:30;43828:11;43810:30;;;;;;;;;;;:43;;;;43605:294;43571:328;43995:17;:26;44013:7;43995:26;;;;;;;;;;;43988:33;;;44039:12;:18;44052:4;44039:18;;;;;;;;;;;;;;;:34;44058:14;44039:34;;;;;;;;;;;44032:41;;;43174:907;;43093:988;;:::o;44376:1079::-;44629:22;44674:1;44654:10;:17;;;;:21;;;;:::i;:::-;44629:46;;44686:18;44707:15;:24;44723:7;44707:24;;;;;;;;;;;;44686:45;;45058:19;45080:10;45091:14;45080:26;;;;;;;;:::i;:::-;;;;;;;;;;45058:48;;45144:11;45119:10;45130;45119:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45255:10;45224:15;:28;45240:11;45224:28;;;;;;;;;;;:41;;;;45396:15;:24;45412:7;45396:24;;;;;;;;;;;45389:31;;;45431:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44447:1008;;;44376:1079;:::o;41880:221::-;41965:14;41982:20;41999:2;41982:16;:20::i;:::-;41965:37;;42040:7;42013:12;:16;42026:2;42013:16;;;;;;;;;;;;;;;:24;42030:6;42013:24;;;;;;;;;;;:34;;;;42087:6;42058:17;:26;42076:7;42058:26;;;;;;;;;;;:35;;;;41954:147;41880:221;;:::o;32925:439::-;33019:1;33005:16;;:2;:16;;;;32997:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33078:16;33086:7;33078;:16::i;:::-;33077:17;33069:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33140:45;33169:1;33173:2;33177:7;33140:20;:45::i;:::-;33215:1;33198:9;:13;33208:2;33198:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33246:2;33227:7;:16;33235:7;33227:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33291:7;33287:2;33266:33;;33283:1;33266:33;;;;;;;;;;;;33312:44;33340:1;33344:2;33348:7;33312:19;:44::i;:::-;32925:439;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:323::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:50;7601:7;7592:6;7581:9;7577:22;7559:50;:::i;:::-;7549:60;;7505:114;7303:323;;;;:::o;7632:327::-;7690:6;7739:2;7727:9;7718:7;7714:23;7710:32;7707:119;;;7745:79;;:::i;:::-;7707:119;7865:1;7890:52;7934:7;7925:6;7914:9;7910:22;7890:52;:::i;:::-;7880:62;;7836:116;7632:327;;;;:::o;7965:349::-;8034:6;8083:2;8071:9;8062:7;8058:23;8054:32;8051:119;;;8089:79;;:::i;:::-;8051:119;8209:1;8234:63;8289:7;8280:6;8269:9;8265:22;8234:63;:::i;:::-;8224:73;;8180:127;7965:349;;;;:::o;8320:509::-;8389:6;8438:2;8426:9;8417:7;8413:23;8409:32;8406:119;;;8444:79;;:::i;:::-;8406:119;8592:1;8581:9;8577:17;8564:31;8622:18;8614:6;8611:30;8608:117;;;8644:79;;:::i;:::-;8608:117;8749:63;8804:7;8795:6;8784:9;8780:22;8749:63;:::i;:::-;8739:73;;8535:287;8320:509;;;;:::o;8835:329::-;8894:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:119;;;8949:79;;:::i;:::-;8911:119;9069:1;9094:53;9139:7;9130:6;9119:9;9115:22;9094:53;:::i;:::-;9084:63;;9040:117;8835:329;;;;:::o;9170:179::-;9239:10;9260:46;9302:3;9294:6;9260:46;:::i;:::-;9338:4;9333:3;9329:14;9315:28;;9170:179;;;;:::o;9355:118::-;9442:24;9460:5;9442:24;:::i;:::-;9437:3;9430:37;9355:118;;:::o;9509:732::-;9628:3;9657:54;9705:5;9657:54;:::i;:::-;9727:86;9806:6;9801:3;9727:86;:::i;:::-;9720:93;;9837:56;9887:5;9837:56;:::i;:::-;9916:7;9947:1;9932:284;9957:6;9954:1;9951:13;9932:284;;;10033:6;10027:13;10060:63;10119:3;10104:13;10060:63;:::i;:::-;10053:70;;10146:60;10199:6;10146:60;:::i;:::-;10136:70;;9992:224;9979:1;9976;9972:9;9967:14;;9932:284;;;9936:14;10232:3;10225:10;;9633:608;;;9509:732;;;;:::o;10247:109::-;10328:21;10343:5;10328:21;:::i;:::-;10323:3;10316:34;10247:109;;:::o;10362:360::-;10448:3;10476:38;10508:5;10476:38;:::i;:::-;10530:70;10593:6;10588:3;10530:70;:::i;:::-;10523:77;;10609:52;10654:6;10649:3;10642:4;10635:5;10631:16;10609:52;:::i;:::-;10686:29;10708:6;10686:29;:::i;:::-;10681:3;10677:39;10670:46;;10452:270;10362:360;;;;:::o;10728:364::-;10816:3;10844:39;10877:5;10844:39;:::i;:::-;10899:71;10963:6;10958:3;10899:71;:::i;:::-;10892:78;;10979:52;11024:6;11019:3;11012:4;11005:5;11001:16;10979:52;:::i;:::-;11056:29;11078:6;11056:29;:::i;:::-;11051:3;11047:39;11040:46;;10820:272;10728:364;;;;:::o;11098:377::-;11204:3;11232:39;11265:5;11232:39;:::i;:::-;11287:89;11369:6;11364:3;11287:89;:::i;:::-;11280:96;;11385:52;11430:6;11425:3;11418:4;11411:5;11407:16;11385:52;:::i;:::-;11462:6;11457:3;11453:16;11446:23;;11208:267;11098:377;;;;:::o;11505:845::-;11608:3;11645:5;11639:12;11674:36;11700:9;11674:36;:::i;:::-;11726:89;11808:6;11803:3;11726:89;:::i;:::-;11719:96;;11846:1;11835:9;11831:17;11862:1;11857:137;;;;12008:1;12003:341;;;;11824:520;;11857:137;11941:4;11937:9;11926;11922:25;11917:3;11910:38;11977:6;11972:3;11968:16;11961:23;;11857:137;;12003:341;12070:38;12102:5;12070:38;:::i;:::-;12130:1;12144:154;12158:6;12155:1;12152:13;12144:154;;;12232:7;12226:14;12222:1;12217:3;12213:11;12206:35;12282:1;12273:7;12269:15;12258:26;;12180:4;12177:1;12173:12;12168:17;;12144:154;;;12327:6;12322:3;12318:16;12311:23;;12010:334;;11824:520;;11612:738;;11505:845;;;;:::o;12356:366::-;12498:3;12519:67;12583:2;12578:3;12519:67;:::i;:::-;12512:74;;12595:93;12684:3;12595:93;:::i;:::-;12713:2;12708:3;12704:12;12697:19;;12356:366;;;:::o;12728:::-;12870:3;12891:67;12955:2;12950:3;12891:67;:::i;:::-;12884:74;;12967:93;13056:3;12967:93;:::i;:::-;13085:2;13080:3;13076:12;13069:19;;12728:366;;;:::o;13100:::-;13242:3;13263:67;13327:2;13322:3;13263:67;:::i;:::-;13256:74;;13339:93;13428:3;13339:93;:::i;:::-;13457:2;13452:3;13448:12;13441:19;;13100:366;;;:::o;13472:::-;13614:3;13635:67;13699:2;13694:3;13635:67;:::i;:::-;13628:74;;13711:93;13800:3;13711:93;:::i;:::-;13829:2;13824:3;13820:12;13813:19;;13472:366;;;:::o;13844:::-;13986:3;14007:67;14071:2;14066:3;14007:67;:::i;:::-;14000:74;;14083:93;14172:3;14083:93;:::i;:::-;14201:2;14196:3;14192:12;14185:19;;13844:366;;;:::o;14216:::-;14358:3;14379:67;14443:2;14438:3;14379:67;:::i;:::-;14372:74;;14455:93;14544:3;14455:93;:::i;:::-;14573:2;14568:3;14564:12;14557:19;;14216:366;;;:::o;14588:::-;14730:3;14751:67;14815:2;14810:3;14751:67;:::i;:::-;14744:74;;14827:93;14916:3;14827:93;:::i;:::-;14945:2;14940:3;14936:12;14929:19;;14588:366;;;:::o;14960:::-;15102:3;15123:67;15187:2;15182:3;15123:67;:::i;:::-;15116:74;;15199:93;15288:3;15199:93;:::i;:::-;15317:2;15312:3;15308:12;15301:19;;14960:366;;;:::o;15332:::-;15474:3;15495:67;15559:2;15554:3;15495:67;:::i;:::-;15488:74;;15571:93;15660:3;15571:93;:::i;:::-;15689:2;15684:3;15680:12;15673:19;;15332:366;;;:::o;15704:::-;15846:3;15867:67;15931:2;15926:3;15867:67;:::i;:::-;15860:74;;15943:93;16032:3;15943:93;:::i;:::-;16061:2;16056:3;16052:12;16045:19;;15704:366;;;:::o;16076:::-;16218:3;16239:67;16303:2;16298:3;16239:67;:::i;:::-;16232:74;;16315:93;16404:3;16315:93;:::i;:::-;16433:2;16428:3;16424:12;16417:19;;16076:366;;;:::o;16448:::-;16590:3;16611:67;16675:2;16670:3;16611:67;:::i;:::-;16604:74;;16687:93;16776:3;16687:93;:::i;:::-;16805:2;16800:3;16796:12;16789:19;;16448:366;;;:::o;16820:::-;16962:3;16983:67;17047:2;17042:3;16983:67;:::i;:::-;16976:74;;17059:93;17148:3;17059:93;:::i;:::-;17177:2;17172:3;17168:12;17161:19;;16820:366;;;:::o;17192:::-;17334:3;17355:67;17419:2;17414:3;17355:67;:::i;:::-;17348:74;;17431:93;17520:3;17431:93;:::i;:::-;17549:2;17544:3;17540:12;17533:19;;17192:366;;;:::o;17564:::-;17706:3;17727:67;17791:2;17786:3;17727:67;:::i;:::-;17720:74;;17803:93;17892:3;17803:93;:::i;:::-;17921:2;17916:3;17912:12;17905:19;;17564:366;;;:::o;17936:::-;18078:3;18099:67;18163:2;18158:3;18099:67;:::i;:::-;18092:74;;18175:93;18264:3;18175:93;:::i;:::-;18293:2;18288:3;18284:12;18277:19;;17936:366;;;:::o;18308:398::-;18467:3;18488:83;18569:1;18564:3;18488:83;:::i;:::-;18481:90;;18580:93;18669:3;18580:93;:::i;:::-;18698:1;18693:3;18689:11;18682:18;;18308:398;;;:::o;18712:366::-;18854:3;18875:67;18939:2;18934:3;18875:67;:::i;:::-;18868:74;;18951:93;19040:3;18951:93;:::i;:::-;19069:2;19064:3;19060:12;19053:19;;18712:366;;;:::o;19084:::-;19226:3;19247:67;19311:2;19306:3;19247:67;:::i;:::-;19240:74;;19323:93;19412:3;19323:93;:::i;:::-;19441:2;19436:3;19432:12;19425:19;;19084:366;;;:::o;19456:108::-;19533:24;19551:5;19533:24;:::i;:::-;19528:3;19521:37;19456:108;;:::o;19570:118::-;19657:24;19675:5;19657:24;:::i;:::-;19652:3;19645:37;19570:118;;:::o;19694:589::-;19919:3;19941:95;20032:3;20023:6;19941:95;:::i;:::-;19934:102;;20053:95;20144:3;20135:6;20053:95;:::i;:::-;20046:102;;20165:92;20253:3;20244:6;20165:92;:::i;:::-;20158:99;;20274:3;20267:10;;19694:589;;;;;;:::o;20289:379::-;20473:3;20495:147;20638:3;20495:147;:::i;:::-;20488:154;;20659:3;20652:10;;20289:379;;;:::o;20674:222::-;20767:4;20805:2;20794:9;20790:18;20782:26;;20818:71;20886:1;20875:9;20871:17;20862:6;20818:71;:::i;:::-;20674:222;;;;:::o;20902:640::-;21097:4;21135:3;21124:9;21120:19;21112:27;;21149:71;21217:1;21206:9;21202:17;21193:6;21149:71;:::i;:::-;21230:72;21298:2;21287:9;21283:18;21274:6;21230:72;:::i;:::-;21312;21380:2;21369:9;21365:18;21356:6;21312:72;:::i;:::-;21431:9;21425:4;21421:20;21416:2;21405:9;21401:18;21394:48;21459:76;21530:4;21521:6;21459:76;:::i;:::-;21451:84;;20902:640;;;;;;;:::o;21548:373::-;21691:4;21729:2;21718:9;21714:18;21706:26;;21778:9;21772:4;21768:20;21764:1;21753:9;21749:17;21742:47;21806:108;21909:4;21900:6;21806:108;:::i;:::-;21798:116;;21548:373;;;;:::o;21927:210::-;22014:4;22052:2;22041:9;22037:18;22029:26;;22065:65;22127:1;22116:9;22112:17;22103:6;22065:65;:::i;:::-;21927:210;;;;:::o;22143:313::-;22256:4;22294:2;22283:9;22279:18;22271:26;;22343:9;22337:4;22333:20;22329:1;22318:9;22314:17;22307:47;22371:78;22444:4;22435:6;22371:78;:::i;:::-;22363:86;;22143:313;;;;:::o;22462:419::-;22628:4;22666:2;22655:9;22651:18;22643:26;;22715:9;22709:4;22705:20;22701:1;22690:9;22686:17;22679:47;22743:131;22869:4;22743:131;:::i;:::-;22735:139;;22462:419;;;:::o;22887:::-;23053:4;23091:2;23080:9;23076:18;23068:26;;23140:9;23134:4;23130:20;23126:1;23115:9;23111:17;23104:47;23168:131;23294:4;23168:131;:::i;:::-;23160:139;;22887:419;;;:::o;23312:::-;23478:4;23516:2;23505:9;23501:18;23493:26;;23565:9;23559:4;23555:20;23551:1;23540:9;23536:17;23529:47;23593:131;23719:4;23593:131;:::i;:::-;23585:139;;23312:419;;;:::o;23737:::-;23903:4;23941:2;23930:9;23926:18;23918:26;;23990:9;23984:4;23980:20;23976:1;23965:9;23961:17;23954:47;24018:131;24144:4;24018:131;:::i;:::-;24010:139;;23737:419;;;:::o;24162:::-;24328:4;24366:2;24355:9;24351:18;24343:26;;24415:9;24409:4;24405:20;24401:1;24390:9;24386:17;24379:47;24443:131;24569:4;24443:131;:::i;:::-;24435:139;;24162:419;;;:::o;24587:::-;24753:4;24791:2;24780:9;24776:18;24768:26;;24840:9;24834:4;24830:20;24826:1;24815:9;24811:17;24804:47;24868:131;24994:4;24868:131;:::i;:::-;24860:139;;24587:419;;;:::o;25012:::-;25178:4;25216:2;25205:9;25201:18;25193:26;;25265:9;25259:4;25255:20;25251:1;25240:9;25236:17;25229:47;25293:131;25419:4;25293:131;:::i;:::-;25285:139;;25012:419;;;:::o;25437:::-;25603:4;25641:2;25630:9;25626:18;25618:26;;25690:9;25684:4;25680:20;25676:1;25665:9;25661:17;25654:47;25718:131;25844:4;25718:131;:::i;:::-;25710:139;;25437:419;;;:::o;25862:::-;26028:4;26066:2;26055:9;26051:18;26043:26;;26115:9;26109:4;26105:20;26101:1;26090:9;26086:17;26079:47;26143:131;26269:4;26143:131;:::i;:::-;26135:139;;25862:419;;;:::o;26287:::-;26453:4;26491:2;26480:9;26476:18;26468:26;;26540:9;26534:4;26530:20;26526:1;26515:9;26511:17;26504:47;26568:131;26694:4;26568:131;:::i;:::-;26560:139;;26287:419;;;:::o;26712:::-;26878:4;26916:2;26905:9;26901:18;26893:26;;26965:9;26959:4;26955:20;26951:1;26940:9;26936:17;26929:47;26993:131;27119:4;26993:131;:::i;:::-;26985:139;;26712:419;;;:::o;27137:::-;27303:4;27341:2;27330:9;27326:18;27318:26;;27390:9;27384:4;27380:20;27376:1;27365:9;27361:17;27354:47;27418:131;27544:4;27418:131;:::i;:::-;27410:139;;27137:419;;;:::o;27562:::-;27728:4;27766:2;27755:9;27751:18;27743:26;;27815:9;27809:4;27805:20;27801:1;27790:9;27786:17;27779:47;27843:131;27969:4;27843:131;:::i;:::-;27835:139;;27562:419;;;:::o;27987:::-;28153:4;28191:2;28180:9;28176:18;28168:26;;28240:9;28234:4;28230:20;28226:1;28215:9;28211:17;28204:47;28268:131;28394:4;28268:131;:::i;:::-;28260:139;;27987:419;;;:::o;28412:::-;28578:4;28616:2;28605:9;28601:18;28593:26;;28665:9;28659:4;28655:20;28651:1;28640:9;28636:17;28629:47;28693:131;28819:4;28693:131;:::i;:::-;28685:139;;28412:419;;;:::o;28837:::-;29003:4;29041:2;29030:9;29026:18;29018:26;;29090:9;29084:4;29080:20;29076:1;29065:9;29061:17;29054:47;29118:131;29244:4;29118:131;:::i;:::-;29110:139;;28837:419;;;:::o;29262:::-;29428:4;29466:2;29455:9;29451:18;29443:26;;29515:9;29509:4;29505:20;29501:1;29490:9;29486:17;29479:47;29543:131;29669:4;29543:131;:::i;:::-;29535:139;;29262:419;;;:::o;29687:::-;29853:4;29891:2;29880:9;29876:18;29868:26;;29940:9;29934:4;29930:20;29926:1;29915:9;29911:17;29904:47;29968:131;30094:4;29968:131;:::i;:::-;29960:139;;29687:419;;;:::o;30112:222::-;30205:4;30243:2;30232:9;30228:18;30220:26;;30256:71;30324:1;30313:9;30309:17;30300:6;30256:71;:::i;:::-;30112:222;;;;:::o;30340:129::-;30374:6;30401:20;;:::i;:::-;30391:30;;30430:33;30458:4;30450:6;30430:33;:::i;:::-;30340:129;;;:::o;30475:75::-;30508:6;30541:2;30535:9;30525:19;;30475:75;:::o;30556:311::-;30633:4;30723:18;30715:6;30712:30;30709:56;;;30745:18;;:::i;:::-;30709:56;30795:4;30787:6;30783:17;30775:25;;30855:4;30849;30845:15;30837:23;;30556:311;;;:::o;30873:307::-;30934:4;31024:18;31016:6;31013:30;31010:56;;;31046:18;;:::i;:::-;31010:56;31084:29;31106:6;31084:29;:::i;:::-;31076:37;;31168:4;31162;31158:15;31150:23;;30873:307;;;:::o;31186:308::-;31248:4;31338:18;31330:6;31327:30;31324:56;;;31360:18;;:::i;:::-;31324:56;31398:29;31420:6;31398:29;:::i;:::-;31390:37;;31482:4;31476;31472:15;31464:23;;31186:308;;;:::o;31500:132::-;31567:4;31590:3;31582:11;;31620:4;31615:3;31611:14;31603:22;;31500:132;;;:::o;31638:141::-;31687:4;31710:3;31702:11;;31733:3;31730:1;31723:14;31767:4;31764:1;31754:18;31746:26;;31638:141;;;:::o;31785:114::-;31852:6;31886:5;31880:12;31870:22;;31785:114;;;:::o;31905:98::-;31956:6;31990:5;31984:12;31974:22;;31905:98;;;:::o;32009:99::-;32061:6;32095:5;32089:12;32079:22;;32009:99;;;:::o;32114:113::-;32184:4;32216;32211:3;32207:14;32199:22;;32114:113;;;:::o;32233:184::-;32332:11;32366:6;32361:3;32354:19;32406:4;32401:3;32397:14;32382:29;;32233:184;;;;:::o;32423:168::-;32506:11;32540:6;32535:3;32528:19;32580:4;32575:3;32571:14;32556:29;;32423:168;;;;:::o;32597:147::-;32698:11;32735:3;32720:18;;32597:147;;;;:::o;32750:169::-;32834:11;32868:6;32863:3;32856:19;32908:4;32903:3;32899:14;32884:29;;32750:169;;;;:::o;32925:148::-;33027:11;33064:3;33049:18;;32925:148;;;;:::o;33079:305::-;33119:3;33138:20;33156:1;33138:20;:::i;:::-;33133:25;;33172:20;33190:1;33172:20;:::i;:::-;33167:25;;33326:1;33258:66;33254:74;33251:1;33248:81;33245:107;;;33332:18;;:::i;:::-;33245:107;33376:1;33373;33369:9;33362:16;;33079:305;;;;:::o;33390:185::-;33430:1;33447:20;33465:1;33447:20;:::i;:::-;33442:25;;33481:20;33499:1;33481:20;:::i;:::-;33476:25;;33520:1;33510:35;;33525:18;;:::i;:::-;33510:35;33567:1;33564;33560:9;33555:14;;33390:185;;;;:::o;33581:348::-;33621:7;33644:20;33662:1;33644:20;:::i;:::-;33639:25;;33678:20;33696:1;33678:20;:::i;:::-;33673:25;;33866:1;33798:66;33794:74;33791:1;33788:81;33783:1;33776:9;33769:17;33765:105;33762:131;;;33873:18;;:::i;:::-;33762:131;33921:1;33918;33914:9;33903:20;;33581:348;;;;:::o;33935:191::-;33975:4;33995:20;34013:1;33995:20;:::i;:::-;33990:25;;34029:20;34047:1;34029:20;:::i;:::-;34024:25;;34068:1;34065;34062:8;34059:34;;;34073:18;;:::i;:::-;34059:34;34118:1;34115;34111:9;34103:17;;33935:191;;;;:::o;34132:96::-;34169:7;34198:24;34216:5;34198:24;:::i;:::-;34187:35;;34132:96;;;:::o;34234:90::-;34268:7;34311:5;34304:13;34297:21;34286:32;;34234:90;;;:::o;34330:149::-;34366:7;34406:66;34399:5;34395:78;34384:89;;34330:149;;;:::o;34485:126::-;34522:7;34562:42;34555:5;34551:54;34540:65;;34485:126;;;:::o;34617:77::-;34654:7;34683:5;34672:16;;34617:77;;;:::o;34700:154::-;34784:6;34779:3;34774;34761:30;34846:1;34837:6;34832:3;34828:16;34821:27;34700:154;;;:::o;34860:307::-;34928:1;34938:113;34952:6;34949:1;34946:13;34938:113;;;35037:1;35032:3;35028:11;35022:18;35018:1;35013:3;35009:11;35002:39;34974:2;34971:1;34967:10;34962:15;;34938:113;;;35069:6;35066:1;35063:13;35060:101;;;35149:1;35140:6;35135:3;35131:16;35124:27;35060:101;34909:258;34860:307;;;:::o;35173:320::-;35217:6;35254:1;35248:4;35244:12;35234:22;;35301:1;35295:4;35291:12;35322:18;35312:81;;35378:4;35370:6;35366:17;35356:27;;35312:81;35440:2;35432:6;35429:14;35409:18;35406:38;35403:84;;;35459:18;;:::i;:::-;35403:84;35224:269;35173:320;;;:::o;35499:281::-;35582:27;35604:4;35582:27;:::i;:::-;35574:6;35570:40;35712:6;35700:10;35697:22;35676:18;35664:10;35661:34;35658:62;35655:88;;;35723:18;;:::i;:::-;35655:88;35763:10;35759:2;35752:22;35542:238;35499:281;;:::o;35786:233::-;35825:3;35848:24;35866:5;35848:24;:::i;:::-;35839:33;;35894:66;35887:5;35884:77;35881:103;;;35964:18;;:::i;:::-;35881:103;36011:1;36004:5;36000:13;35993:20;;35786:233;;;:::o;36025:176::-;36057:1;36074:20;36092:1;36074:20;:::i;:::-;36069:25;;36108:20;36126:1;36108:20;:::i;:::-;36103:25;;36147:1;36137:35;;36152:18;;:::i;:::-;36137:35;36193:1;36190;36186:9;36181:14;;36025:176;;;;:::o;36207:180::-;36255:77;36252:1;36245:88;36352:4;36349:1;36342:15;36376:4;36373:1;36366:15;36393:180;36441:77;36438:1;36431:88;36538:4;36535:1;36528:15;36562:4;36559:1;36552:15;36579:180;36627:77;36624:1;36617:88;36724:4;36721:1;36714:15;36748:4;36745:1;36738:15;36765:180;36813:77;36810:1;36803:88;36910:4;36907:1;36900:15;36934:4;36931:1;36924:15;36951:180;36999:77;36996:1;36989:88;37096:4;37093:1;37086:15;37120:4;37117:1;37110:15;37137:180;37185:77;37182:1;37175:88;37282:4;37279:1;37272:15;37306:4;37303:1;37296:15;37323:117;37432:1;37429;37422:12;37446:117;37555:1;37552;37545:12;37569:117;37678:1;37675;37668:12;37692:117;37801:1;37798;37791:12;37815:117;37924:1;37921;37914:12;37938:102;37979:6;38030:2;38026:7;38021:2;38014:5;38010:14;38006:28;37996:38;;37938:102;;;:::o;38046:230::-;38186:34;38182:1;38174:6;38170:14;38163:58;38255:13;38250:2;38242:6;38238:15;38231:38;38046:230;:::o;38282:237::-;38422:34;38418:1;38410:6;38406:14;38399:58;38491:20;38486:2;38478:6;38474:15;38467:45;38282:237;:::o;38525:225::-;38665:34;38661:1;38653:6;38649:14;38642:58;38734:8;38729:2;38721:6;38717:15;38710:33;38525:225;:::o;38756:224::-;38896:34;38892:1;38884:6;38880:14;38873:58;38965:7;38960:2;38952:6;38948:15;38941:32;38756:224;:::o;38986:178::-;39126:30;39122:1;39114:6;39110:14;39103:54;38986:178;:::o;39170:223::-;39310:34;39306:1;39298:6;39294:14;39287:58;39379:6;39374:2;39366:6;39362:15;39355:31;39170:223;:::o;39399:175::-;39539:27;39535:1;39527:6;39523:14;39516:51;39399:175;:::o;39580:231::-;39720:34;39716:1;39708:6;39704:14;39697:58;39789:14;39784:2;39776:6;39772:15;39765:39;39580:231;:::o;39817:243::-;39957:34;39953:1;39945:6;39941:14;39934:58;40026:26;40021:2;40013:6;40009:15;40002:51;39817:243;:::o;40066:229::-;40206:34;40202:1;40194:6;40190:14;40183:58;40275:12;40270:2;40262:6;40258:15;40251:37;40066:229;:::o;40301:228::-;40441:34;40437:1;40429:6;40425:14;40418:58;40510:11;40505:2;40497:6;40493:15;40486:36;40301:228;:::o;40535:182::-;40675:34;40671:1;40663:6;40659:14;40652:58;40535:182;:::o;40723:231::-;40863:34;40859:1;40851:6;40847:14;40840:58;40932:14;40927:2;40919:6;40915:15;40908:39;40723:231;:::o;40960:182::-;41100:34;41096:1;41088:6;41084:14;41077:58;40960:182;:::o;41148:234::-;41288:34;41284:1;41276:6;41272:14;41265:58;41357:17;41352:2;41344:6;41340:15;41333:42;41148:234;:::o;41388:220::-;41528:34;41524:1;41516:6;41512:14;41505:58;41597:3;41592:2;41584:6;41580:15;41573:28;41388:220;:::o;41614:114::-;;:::o;41734:236::-;41874:34;41870:1;41862:6;41858:14;41851:58;41943:19;41938:2;41930:6;41926:15;41919:44;41734:236;:::o;41976:231::-;42116:34;42112:1;42104:6;42100:14;42093:58;42185:14;42180:2;42172:6;42168:15;42161:39;41976:231;:::o;42213:122::-;42286:24;42304:5;42286:24;:::i;:::-;42279:5;42276:35;42266:63;;42325:1;42322;42315:12;42266:63;42213:122;:::o;42341:116::-;42411:21;42426:5;42411:21;:::i;:::-;42404:5;42401:32;42391:60;;42447:1;42444;42437:12;42391:60;42341:116;:::o;42463:120::-;42535:23;42552:5;42535:23;:::i;:::-;42528:5;42525:34;42515:62;;42573:1;42570;42563:12;42515:62;42463:120;:::o;42589:122::-;42662:24;42680:5;42662:24;:::i;:::-;42655:5;42652:35;42642:63;;42701:1;42698;42691:12;42642:63;42589:122;:::o

Swarm Source

ipfs://36225683c4417434cd8cc5bfd5bbada887e2397eb7ed9fed27236a866d62b092
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.