ETH Price: $3,890.66 (+0.10%)

Token

EasyCowboy (EZCB)
 

Overview

Max Total Supply

255 EZCB

Holders

40

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
j4ck.eth
Balance
2 EZCB
0xDFe8beeE223412F316baf2968B17527D6EbA29F1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EasyCowboy

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-24
*/

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// 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/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/ERC721URIStorage.sol


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

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: contracts/EZ.sol


pragma solidity 0.8.4;

/// @title Easycowboys ///
/// @author Pradhumna Pancholi ///





// ███████╗ █████╗ ███████╗██╗   ██╗     ██████╗ ██████╗ ██╗    ██╗██████╗  ██████╗ ██╗   ██╗
// ██╔════╝██╔══██╗██╔════╝╚██╗ ██╔╝    ██╔════╝██╔═══██╗██║    ██║██╔══██╗██╔═══██╗╚██╗ ██╔╝
// █████╗  ███████║███████╗ ╚████╔╝     ██║     ██║   ██║██║ █╗ ██║██████╔╝██║   ██║ ╚████╔╝
// ██╔══╝  ██╔══██║╚════██║  ╚██╔╝      ██║     ██║   ██║██║███╗██║██╔══██╗██║   ██║  ╚██╔╝
// ███████╗██║  ██║███████║   ██║       ╚██████╗╚██████╔╝╚███╔███╔╝██████╔╝╚██████╔╝   ██║
// ╚══════╝╚═╝  ╚═╝╚══════╝   ╚═╝        ╚═════╝ ╚═════╝  ╚══╝╚══╝ ╚═════╝  ╚═════╝    ╚═╝
//

contract EasyCowboy is Ownable, ERC721URIStorage {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    /// @notice cost: Amount to play for minting a nft//
    uint256 public constant COST = 0.069 ether;
    /// @notice maxSupply: Total number of minitable NFTs ///
    uint256 public constant MAX_SUPPLY = 10000;
    /// @notice maxMint: Amount of NFTs a single wallet can mint//
    uint256 public constant MAX_MINT = 5;
    /// @notice max mint batch: Maximum tokens that owner can mint in a batch//
    uint256 public constant MAX_MINT_BATCH = 100;
    /// @notice maxMintPerSession:  Amount of NFT's that can be minted per session as this contract allows bulk minting ///
    uint256 public constant MAX_MINT_PER_SESSION = 5;
    /// @notice paused: State of contract. If paused, no new NFTs can be minted.///
    bool public paused = false;
    // base uri//
    string constant BASE_URI =
        "ipfs://QmegyqSd9aKXdFotozc9KRzmmVfHquXYW5fJ6h4Z6m9Uat";
    /// @notice tokenMintedByAddress: Keeps a track of number of tokens limted by an address ///
    /// @dev this structure sits perfectly between uitlity and complexity to make sure that no wallet address can mint more than 5 tokens///
    mapping(address => uint256) public tokenMintedByAddress;

    constructor() ERC721("EasyCowboy", "EZCB") {}

    event Withdraw(address _to, uint256 _value);

    /// @dev : this works as a wrapper to handle the call if function is calledd with an argument//
    function mint() external payable {
        mint(1);
    }

    /// @dev mint: mint an NFT if the following conditions are met ///
    /// 1. Contract is not paused ///
    /// 2. Check if the current mint is not more than maxMint.
    /// 3. Anount of ether sent is correct ///
    /// 4. "numberOfTokens" is not more than max allowed to ming per session ///
    /// 5. Calling address won't have more than max allowed to mint per wallet including the triggerd mint ///
    /// @param _numberOfTokens: Amount of tokens to mints as we allow bulk mintiing ///
    function mint(uint256 _numberOfTokens) public payable {
        require(paused == false, "Contract is paused");
        require(MAX_SUPPLY > _tokenIds.current(), "Max supply reached");
        require(
            MAX_MINT_PER_SESSION >= _numberOfTokens,
            "You can not mint more than 5 tokens per session"
        );
        require(
            MAX_MINT >= (tokenMintedByAddress[msg.sender] + _numberOfTokens),
            "A wallet can not mint more than 5 tokens"
        );
        //check if amount of ether sent is correct//
        require(msg.value >= (_numberOfTokens * COST), "Insufficient funds");
        // Update state tokenMintedByAddress //
        tokenMintedByAddress[msg.sender] += _numberOfTokens;
        for (uint256 i = 0; i < _numberOfTokens; i++) {
            _tokenIds.increment(); // increment counter state
            uint256 tokenId = _tokenIds.current(); // get current state of counter for token id//
            //prepare tokenURI//
            string memory id = Strings.toString(_tokenIds.current());
            string memory tURI = string(abi.encodePacked(BASE_URI, "/", id));
            _safeMint(msg.sender, tokenId);
            _setTokenURI(tokenId, tURI);
        }
    }

    function pause() external onlyOwner returns (bool) {
        paused = true;
        return paused;
    }

    function resume() external onlyOwner returns (bool) {
        paused = false;
        return paused;
    }

    function totalSupply() public view returns (uint256) {
        return _tokenIds.current();
    }

    function withdrawFunds() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "No ether left to withdraw");
        (bool success, ) = (msg.sender).call{value: balance}("");
        require(success, "Withdrawal Failed");
        emit Withdraw(msg.sender, balance);
    }

    // this function is meant to be used by owner to mint a batch of tokens for airdrops, team-members, etc. This method allow owner to mint the token without paying the cost as well///
    function mintBatch(uint256 _numberOfTokens) external onlyOwner {
        require(paused == false, "Contract is paused");
        require(MAX_SUPPLY > _tokenIds.current(), "Max supply reached");
        require(
            MAX_MINT_BATCH >= _numberOfTokens,
            "You can only mint 100 tokens in one batch"
        );
        // Update state tokenMintedByAddress //
        tokenMintedByAddress[msg.sender] += _numberOfTokens;
        for (uint256 i = 0; i < _numberOfTokens; i++) {
            _tokenIds.increment(); // increment counter state
            uint256 tokenId = _tokenIds.current(); // get current state of counter for token id//
            //prepare tokenURI//
            string memory id = Strings.toString(_tokenIds.current());
            string memory tURI = string(abi.encodePacked(BASE_URI, "/", id));
            _safeMint(msg.sender, tokenId);
            _setTokenURI(tokenId, tURI);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_BATCH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_SESSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","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":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resume","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"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":"address","name":"","type":"address"}],"name":"tokenMintedByAddress","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":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526009805460ff191690553480156200001b57600080fd5b506040518060400160405280600a81526020016945617379436f77626f7960b01b8152506040518060400160405280600481526020016322ad21a160e11b8152506200007662000070620000aa60201b60201c565b620000ae565b81516200008b906001906020850190620000fe565b508051620000a1906002906020840190620000fe565b505050620001e1565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200010c90620001a4565b90600052602060002090601f0160209004810192826200013057600085556200017b565b82601f106200014b57805160ff19168380011785556200017b565b828001600101855582156200017b579182015b828111156200017b5782518255916020019190600101906200015e565b50620001899291506200018d565b5090565b5b808211156200018957600081556001016200018e565b600181811c90821680620001b957607f821691505b60208210811415620001db57634e487b7160e01b600052602260045260246000fd5b50919050565b6121b480620001f16000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146104ca578063e985e9c5146104ea578063f0292a03146102c3578063f2fde38b1461053357600080fd5b8063a22cb46514610442578063aa382eea14610462578063b88d4fde1461048f578063bf8fbbd2146104af57600080fd5b80638456cb59116100d15780638456cb59146103e75780638da5cb5b146103fc57806395d89b411461041a578063a0712d681461042f57600080fd5b806370a082311461039d578063715018a6146103bd5780637f7fa5ff146103d257600080fd5b80631cd05f6a1161016f57806332cb6b0c1161013e57806332cb6b0c1461032d57806342842e0e146103435780635c975abb146103635780636352211e1461037d57600080fd5b80631cd05f6a146102c357806320e409b4146102d857806323b872dd146102f857806324600fc31461031857600080fd5b8063081812fc116101ab578063081812fc1461023e578063095ea7b3146102765780631249c58b1461029857806318160ddd146102a057600080fd5b806301ffc9a7146101d2578063046f7da21461020757806306fdde031461021c575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611dea565b610553565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b506101f26105a5565b34801561022857600080fd5b506102316105e9565b6040516101fe9190611f0e565b34801561024a57600080fd5b5061025e610259366004611e22565b61067b565b6040516001600160a01b0390911681526020016101fe565b34801561028257600080fd5b50610296610291366004611dc1565b610703565b005b610296610819565b3480156102ac57600080fd5b506102b5610825565b6040519081526020016101fe565b3480156102cf57600080fd5b506102b5600581565b3480156102e457600080fd5b506102966102f3366004611e22565b610835565b34801561030457600080fd5b50610296610313366004611c77565b610a1e565b34801561032457600080fd5b50610296610a4f565b34801561033957600080fd5b506102b561271081565b34801561034f57600080fd5b5061029661035e366004611c77565b610b90565b34801561036f57600080fd5b506009546101f29060ff1681565b34801561038957600080fd5b5061025e610398366004611e22565b610bab565b3480156103a957600080fd5b506102b56103b8366004611c2b565b610c22565b3480156103c957600080fd5b50610296610ca9565b3480156103de57600080fd5b506102b5606481565b3480156103f357600080fd5b506101f2610cdd565b34801561040857600080fd5b506000546001600160a01b031661025e565b34801561042657600080fd5b50610231610d1c565b61029661043d366004611e22565b610d2b565b34801561044e57600080fd5b5061029661045d366004611d87565b610fb8565b34801561046e57600080fd5b506102b561047d366004611c2b565b600a6020526000908152604090205481565b34801561049b57600080fd5b506102966104aa366004611cb2565b610fc3565b3480156104bb57600080fd5b506102b566f523226980800081565b3480156104d657600080fd5b506102316104e5366004611e22565b610ffb565b3480156104f657600080fd5b506101f2610505366004611c45565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561053f57600080fd5b5061029661054e366004611c2b565b611172565b60006001600160e01b031982166380ac58cd60e01b148061058457506001600160e01b03198216635b5e139f60e01b145b8061059f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b600080546001600160a01b031633146105d95760405162461bcd60e51b81526004016105d090611f73565b60405180910390fd5b506009805460ff19169055600090565b6060600180546105f890612087565b80601f016020809104026020016040519081016040528092919081815260200182805461062490612087565b80156106715780601f1061064657610100808354040283529160200191610671565b820191906000526020600020905b81548152906001019060200180831161065457829003601f168201915b5050505050905090565b60006106868261120d565b6106e75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105d0565b506000908152600560205260409020546001600160a01b031690565b600061070e82610bab565b9050806001600160a01b0316836001600160a01b0316141561077c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105d0565b336001600160a01b038216148061079857506107988133610505565b61080a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105d0565b610814838361122a565b505050565b6108236001610d2b565b565b600061083060085490565b905090565b6000546001600160a01b0316331461085f5760405162461bcd60e51b81526004016105d090611f73565b60095460ff16156108a75760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016105d0565b600854612710116108ef5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b60448201526064016105d0565b80606410156109525760405162461bcd60e51b815260206004820152602960248201527f596f752063616e206f6e6c79206d696e742031303020746f6b656e7320696e206044820152680dedcca40c4c2e8c6d60bb1b60648201526084016105d0565b336000908152600a602052604081208054839290610971908490611ff9565b90915550600090505b81811015610a1a57610990600880546001019055565b600061099b60085490565b905060006109b06109ab60085490565b611298565b9050600060405180606001604052806035815260200161214a60359139826040516020016109df929190611e95565b60405160208183030381529060405290506109fa33846113b2565b610a0483826113cc565b5050508080610a12906120c2565b91505061097a565b5050565b610a283382611457565b610a445760405162461bcd60e51b81526004016105d090611fa8565b61081483838361153d565b6000546001600160a01b03163314610a795760405162461bcd60e51b81526004016105d090611f73565b4780610ac75760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f2077697468647261770000000000000060448201526064016105d0565b604051600090339083908381818185875af1925050503d8060008114610b09576040519150601f19603f3d011682016040523d82523d6000602084013e610b0e565b606091505b5050905080610b535760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0811985a5b1959607a1b60448201526064016105d0565b60408051338152602081018490527f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364910160405180910390a15050565b61081483838360405180602001604052806000815250610fc3565b6000818152600360205260408120546001600160a01b03168061059f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105d0565b60006001600160a01b038216610c8d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105d0565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610cd35760405162461bcd60e51b81526004016105d090611f73565b61082360006116d9565b600080546001600160a01b03163314610d085760405162461bcd60e51b81526004016105d090611f73565b506009805460ff1916600190811790915590565b6060600280546105f890612087565b60095460ff1615610d735760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016105d0565b60085461271011610dbb5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b60448201526064016105d0565b8060051015610e245760405162461bcd60e51b815260206004820152602f60248201527f596f752063616e206e6f74206d696e74206d6f7265207468616e203520746f6b60448201526e32b739903832b91039b2b9b9b4b7b760891b60648201526084016105d0565b336000908152600a6020526040902054610e3f908290611ff9565b60051015610ea05760405162461bcd60e51b815260206004820152602860248201527f412077616c6c65742063616e206e6f74206d696e74206d6f7265207468616e206044820152673520746f6b656e7360c01b60648201526084016105d0565b610eb166f523226980800082612025565b341015610ef55760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016105d0565b336000908152600a602052604081208054839290610f14908490611ff9565b90915550600090505b81811015610a1a57610f33600880546001019055565b6000610f3e60085490565b90506000610f4e6109ab60085490565b9050600060405180606001604052806035815260200161214a6035913982604051602001610f7d929190611e95565b6040516020818303038152906040529050610f9833846113b2565b610fa283826113cc565b5050508080610fb0906120c2565b915050610f1d565b610a1a338383611729565b610fcd3383611457565b610fe95760405162461bcd60e51b81526004016105d090611fa8565b610ff5848484846117f8565b50505050565b60606110068261120d565b61106c5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016105d0565b6000828152600760205260408120805461108590612087565b80601f01602080910402602001604051908101604052809291908181526020018280546110b190612087565b80156110fe5780601f106110d3576101008083540402835291602001916110fe565b820191906000526020600020905b8154815290600101906020018083116110e157829003601f168201915b50505050509050600061111c60408051602081019091526000815290565b905080516000141561112f575092915050565b815115611161578082604051602001611149929190611e66565b60405160208183030381529060405292505050919050565b61116a8461182b565b949350505050565b6000546001600160a01b0316331461119c5760405162461bcd60e51b81526004016105d090611f73565b6001600160a01b0381166112015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d0565b61120a816116d9565b50565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061125f82610bab565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060816112bc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112e657806112d0816120c2565b91506112df9050600a83612011565b91506112c0565b60008167ffffffffffffffff81111561130f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611339576020820181803683370190505b5090505b841561116a5761134e600183612044565b915061135b600a866120dd565b611366906030611ff9565b60f81b81838151811061138957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506113ab600a86612011565b945061133d565b610a1a828260405180602001604052806000815250611903565b6113d58261120d565b6114385760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016105d0565b6000828152600760209081526040909120825161081492840190611b76565b60006114628261120d565b6114c35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105d0565b60006114ce83610bab565b9050806001600160a01b0316846001600160a01b031614806115095750836001600160a01b03166114fe8461067b565b6001600160a01b0316145b8061116a57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff1661116a565b826001600160a01b031661155082610bab565b6001600160a01b0316146115b45760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016105d0565b6001600160a01b0382166116165760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105d0565b61162160008261122a565b6001600160a01b038316600090815260046020526040812080546001929061164a908490612044565b90915550506001600160a01b0382166000908152600460205260408120805460019290611678908490611ff9565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316141561178b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105d0565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61180384848461153d565b61180f84848484611936565b610ff55760405162461bcd60e51b81526004016105d090611f21565b60606118368261120d565b61189a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105d0565b60006118b160408051602081019091526000815290565b905060008151116118d157604051806020016040528060008152506118fc565b806118db84611298565b6040516020016118ec929190611e66565b6040516020818303038152906040525b9392505050565b61190d8383611a43565b61191a6000848484611936565b6108145760405162461bcd60e51b81526004016105d090611f21565b60006001600160a01b0384163b15611a3857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061197a903390899088908890600401611ed1565b602060405180830381600087803b15801561199457600080fd5b505af19250505080156119c4575060408051601f3d908101601f191682019092526119c191810190611e06565b60015b611a1e573d8080156119f2576040519150601f19603f3d011682016040523d82523d6000602084013e6119f7565b606091505b508051611a165760405162461bcd60e51b81526004016105d090611f21565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061116a565b506001949350505050565b6001600160a01b038216611a995760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105d0565b611aa28161120d565b15611aef5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105d0565b6001600160a01b0382166000908152600460205260408120805460019290611b18908490611ff9565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b8290612087565b90600052602060002090601f016020900481019282611ba45760008555611bea565b82601f10611bbd57805160ff1916838001178555611bea565b82800160010185558215611bea579182015b82811115611bea578251825591602001919060010190611bcf565b50611bf6929150611bfa565b5090565b5b80821115611bf65760008155600101611bfb565b80356001600160a01b0381168114611c2657600080fd5b919050565b600060208284031215611c3c578081fd5b6118fc82611c0f565b60008060408385031215611c57578081fd5b611c6083611c0f565b9150611c6e60208401611c0f565b90509250929050565b600080600060608486031215611c8b578081fd5b611c9484611c0f565b9250611ca260208501611c0f565b9150604084013590509250925092565b60008060008060808587031215611cc7578081fd5b611cd085611c0f565b9350611cde60208601611c0f565b925060408501359150606085013567ffffffffffffffff80821115611d01578283fd5b818701915087601f830112611d14578283fd5b813581811115611d2657611d2661211d565b604051601f8201601f19908116603f01168101908382118183101715611d4e57611d4e61211d565b816040528281528a6020848701011115611d66578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611d99578182fd5b611da283611c0f565b915060208301358015158114611db6578182fd5b809150509250929050565b60008060408385031215611dd3578182fd5b611ddc83611c0f565b946020939093013593505050565b600060208284031215611dfb578081fd5b81356118fc81612133565b600060208284031215611e17578081fd5b81516118fc81612133565b600060208284031215611e33578081fd5b5035919050565b60008151808452611e5281602086016020860161205b565b601f01601f19169290920160200192915050565b60008351611e7881846020880161205b565b835190830190611e8c81836020880161205b565b01949350505050565b60008351611ea781846020880161205b565b602f60f81b9083019081528351611ec581600184016020880161205b565b01600101949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f0490830184611e3a565b9695505050505050565b6020815260006118fc6020830184611e3a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561200c5761200c6120f1565b500190565b60008261202057612020612107565b500490565b600081600019048311821515161561203f5761203f6120f1565b500290565b600082821015612056576120566120f1565b500390565b60005b8381101561207657818101518382015260200161205e565b83811115610ff55750506000910152565b600181811c9082168061209b57607f821691505b602082108114156120bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120d6576120d66120f1565b5060010190565b6000826120ec576120ec612107565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461120a57600080fdfe697066733a2f2f516d65677971536439614b5864466f746f7a63394b527a6d6d566648717558595735664a3668345a366d39556174a2646970667358221220141646b0c06f2e8f6781635f003c688c0e973030e7da860335d3aeaa62e4345164736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146104ca578063e985e9c5146104ea578063f0292a03146102c3578063f2fde38b1461053357600080fd5b8063a22cb46514610442578063aa382eea14610462578063b88d4fde1461048f578063bf8fbbd2146104af57600080fd5b80638456cb59116100d15780638456cb59146103e75780638da5cb5b146103fc57806395d89b411461041a578063a0712d681461042f57600080fd5b806370a082311461039d578063715018a6146103bd5780637f7fa5ff146103d257600080fd5b80631cd05f6a1161016f57806332cb6b0c1161013e57806332cb6b0c1461032d57806342842e0e146103435780635c975abb146103635780636352211e1461037d57600080fd5b80631cd05f6a146102c357806320e409b4146102d857806323b872dd146102f857806324600fc31461031857600080fd5b8063081812fc116101ab578063081812fc1461023e578063095ea7b3146102765780631249c58b1461029857806318160ddd146102a057600080fd5b806301ffc9a7146101d2578063046f7da21461020757806306fdde031461021c575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611dea565b610553565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b506101f26105a5565b34801561022857600080fd5b506102316105e9565b6040516101fe9190611f0e565b34801561024a57600080fd5b5061025e610259366004611e22565b61067b565b6040516001600160a01b0390911681526020016101fe565b34801561028257600080fd5b50610296610291366004611dc1565b610703565b005b610296610819565b3480156102ac57600080fd5b506102b5610825565b6040519081526020016101fe565b3480156102cf57600080fd5b506102b5600581565b3480156102e457600080fd5b506102966102f3366004611e22565b610835565b34801561030457600080fd5b50610296610313366004611c77565b610a1e565b34801561032457600080fd5b50610296610a4f565b34801561033957600080fd5b506102b561271081565b34801561034f57600080fd5b5061029661035e366004611c77565b610b90565b34801561036f57600080fd5b506009546101f29060ff1681565b34801561038957600080fd5b5061025e610398366004611e22565b610bab565b3480156103a957600080fd5b506102b56103b8366004611c2b565b610c22565b3480156103c957600080fd5b50610296610ca9565b3480156103de57600080fd5b506102b5606481565b3480156103f357600080fd5b506101f2610cdd565b34801561040857600080fd5b506000546001600160a01b031661025e565b34801561042657600080fd5b50610231610d1c565b61029661043d366004611e22565b610d2b565b34801561044e57600080fd5b5061029661045d366004611d87565b610fb8565b34801561046e57600080fd5b506102b561047d366004611c2b565b600a6020526000908152604090205481565b34801561049b57600080fd5b506102966104aa366004611cb2565b610fc3565b3480156104bb57600080fd5b506102b566f523226980800081565b3480156104d657600080fd5b506102316104e5366004611e22565b610ffb565b3480156104f657600080fd5b506101f2610505366004611c45565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561053f57600080fd5b5061029661054e366004611c2b565b611172565b60006001600160e01b031982166380ac58cd60e01b148061058457506001600160e01b03198216635b5e139f60e01b145b8061059f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b600080546001600160a01b031633146105d95760405162461bcd60e51b81526004016105d090611f73565b60405180910390fd5b506009805460ff19169055600090565b6060600180546105f890612087565b80601f016020809104026020016040519081016040528092919081815260200182805461062490612087565b80156106715780601f1061064657610100808354040283529160200191610671565b820191906000526020600020905b81548152906001019060200180831161065457829003601f168201915b5050505050905090565b60006106868261120d565b6106e75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105d0565b506000908152600560205260409020546001600160a01b031690565b600061070e82610bab565b9050806001600160a01b0316836001600160a01b0316141561077c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105d0565b336001600160a01b038216148061079857506107988133610505565b61080a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105d0565b610814838361122a565b505050565b6108236001610d2b565b565b600061083060085490565b905090565b6000546001600160a01b0316331461085f5760405162461bcd60e51b81526004016105d090611f73565b60095460ff16156108a75760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016105d0565b600854612710116108ef5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b60448201526064016105d0565b80606410156109525760405162461bcd60e51b815260206004820152602960248201527f596f752063616e206f6e6c79206d696e742031303020746f6b656e7320696e206044820152680dedcca40c4c2e8c6d60bb1b60648201526084016105d0565b336000908152600a602052604081208054839290610971908490611ff9565b90915550600090505b81811015610a1a57610990600880546001019055565b600061099b60085490565b905060006109b06109ab60085490565b611298565b9050600060405180606001604052806035815260200161214a60359139826040516020016109df929190611e95565b60405160208183030381529060405290506109fa33846113b2565b610a0483826113cc565b5050508080610a12906120c2565b91505061097a565b5050565b610a283382611457565b610a445760405162461bcd60e51b81526004016105d090611fa8565b61081483838361153d565b6000546001600160a01b03163314610a795760405162461bcd60e51b81526004016105d090611f73565b4780610ac75760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f2077697468647261770000000000000060448201526064016105d0565b604051600090339083908381818185875af1925050503d8060008114610b09576040519150601f19603f3d011682016040523d82523d6000602084013e610b0e565b606091505b5050905080610b535760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0811985a5b1959607a1b60448201526064016105d0565b60408051338152602081018490527f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364910160405180910390a15050565b61081483838360405180602001604052806000815250610fc3565b6000818152600360205260408120546001600160a01b03168061059f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105d0565b60006001600160a01b038216610c8d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105d0565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610cd35760405162461bcd60e51b81526004016105d090611f73565b61082360006116d9565b600080546001600160a01b03163314610d085760405162461bcd60e51b81526004016105d090611f73565b506009805460ff1916600190811790915590565b6060600280546105f890612087565b60095460ff1615610d735760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016105d0565b60085461271011610dbb5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b60448201526064016105d0565b8060051015610e245760405162461bcd60e51b815260206004820152602f60248201527f596f752063616e206e6f74206d696e74206d6f7265207468616e203520746f6b60448201526e32b739903832b91039b2b9b9b4b7b760891b60648201526084016105d0565b336000908152600a6020526040902054610e3f908290611ff9565b60051015610ea05760405162461bcd60e51b815260206004820152602860248201527f412077616c6c65742063616e206e6f74206d696e74206d6f7265207468616e206044820152673520746f6b656e7360c01b60648201526084016105d0565b610eb166f523226980800082612025565b341015610ef55760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016105d0565b336000908152600a602052604081208054839290610f14908490611ff9565b90915550600090505b81811015610a1a57610f33600880546001019055565b6000610f3e60085490565b90506000610f4e6109ab60085490565b9050600060405180606001604052806035815260200161214a6035913982604051602001610f7d929190611e95565b6040516020818303038152906040529050610f9833846113b2565b610fa283826113cc565b5050508080610fb0906120c2565b915050610f1d565b610a1a338383611729565b610fcd3383611457565b610fe95760405162461bcd60e51b81526004016105d090611fa8565b610ff5848484846117f8565b50505050565b60606110068261120d565b61106c5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016105d0565b6000828152600760205260408120805461108590612087565b80601f01602080910402602001604051908101604052809291908181526020018280546110b190612087565b80156110fe5780601f106110d3576101008083540402835291602001916110fe565b820191906000526020600020905b8154815290600101906020018083116110e157829003601f168201915b50505050509050600061111c60408051602081019091526000815290565b905080516000141561112f575092915050565b815115611161578082604051602001611149929190611e66565b60405160208183030381529060405292505050919050565b61116a8461182b565b949350505050565b6000546001600160a01b0316331461119c5760405162461bcd60e51b81526004016105d090611f73565b6001600160a01b0381166112015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d0565b61120a816116d9565b50565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061125f82610bab565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060816112bc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112e657806112d0816120c2565b91506112df9050600a83612011565b91506112c0565b60008167ffffffffffffffff81111561130f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611339576020820181803683370190505b5090505b841561116a5761134e600183612044565b915061135b600a866120dd565b611366906030611ff9565b60f81b81838151811061138957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506113ab600a86612011565b945061133d565b610a1a828260405180602001604052806000815250611903565b6113d58261120d565b6114385760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016105d0565b6000828152600760209081526040909120825161081492840190611b76565b60006114628261120d565b6114c35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105d0565b60006114ce83610bab565b9050806001600160a01b0316846001600160a01b031614806115095750836001600160a01b03166114fe8461067b565b6001600160a01b0316145b8061116a57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff1661116a565b826001600160a01b031661155082610bab565b6001600160a01b0316146115b45760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016105d0565b6001600160a01b0382166116165760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105d0565b61162160008261122a565b6001600160a01b038316600090815260046020526040812080546001929061164a908490612044565b90915550506001600160a01b0382166000908152600460205260408120805460019290611678908490611ff9565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316141561178b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105d0565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61180384848461153d565b61180f84848484611936565b610ff55760405162461bcd60e51b81526004016105d090611f21565b60606118368261120d565b61189a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105d0565b60006118b160408051602081019091526000815290565b905060008151116118d157604051806020016040528060008152506118fc565b806118db84611298565b6040516020016118ec929190611e66565b6040516020818303038152906040525b9392505050565b61190d8383611a43565b61191a6000848484611936565b6108145760405162461bcd60e51b81526004016105d090611f21565b60006001600160a01b0384163b15611a3857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061197a903390899088908890600401611ed1565b602060405180830381600087803b15801561199457600080fd5b505af19250505080156119c4575060408051601f3d908101601f191682019092526119c191810190611e06565b60015b611a1e573d8080156119f2576040519150601f19603f3d011682016040523d82523d6000602084013e6119f7565b606091505b508051611a165760405162461bcd60e51b81526004016105d090611f21565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061116a565b506001949350505050565b6001600160a01b038216611a995760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105d0565b611aa28161120d565b15611aef5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105d0565b6001600160a01b0382166000908152600460205260408120805460019290611b18908490611ff9565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b8290612087565b90600052602060002090601f016020900481019282611ba45760008555611bea565b82601f10611bbd57805160ff1916838001178555611bea565b82800160010185558215611bea579182015b82811115611bea578251825591602001919060010190611bcf565b50611bf6929150611bfa565b5090565b5b80821115611bf65760008155600101611bfb565b80356001600160a01b0381168114611c2657600080fd5b919050565b600060208284031215611c3c578081fd5b6118fc82611c0f565b60008060408385031215611c57578081fd5b611c6083611c0f565b9150611c6e60208401611c0f565b90509250929050565b600080600060608486031215611c8b578081fd5b611c9484611c0f565b9250611ca260208501611c0f565b9150604084013590509250925092565b60008060008060808587031215611cc7578081fd5b611cd085611c0f565b9350611cde60208601611c0f565b925060408501359150606085013567ffffffffffffffff80821115611d01578283fd5b818701915087601f830112611d14578283fd5b813581811115611d2657611d2661211d565b604051601f8201601f19908116603f01168101908382118183101715611d4e57611d4e61211d565b816040528281528a6020848701011115611d66578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611d99578182fd5b611da283611c0f565b915060208301358015158114611db6578182fd5b809150509250929050565b60008060408385031215611dd3578182fd5b611ddc83611c0f565b946020939093013593505050565b600060208284031215611dfb578081fd5b81356118fc81612133565b600060208284031215611e17578081fd5b81516118fc81612133565b600060208284031215611e33578081fd5b5035919050565b60008151808452611e5281602086016020860161205b565b601f01601f19169290920160200192915050565b60008351611e7881846020880161205b565b835190830190611e8c81836020880161205b565b01949350505050565b60008351611ea781846020880161205b565b602f60f81b9083019081528351611ec581600184016020880161205b565b01600101949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f0490830184611e3a565b9695505050505050565b6020815260006118fc6020830184611e3a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561200c5761200c6120f1565b500190565b60008261202057612020612107565b500490565b600081600019048311821515161561203f5761203f6120f1565b500290565b600082821015612056576120566120f1565b500390565b60005b8381101561207657818101518382015260200161205e565b83811115610ff55750506000910152565b600181811c9082168061209b57607f821691505b602082108114156120bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120d6576120d66120f1565b5060010190565b6000826120ec576120ec612107565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461120a57600080fdfe697066733a2f2f516d65677971536439614b5864466f746f7a63394b527a6d6d566648717558595735664a3668345a366d39556174a2646970667358221220141646b0c06f2e8f6781635f003c688c0e973030e7da860335d3aeaa62e4345164736f6c63430008040033

Deployed Bytecode Sourcemap

42223:5166:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25574:305;;;;;;;;;;-1:-1:-1;25574:305:0;;;;;:::i;:::-;;:::i;:::-;;;6270:14:1;;6263:22;6245:41;;6233:2;6218:18;25574:305:0;;;;;;;;45697:109;;;;;;;;;;;;;:::i;26519:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28078:221::-;;;;;;;;;;-1:-1:-1;28078:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5289:32:1;;;5271:51;;5259:2;5244:18;28078:221:0;5226:102:1;27601:411:0;;;;;;;;;;-1:-1:-1;27601:411:0;;;;;:::i;:::-;;:::i;:::-;;43751:59;;;:::i;45814:98::-;;;;;;;;;;;;;:::i;:::-;;;16854:25:1;;;16842:2;16827:18;45814:98:0;16809:76:1;42951:48:0;;;;;;;;;;;;42998:1;42951:48;;46437:949;;;;;;;;;;-1:-1:-1;46437:949:0;;;;;:::i;:::-;;:::i;28828:339::-;;;;;;;;;;-1:-1:-1;28828:339:0;;;;;:::i;:::-;;:::i;45920:322::-;;;;;;;;;;;;;:::i;42534:42::-;;;;;;;;;;;;42571:5;42534:42;;29238:185;;;;;;;;;;-1:-1:-1;29238:185:0;;;;;:::i;:::-;;:::i;43091:26::-;;;;;;;;;;-1:-1:-1;43091:26:0;;;;;;;;26213:239;;;;;;;;;;-1:-1:-1;26213:239:0;;;;;:::i;:::-;;:::i;25943:208::-;;;;;;;;;;-1:-1:-1;25943:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;42775:44::-;;;;;;;;;;;;42816:3;42775:44;;45582:107;;;;;;;;;;;;;:::i;5544:87::-;;;;;;;;;;-1:-1:-1;5590:7:0;5617:6;-1:-1:-1;;;;;5617:6:0;5544:87;;26688:104;;;;;;;;;;;;;:::i;44324:1250::-;;;;;;:::i;:::-;;:::i;28371:155::-;;;;;;;;;;-1:-1:-1;28371:155:0;;;;;:::i;:::-;;:::i;43481:55::-;;;;;;;;;;-1:-1:-1;43481:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;29494:328;;;;;;;;;;-1:-1:-1;29494:328:0;;;;;:::i;:::-;;:::i;42422:42::-;;;;;;;;;;;;42453:11;42422:42;;39199:679;;;;;;;;;;-1:-1:-1;39199:679:0;;;;;:::i;:::-;;:::i;28597:164::-;;;;;;;;;;-1:-1:-1;28597:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28718:25:0;;;28694:4;28718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28597:164;6453:201;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;25574:305::-;25676:4;-1:-1:-1;;;;;;25713:40:0;;-1:-1:-1;;;25713:40:0;;:105;;-1:-1:-1;;;;;;;25770:48:0;;-1:-1:-1;;;25770:48:0;25713:105;:158;;;-1:-1:-1;;;;;;;;;;18437:40:0;;;25835:36;25693:178;25574:305;-1:-1:-1;;25574:305:0:o;45697:109::-;45743:4;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;45760:6:0::1;:14:::0;;-1:-1:-1;;45760:14:0::1;::::0;;45769:5:::1;45697:109:::0;:::o;26519:100::-;26573:13;26606:5;26599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26519:100;:::o;28078:221::-;28154:7;28182:16;28190:7;28182;:16::i;:::-;28174:73;;;;-1:-1:-1;;;28174:73:0;;13450:2:1;28174:73:0;;;13432:21:1;13489:2;13469:18;;;13462:30;13528:34;13508:18;;;13501:62;-1:-1:-1;;;13579:18:1;;;13572:42;13631:19;;28174:73:0;13422:234:1;28174:73:0;-1:-1:-1;28267:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28267:24:0;;28078:221::o;27601:411::-;27682:13;27698:23;27713:7;27698:14;:23::i;:::-;27682:39;;27746:5;-1:-1:-1;;;;;27740:11:0;:2;-1:-1:-1;;;;;27740:11:0;;;27732:57;;;;-1:-1:-1;;;27732:57:0;;15396:2:1;27732:57:0;;;15378:21:1;15435:2;15415:18;;;15408:30;15474:34;15454:18;;;15447:62;-1:-1:-1;;;15525:18:1;;;15518:31;15566:19;;27732:57:0;15368:223:1;27732:57:0;4348:10;-1:-1:-1;;;;;27824:21:0;;;;:62;;-1:-1:-1;27849:37:0;27866:5;4348:10;28597:164;:::i;27849:37::-;27802:168;;;;-1:-1:-1;;;27802:168:0;;10656:2:1;27802:168:0;;;10638:21:1;10695:2;10675:18;;;10668:30;10734:34;10714:18;;;10707:62;10805:26;10785:18;;;10778:54;10849:19;;27802:168:0;10628:246:1;27802:168:0;27983:21;27992:2;27996:7;27983:8;:21::i;:::-;27601:411;;;:::o;43751:59::-;43795:7;43800:1;43795:4;:7::i;:::-;43751:59::o;45814:98::-;45858:7;45885:19;:9;964:14;;872:114;45885:19;45878:26;;45814:98;:::o;46437:949::-;5590:7;5617:6;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;46519:6:::1;::::0;::::1;;:15;46511:46;;;::::0;-1:-1:-1;;;46511:46:0;;16563:2:1;46511:46:0::1;::::0;::::1;16545:21:1::0;16602:2;16582:18;;;16575:30;-1:-1:-1;;;16621:18:1;;;16614:48;16679:18;;46511:46:0::1;16535:168:1::0;46511:46:0::1;46589:9;964:14:::0;42571:5:::1;46576:32;46568:63;;;::::0;-1:-1:-1;;;46568:63:0;;16216:2:1;46568:63:0::1;::::0;::::1;16198:21:1::0;16255:2;16235:18;;;16228:30;-1:-1:-1;;;16274:18:1;;;16267:48;16332:18;;46568:63:0::1;16188:168:1::0;46568:63:0::1;46682:15;42816:3;46664:33;;46642:124;;;::::0;-1:-1:-1;;;46642:124:0;;14570:2:1;46642:124:0::1;::::0;::::1;14552:21:1::0;14609:2;14589:18;;;14582:30;14648:34;14628:18;;;14621:62;-1:-1:-1;;;14699:18:1;;;14692:39;14748:19;;46642:124:0::1;14542:231:1::0;46642:124:0::1;46847:10;46826:32;::::0;;;:20:::1;:32;::::0;;;;:51;;46862:15;;46826:32;:51:::1;::::0;46862:15;;46826:51:::1;:::i;:::-;::::0;;;-1:-1:-1;46893:9:0::1;::::0;-1:-1:-1;46888:491:0::1;46912:15;46908:1;:19;46888:491;;;46949:21;:9;1083:19:::0;;1101:1;1083:19;;;994:127;46949:21:::1;47012:15;47030:19;:9;964:14:::0;;872:114;47030:19:::1;47012:37;;47145:16;47164:37;47181:19;:9;964:14:::0;;872:114;47181:19:::1;47164:16;:37::i;:::-;47145:56;;47216:18;47261:8;;;;;;;;;;;;;;;;;47276:2;47244:35;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47216:64;;47295:30;47305:10;47317:7;47295:9;:30::i;:::-;47340:27;47353:7;47362:4;47340:12;:27::i;:::-;46888:491;;;46929:3;;;;;:::i;:::-;;;;46888:491;;;;46437:949:::0;:::o;28828:339::-;29023:41;4348:10;29056:7;29023:18;:41::i;:::-;29015:103;;;;-1:-1:-1;;;29015:103:0;;;;;;;:::i;:::-;29131:28;29141:4;29147:2;29151:7;29131:9;:28::i;45920:322::-;5590:7;5617:6;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;45993:21:::1;46033:11:::0;46025:49:::1;;;::::0;-1:-1:-1;;;46025:49:0;;12678:2:1;46025:49:0::1;::::0;::::1;12660:21:1::0;12717:2;12697:18;;;12690:30;12756:27;12736:18;;;12729:55;12801:18;;46025:49:0::1;12650:175:1::0;46025:49:0::1;46104:37;::::0;46086:12:::1;::::0;46105:10:::1;::::0;46129:7;;46086:12;46104:37;46086:12;46104:37;46129:7;46105:10;46104:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46085:56;;;46160:7;46152:37;;;::::0;-1:-1:-1;;;46152:37:0;;13863:2:1;46152:37:0::1;::::0;::::1;13845:21:1::0;13902:2;13882:18;;;13875:30;-1:-1:-1;;;13921:18:1;;;13914:47;13978:18;;46152:37:0::1;13835:167:1::0;46152:37:0::1;46205:29;::::0;;46214:10:::1;6000:51:1::0;;6082:2;6067:18;;6060:34;;;46205:29:0::1;::::0;5973:18:1;46205:29:0::1;;;;;;;5835:1;;45920:322::o:0;29238:185::-;29376:39;29393:4;29399:2;29403:7;29376:39;;;;;;;;;;;;:16;:39::i;26213:239::-;26285:7;26321:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26321:16:0;26356:19;26348:73;;;;-1:-1:-1;;;26348:73:0;;11492:2:1;26348:73:0;;;11474:21:1;11531:2;11511:18;;;11504:30;11570:34;11550:18;;;11543:62;-1:-1:-1;;;11621:18:1;;;11614:39;11670:19;;26348:73:0;11464:231:1;25943:208:0;26015:7;-1:-1:-1;;;;;26043:19:0;;26035:74;;;;-1:-1:-1;;;26035:74:0;;11081:2:1;26035:74:0;;;11063:21:1;11120:2;11100:18;;;11093:30;11159:34;11139:18;;;11132:62;-1:-1:-1;;;11210:18:1;;;11203:40;11260:19;;26035:74:0;11053:232:1;26035:74:0;-1:-1:-1;;;;;;26127:16:0;;;;;:9;:16;;;;;;;25943:208::o;6195:103::-;5590:7;5617:6;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;45582:107::-:0;45627:4;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;45644:6:0::1;:13:::0;;-1:-1:-1;;45644:13:0::1;45653:4;45644:13:::0;;::::1;::::0;;;45582:107;:::o;26688:104::-;26744:13;26777:7;26770:14;;;;;:::i;44324:1250::-;44397:6;;;;:15;44389:46;;;;-1:-1:-1;;;44389:46:0;;16563:2:1;44389:46:0;;;16545:21:1;16602:2;16582:18;;;16575:30;-1:-1:-1;;;16621:18:1;;;16614:48;16679:18;;44389:46:0;16535:168:1;44389:46:0;44467:9;964:14;42571:5;44454:32;44446:63;;;;-1:-1:-1;;;44446:63:0;;16216:2:1;44446:63:0;;;16198:21:1;16255:2;16235:18;;;16228:30;-1:-1:-1;;;16274:18:1;;;16267:48;16332:18;;44446:63:0;16188:168:1;44446:63:0;44566:15;42998:1;44542:39;;44520:136;;;;-1:-1:-1;;;44520:136:0;;6723:2:1;44520:136:0;;;6705:21:1;6762:2;6742:18;;;6735:30;6801:34;6781:18;;;6774:62;-1:-1:-1;;;6852:18:1;;;6845:45;6907:19;;44520:136:0;6695:237:1;44520:136:0;44723:10;44702:32;;;;:20;:32;;;;;;:50;;44737:15;;44702:50;:::i;:::-;42686:1;44689:64;;44667:154;;;;-1:-1:-1;;;44667:154:0;;8728:2:1;44667:154:0;;;8710:21:1;8767:2;8747:18;;;8740:30;8806:34;8786:18;;;8779:62;-1:-1:-1;;;8857:18:1;;;8850:38;8905:19;;44667:154:0;8700:230:1;44667:154:0;44908:22;42453:11;44908:15;:22;:::i;:::-;44894:9;:37;;44886:68;;;;-1:-1:-1;;;44886:68:0;;10309:2:1;44886:68:0;;;10291:21:1;10348:2;10328:18;;;10321:30;-1:-1:-1;;;10367:18:1;;;10360:48;10425:18;;44886:68:0;10281:168:1;44886:68:0;45035:10;45014:32;;;;:20;:32;;;;;:51;;45050:15;;45014:32;:51;;45050:15;;45014:51;:::i;:::-;;;;-1:-1:-1;45081:9:0;;-1:-1:-1;45076:491:0;45100:15;45096:1;:19;45076:491;;;45137:21;:9;1083:19;;1101:1;1083:19;;;994:127;45137:21;45200:15;45218:19;:9;964:14;;872:114;45218:19;45200:37;;45333:16;45352:37;45369:19;:9;964:14;;872:114;45352:37;45333:56;;45404:18;45449:8;;;;;;;;;;;;;;;;;45464:2;45432:35;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45404:64;;45483:30;45493:10;45505:7;45483:9;:30::i;:::-;45528:27;45541:7;45550:4;45528:12;:27::i;:::-;45076:491;;;45117:3;;;;;:::i;:::-;;;;45076:491;;28371:155;28466:52;4348:10;28499:8;28509;28466:18;:52::i;29494:328::-;29669:41;4348:10;29702:7;29669:18;:41::i;:::-;29661:103;;;;-1:-1:-1;;;29661:103:0;;;;;;;:::i;:::-;29775:39;29789:4;29795:2;29799:7;29808:5;29775:13;:39::i;:::-;29494:328;;;;:::o;39199:679::-;39272:13;39306:16;39314:7;39306;:16::i;:::-;39298:78;;;;-1:-1:-1;;;39298:78:0;;13032:2:1;39298:78:0;;;13014:21:1;13071:2;13051:18;;;13044:30;13110:34;13090:18;;;13083:62;-1:-1:-1;;;13161:18:1;;;13154:47;13218:19;;39298:78:0;13004:239:1;39298:78:0;39389:23;39415:19;;;:10;:19;;;;;39389:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39445:18;39466:10;27522:9;;;;;;;;;-1:-1:-1;27522:9:0;;;27445:94;39466:10;39445:31;;39558:4;39552:18;39574:1;39552:23;39548:72;;;-1:-1:-1;39599:9:0;39199:679;-1:-1:-1;;39199:679:0:o;39548:72::-;39724:23;;:27;39720:108;;39799:4;39805:9;39782:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39768:48;;;;39199:679;;;:::o;39720:108::-;39847:23;39862:7;39847:14;:23::i;:::-;39840:30;39199:679;-1:-1:-1;;;;39199:679:0:o;6453:201::-;5590:7;5617:6;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;7558:2:1;6534:73:0::1;::::0;::::1;7540:21:1::0;7597:2;7577:18;;;7570:30;7636:34;7616:18;;;7609:62;-1:-1:-1;;;7687:18:1;;;7680:36;7733:19;;6534:73:0::1;7530:228:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;31332:127::-;31397:4;31421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31421:16:0;:30;;;31332:127::o;35478:174::-;35553:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35553:29:0;-1:-1:-1;;;;;35553:29:0;;;;;;;;:24;;35607:23;35553:24;35607:14;:23::i;:::-;-1:-1:-1;;;;;35598:46:0;;;;;;;;;;;35478:174;;:::o;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;-1:-1:-1;;;2332:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;-1:-1:-1;;;2420:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;32316:110;32392:26;32402:2;32406:7;32392:26;;;;;;;;;;;;:9;:26::i;40034:217::-;40134:16;40142:7;40134;:16::i;:::-;40126:75;;;;-1:-1:-1;;;40126:75:0;;11902:2:1;40126:75:0;;;11884:21:1;11941:2;11921:18;;;11914:30;11980:34;11960:18;;;11953:62;-1:-1:-1;;;12031:18:1;;;12024:44;12085:19;;40126:75:0;11874:236:1;40126:75:0;40212:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;31626:348::-;31719:4;31744:16;31752:7;31744;:16::i;:::-;31736:73;;;;-1:-1:-1;;;31736:73:0;;9896:2:1;31736:73:0;;;9878:21:1;9935:2;9915:18;;;9908:30;9974:34;9954:18;;;9947:62;-1:-1:-1;;;10025:18:1;;;10018:42;10077:19;;31736:73:0;9868:234:1;31736:73:0;31820:13;31836:23;31851:7;31836:14;:23::i;:::-;31820:39;;31889:5;-1:-1:-1;;;;;31878:16:0;:7;-1:-1:-1;;;;;31878:16:0;;:51;;;;31922:7;-1:-1:-1;;;;;31898:31:0;:20;31910:7;31898:11;:20::i;:::-;-1:-1:-1;;;;;31898:31:0;;31878:51;:87;;;-1:-1:-1;;;;;;28718:25:0;;;28694:4;28718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31933:32;28597:164;34735:625;34894:4;-1:-1:-1;;;;;34867:31:0;:23;34882:7;34867:14;:23::i;:::-;-1:-1:-1;;;;;34867:31:0;;34859:81;;;;-1:-1:-1;;;34859:81:0;;7965:2:1;34859:81:0;;;7947:21:1;8004:2;7984:18;;;7977:30;8043:34;8023:18;;;8016:62;-1:-1:-1;;;8094:18:1;;;8087:35;8139:19;;34859:81:0;7937:227:1;34859:81:0;-1:-1:-1;;;;;34959:16:0;;34951:65;;;;-1:-1:-1;;;34951:65:0;;9137:2:1;34951:65:0;;;9119:21:1;9176:2;9156:18;;;9149:30;9215:34;9195:18;;;9188:62;-1:-1:-1;;;9266:18:1;;;9259:34;9310:19;;34951:65:0;9109:226:1;34951:65:0;35133:29;35150:1;35154:7;35133:8;:29::i;:::-;-1:-1:-1;;;;;35175:15:0;;;;;;:9;:15;;;;;:20;;35194:1;;35175:15;:20;;35194:1;;35175:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35206:13:0;;;;;;:9;:13;;;;;:18;;35223:1;;35206:13;:18;;35223:1;;35206:18;:::i;:::-;;;;-1:-1:-1;;35235:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35235:21:0;-1:-1:-1;;;;;35235:21:0;;;;;;;;;35274:27;;35235:16;;35274:27;;;;;;;27601:411;;;:::o;6814:191::-;6888:16;6907:6;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;6957:40;;6907:6;;;;;;;6957:40;;6888:16;6957:40;6814:191;;:::o;35794:315::-;35949:8;-1:-1:-1;;;;;35940:17:0;:5;-1:-1:-1;;;;;35940:17:0;;;35932:55;;;;-1:-1:-1;;;35932:55:0;;9542:2:1;35932:55:0;;;9524:21:1;9581:2;9561:18;;;9554:30;9620:27;9600:18;;;9593:55;9665:18;;35932:55:0;9514:175:1;35932:55:0;-1:-1:-1;;;;;35998:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35998:46:0;;;;;;;;;;36060:41;;6245::1;;;36060::0;;6218:18:1;36060:41:0;;;;;;;35794:315;;;:::o;30704:::-;30861:28;30871:4;30877:2;30881:7;30861:9;:28::i;:::-;30908:48;30931:4;30937:2;30941:7;30950:5;30908:22;:48::i;:::-;30900:111;;;;-1:-1:-1;;;30900:111:0;;;;;;;:::i;26863:334::-;26936:13;26970:16;26978:7;26970;:16::i;:::-;26962:76;;;;-1:-1:-1;;;26962:76:0;;14980:2:1;26962:76:0;;;14962:21:1;15019:2;14999:18;;;14992:30;15058:34;15038:18;;;15031:62;-1:-1:-1;;;15109:18:1;;;15102:45;15164:19;;26962:76:0;14952:237:1;26962:76:0;27051:21;27075:10;27522:9;;;;;;;;;-1:-1:-1;27522:9:0;;;27445:94;27075:10;27051:34;;27127:1;27109:7;27103:21;:25;:86;;;;;;;;;;;;;;;;;27155:7;27164:18;:7;:16;:18::i;:::-;27138:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27103:86;27096:93;26863:334;-1:-1:-1;;;26863:334:0:o;32653:321::-;32783:18;32789:2;32793:7;32783:5;:18::i;:::-;32834:54;32865:1;32869:2;32873:7;32882:5;32834:22;:54::i;:::-;32812:154;;;;-1:-1:-1;;;32812:154:0;;;;;;;:::i;36674:799::-;36829:4;-1:-1:-1;;;;;36850:13:0;;8540:19;:23;36846:620;;36886:72;;-1:-1:-1;;;36886:72:0;;-1:-1:-1;;;;;36886:36:0;;;;;:72;;4348:10;;36937:4;;36943:7;;36952:5;;36886:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36886:72:0;;;;;;;;-1:-1:-1;;36886:72:0;;;;;;;;;;;;:::i;:::-;;;36882:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37128:13:0;;37124:272;;37171:60;;-1:-1:-1;;;37171:60:0;;;;;;;:::i;37124:272::-;37346:6;37340:13;37331:6;37327:2;37323:15;37316:38;36882:529;-1:-1:-1;;;;;;37009:51:0;-1:-1:-1;;;37009:51:0;;-1:-1:-1;37002:58:0;;36846:620;-1:-1:-1;37450:4:0;36674:799;;;;;;:::o;33310:439::-;-1:-1:-1;;;;;33390:16:0;;33382:61;;;;-1:-1:-1;;;33382:61:0;;12317:2:1;33382:61:0;;;12299:21:1;;;12336:18;;;12329:30;12395:34;12375:18;;;12368:62;12447:18;;33382:61:0;12289:182:1;33382:61:0;33463:16;33471:7;33463;:16::i;:::-;33462:17;33454:58;;;;-1:-1:-1;;;33454:58:0;;8371:2:1;33454:58:0;;;8353:21:1;8410:2;8390:18;;;8383:30;8449;8429:18;;;8422:58;8497:18;;33454:58:0;8343:178:1;33454:58:0;-1:-1:-1;;;;;33583:13:0;;;;;;:9;:13;;;;;:18;;33600:1;;33583:13;:18;;33600:1;;33583:18;:::i;:::-;;;;-1:-1:-1;;33612:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33612:21:0;-1:-1:-1;;;;;33612:21:0;;;;;;;;33651:33;;33612:16;;;33651:33;;33612:16;;33651:33;46888:491:::1;46437:949:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:1183::-;1106:6;1114;1122;1130;1183:3;1171:9;1162:7;1158:23;1154:33;1151:2;;;1205:6;1197;1190:22;1151:2;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1421:2;1410:9;1406:18;1393:32;1444:18;1485:2;1477:6;1474:14;1471:2;;;1506:6;1498;1491:22;1471:2;1549:6;1538:9;1534:22;1524:32;;1594:7;1587:4;1583:2;1579:13;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1662;1649:16;1684:2;1680;1677:10;1674:2;;;1690:18;;:::i;:::-;1765:2;1759:9;1733:2;1819:13;;-1:-1:-1;;1815:22:1;;;1839:2;1811:31;1807:40;1795:53;;;1863:18;;;1883:22;;;1860:46;1857:2;;;1909:18;;:::i;:::-;1949:10;1945:2;1938:22;1984:2;1976:6;1969:18;2024:7;2019:2;2014;2010;2006:11;2002:20;1999:33;1996:2;;;2050:6;2042;2035:22;1996:2;2111;2106;2102;2098:11;2093:2;2085:6;2081:15;2068:46;2134:15;;;2151:2;2130:24;2123:40;;;;1141:1053;;;;-1:-1:-1;1141:1053:1;;-1:-1:-1;;;;1141:1053:1:o;2199:367::-;2264:6;2272;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2346:6;2338;2331:22;2293:2;2374:29;2393:9;2374:29;:::i;:::-;2364:39;;2453:2;2442:9;2438:18;2425:32;2500:5;2493:13;2486:21;2479:5;2476:32;2466:2;;2527:6;2519;2512:22;2466:2;2555:5;2545:15;;;2283:283;;;;;:::o;2571:264::-;2639:6;2647;2700:2;2688:9;2679:7;2675:23;2671:32;2668:2;;;2721:6;2713;2706:22;2668:2;2749:29;2768:9;2749:29;:::i;:::-;2739:39;2825:2;2810:18;;;;2797:32;;-1:-1:-1;;;2658:177:1:o;2840:255::-;2898:6;2951:2;2939:9;2930:7;2926:23;2922:32;2919:2;;;2972:6;2964;2957:22;2919:2;3016:9;3003:23;3035:30;3059:5;3035:30;:::i;3100:259::-;3169:6;3222:2;3210:9;3201:7;3197:23;3193:32;3190:2;;;3243:6;3235;3228:22;3190:2;3280:9;3274:16;3299:30;3323:5;3299:30;:::i;3364:190::-;3423:6;3476:2;3464:9;3455:7;3451:23;3447:32;3444:2;;;3497:6;3489;3482:22;3444:2;-1:-1:-1;3525:23:1;;3434:120;-1:-1:-1;3434:120:1:o;3559:257::-;3600:3;3638:5;3632:12;3665:6;3660:3;3653:19;3681:63;3737:6;3730:4;3725:3;3721:14;3714:4;3707:5;3703:16;3681:63;:::i;:::-;3798:2;3777:15;-1:-1:-1;;3773:29:1;3764:39;;;;3805:4;3760:50;;3608:208;-1:-1:-1;;3608:208:1:o;3821:470::-;4000:3;4038:6;4032:13;4054:53;4100:6;4095:3;4088:4;4080:6;4076:17;4054:53;:::i;:::-;4170:13;;4129:16;;;;4192:57;4170:13;4129:16;4226:4;4214:17;;4192:57;:::i;:::-;4265:20;;4008:283;-1:-1:-1;;;;4008:283:1:o;4296:614::-;4576:3;4614:6;4608:13;4630:53;4676:6;4671:3;4664:4;4656:6;4652:17;4630:53;:::i;:::-;-1:-1:-1;;;4705:16:1;;;4730:18;;;4773:13;;4795:65;4773:13;4847:1;4836:13;;4829:4;4817:17;;4795:65;:::i;:::-;4880:20;4902:1;4876:28;;4584:326;-1:-1:-1;;;;4584:326:1:o;5333:488::-;-1:-1:-1;;;;;5602:15:1;;;5584:34;;5654:15;;5649:2;5634:18;;5627:43;5701:2;5686:18;;5679:34;;;5749:3;5744:2;5729:18;;5722:31;;;5527:4;;5770:45;;5795:19;;5787:6;5770:45;:::i;:::-;5762:53;5536:285;-1:-1:-1;;;;;;5536:285:1:o;6297:219::-;6446:2;6435:9;6428:21;6409:4;6466:44;6506:2;6495:9;6491:18;6483:6;6466:44;:::i;6937:414::-;7139:2;7121:21;;;7178:2;7158:18;;;7151:30;7217:34;7212:2;7197:18;;7190:62;-1:-1:-1;;;7283:2:1;7268:18;;7261:48;7341:3;7326:19;;7111:240::o;14007:356::-;14209:2;14191:21;;;14228:18;;;14221:30;14287:34;14282:2;14267:18;;14260:62;14354:2;14339:18;;14181:182::o;15596:413::-;15798:2;15780:21;;;15837:2;15817:18;;;15810:30;15876:34;15871:2;15856:18;;15849:62;-1:-1:-1;;;15942:2:1;15927:18;;15920:47;15999:3;15984:19;;15770:239::o;16890:128::-;16930:3;16961:1;16957:6;16954:1;16951:13;16948:2;;;16967:18;;:::i;:::-;-1:-1:-1;17003:9:1;;16938:80::o;17023:120::-;17063:1;17089;17079:2;;17094:18;;:::i;:::-;-1:-1:-1;17128:9:1;;17069:74::o;17148:168::-;17188:7;17254:1;17250;17246:6;17242:14;17239:1;17236:21;17231:1;17224:9;17217:17;17213:45;17210:2;;;17261:18;;:::i;:::-;-1:-1:-1;17301:9:1;;17200:116::o;17321:125::-;17361:4;17389:1;17386;17383:8;17380:2;;;17394:18;;:::i;:::-;-1:-1:-1;17431:9:1;;17370:76::o;17451:258::-;17523:1;17533:113;17547:6;17544:1;17541:13;17533:113;;;17623:11;;;17617:18;17604:11;;;17597:39;17569:2;17562:10;17533:113;;;17664:6;17661:1;17658:13;17655:2;;;-1:-1:-1;;17699:1:1;17681:16;;17674:27;17504:205::o;17714:380::-;17793:1;17789:12;;;;17836;;;17857:2;;17911:4;17903:6;17899:17;17889:27;;17857:2;17964;17956:6;17953:14;17933:18;17930:38;17927:2;;;18010:10;18005:3;18001:20;17998:1;17991:31;18045:4;18042:1;18035:15;18073:4;18070:1;18063:15;17927:2;;17769:325;;;:::o;18099:135::-;18138:3;-1:-1:-1;;18159:17:1;;18156:2;;;18179:18;;:::i;:::-;-1:-1:-1;18226:1:1;18215:13;;18146:88::o;18239:112::-;18271:1;18297;18287:2;;18302:18;;:::i;:::-;-1:-1:-1;18336:9:1;;18277:74::o;18356:127::-;18417:10;18412:3;18408:20;18405:1;18398:31;18448:4;18445:1;18438:15;18472:4;18469:1;18462:15;18488:127;18549:10;18544:3;18540:20;18537:1;18530:31;18580:4;18577:1;18570:15;18604:4;18601:1;18594:15;18620:127;18681:10;18676:3;18672:20;18669:1;18662:31;18712:4;18709:1;18702:15;18736:4;18733:1;18726:15;18752:131;-1:-1:-1;;;;;;18826:32:1;;18816:43;;18806:2;;18873:1;18870;18863:12

Swarm Source

ipfs://141646b0c06f2e8f6781635f003c688c0e973030e7da860335d3aeaa62e43451
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.