ERC-721
Overview
Max Total Supply
59 S4F
Holders
13
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
S4FE
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-29 */ // SPDX-License-Identifier: MIT // File: contracts/IERC2981.sol pragma solidity >=0.7.0 <0.9.0; /// /// @dev Interface for the NFT Royalty Standard /// interface IERC2981 { /// @notice Called with the sale price to determine how much royalty // is owed and to whom. /// @param _tokenId - the NFT asset queried for royalty information /// @param _salePrice - the sale price of the NFT asset specified by _tokenId /// @return receiver - address of who should be sent the royalty payment /// @return royaltyAmount - the royalty payment amount for _salePrice function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver, uint256 royaltyAmount); } // 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/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // 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/security/Pausable.sol // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // 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: contracts/ERC2981.sol pragma solidity >=0.7.0 <0.9.0; /// @dev This is a contract used to add ERC2981 support to ERC721 and 1155 contract ERC2981 is ERC165, IERC2981 { struct RoyaltyInfo { address recipient; uint24 amount; } RoyaltyInfo private _royalties; /// @dev Sets token royalties /// @param recipient recipient of the royalties /// @param value percentage (using 2 decimals - 10000 = 100, 0 = 0) function _setRoyalties(address recipient, uint256 value) internal { require(value <= 10000, "ERC2981Royalties: Too high"); _royalties = RoyaltyInfo(recipient, uint24(value)); } /// @inheritdoc IERC2981 function royaltyInfo(uint256, uint256 value) external view override returns (address receiver, uint256 royaltyAmount) { RoyaltyInfo memory royalties = _royalties; receiver = royalties.recipient; royaltyAmount = (value * royalties.amount) / 10000; } /// @inheritdoc ERC165 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(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: contracts/Contract.sol // @S4FE NFT COLLECTION // @Omark dev HTTPS://WWW.S4FE.ORG pragma solidity >=0.7.0 <0.9.0; contract S4FE is ERC721,ERC2981,Ownable,Pausable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public cost = 0.15 ether; uint256 public maxSupply = 10000; uint256 public maxMintAmountPerTx = 10; // how many NFTs can be Minted in one transaction uint256 public mintNumberlimit = 1000; // where the Stage mint limit uint256 public minMintAmount = 1; // the minumum NFTs can be minted address public royaltyRecipient = 0xFd4435A700E63CCa6F975EEC1919c95ECD164630; uint256 public royaltiesPercentage = 1000; // 10% royalties address public batchAddress; bytes32 public MerkleRoot = 0xf57971f28fba0312e2a19ab59b1a3a0d4f0144abbdf488047e89a8a1f2411466; bool public MerkleTree = true; bool public publicSale = false; // you to let ppl minting the NFT or Not bool public preSale = false; bool public revealed = false; constructor() ERC721("S4FE NFT", "S4F") { setHiddenMetadataUri("ipfs://QmcY3HNAckbe2VF6ub4je2fMSUYGB8KoZRon1TqG5KBM47/hidden.json"); _setRoyalties(royaltyRecipient, royaltiesPercentage); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); require(supply.current() + _mintAmount <= mintNumberlimit, "Smart Contract reached the max mint"); _; } function totalSupply() public view returns (uint256) { return supply.current(); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(publicSale, "The contract is paused!"); // i should check this if (msg.sender != owner()) { require(msg.value >= cost * _mintAmount, "insufficient funds"); } _mintLoop(msg.sender, _mintAmount); } function mintBatch(uint256 _mintAmount,address _receiver) external { require(msg.sender == batchAddress,"only for batch address"); _mintLoop(_receiver, _mintAmount); } function buyPresale(bytes32[] calldata signature,uint256 _mintAmount) external payable mintCompliance(_mintAmount){ require(preSale ,"Presale is not active"); require(_mintAmount >= minMintAmount , "Min spend per person is low"); require(msg.value >= cost * _mintAmount, "insufficient funds"); if(MerkleTree == true){ bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(signature,MerkleRoot,leaf),"Invalid signature"); } _mintLoop(msg.sender, _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _mintLoop(_receiver, _mintAmount); } //Pausable Fonctions function approve(address to, uint256 tokenId) public virtual override whenNotPaused { 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); } function setApprovalForAll(address operator, bool approved) public virtual override whenNotPaused { _setApprovalForAll(_msgSender(), operator, approved); } function transferFrom( address from, address to, uint256 tokenId ) public virtual override whenNotPaused{ //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner not approved"); _transfer(from, to, tokenId); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } /// @inheritdoc ERC165 function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } //pause Or unpause Selling function setSellingPaused() public onlyOwner { _pause(); } function setSellingUnpaused() public onlyOwner { _unpause(); } // Control Variable function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setRoyaltyRecipient(address _NewAdress) public onlyOwner{ royaltyRecipient = _NewAdress; } function setRoyaltiesPercentage(uint256 _percentage) public onlyOwner{ royaltiesPercentage = _percentage; } function setMintNumberLimit(uint256 _limit) public onlyOwner { mintNumberlimit = _limit; } function setMinMintAmount(uint256 _limit) public onlyOwner { minMintAmount = _limit; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { MerkleRoot = _merkleRoot; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPublicSale(bool _state) public onlyOwner { publicSale = _state; } function setPreSale(bool _state) public onlyOwner { preSale = _state; } function setMerkleTree(bool _state) public onlyOwner{ MerkleTree = _state; } function setNextStage(uint256 _cost,uint256 _stageNumberlimit,uint256 _minMintAmount) public onlyOwner { cost = _cost; mintNumberlimit = _stageNumberlimit; minMintAmount = _minMintAmount; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function _mintLoop(address _receiver, uint256 _mintAmount) internal { for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); } } // batch adress contract function setBatchAddress(address _adress) public onlyOwner { batchAddress = _adress; } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MerkleTree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"signature","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"buyPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintNumberlimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltiesPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_adress","type":"address"}],"name":"setBatchAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setMerkleTree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMinMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMintNumberLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_stageNumberlimit","type":"uint256"},{"internalType":"uint256","name":"_minMintAmount","type":"uint256"}],"name":"setNextStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setRoyaltiesPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_NewAdress","type":"address"}],"name":"setRoyaltyRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSellingPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSellingUnpaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b916009916200031d565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600a916200031d565b50670214e8348c4f0000600c55612710600d55600a600e556103e8600f81905560016010819055601180546001600160a01b03191673fd4435a700e63cca6f975eec1919c95ecd1646301790556012919091557ff57971f28fba0312e2a19ab59b1a3a0d4f0144abbdf488047e89a8a1f24114666014556015805463ffffffff19169091179055348015620000de57600080fd5b50604080518082018252600881526714cd11914813919560c21b602080830191825283518085019094526003845262299a2360e91b9084015281519192916200012a916000916200031d565b508051620001409060019060208401906200031d565b5050506200015d62000157620001b060201b60201c565b620001b4565b6007805460ff60a01b19169055604080516080810190915260418082526200018f91906200348c602083013962000206565b601154601254620001aa916001600160a01b0316906200027f565b62000400565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620002665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b80516200027b90600b9060208401906200031d565b5050565b612710811115620002d35760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f206869676800000000000060448201526064016200025d565b604080518082019091526001600160a01b0390921680835262ffffff909116602090920182905260068054600160a01b9093026001600160b81b0319909316909117919091179055565b8280546200032b90620003c3565b90600052602060002090601f0160209004810192826200034f57600085556200039a565b82601f106200036a57805160ff19168380011785556200039a565b828001600101855582156200039a579182015b828111156200039a5782518255916020019190600101906200037d565b50620003a8929150620003ac565b5090565b5b80821115620003a85760008155600101620003ad565b600181811c90821680620003d857607f821691505b60208210811415620003fa57634e487b7160e01b600052602260045260246000fd5b50919050565b61307c80620004106000396000f3fe60806040526004361061038c5760003560e01c80635a7adf7f116101dc578063a22cb46511610102578063cafa8dfe116100a0578063e985e9c51161006f578063e985e9c514610a10578063efbd73f414610a59578063f2fde38b14610a79578063faa2571614610a9957600080fd5b8063cafa8dfe146109af578063d3d9fc45146109c5578063d5abeb01146109da578063e0a80853146109f057600080fd5b8063b88d4fde116100dc578063b88d4fde1461092f578063bc4f1a7e1461094f578063c0a010bc1461096f578063c87b56dd1461098f57600080fd5b8063a22cb465146108da578063a45ba8e7146108fa578063b071401b1461090f57600080fd5b8063715018a61161017a57806394354fd01161014957806394354fd01461087c5780639466d2061461089257806395d89b41146108b2578063a0712d68146108c757600080fd5b8063715018a6146108095780637cb647591461081e5780637ec4a6591461083e5780638da5cb5b1461085e57600080fd5b806362b99ad4116101b657806362b99ad41461079f5780636352211e146107b457806370a08231146107d457806371281bb0146107f457600080fd5b80635a7adf7f146107405780635aca1bb6146107605780635c975abb1461078057600080fd5b806326cb4ed3116102c157806341e42f301161025f5780634c00de821161022e5780634c00de82146106ca5780634fdd43cb146106ea578063518302271461070a5780635503a0e81461072b57600080fd5b806341e42f301461063d57806342842e0e1461065d578063438b63001461067d57806344a0d68a146106aa57600080fd5b80633406f5ad1161029b5780633406f5ad146105d557806338e35e42146105f55780633ccfd60b146106155780633fbe20a21461062a57600080fd5b806326cb4ed3146105615780632a55205a1461057757806333bc1c5c146105b657600080fd5b806310d4000e1161032e57806316ba10e01161030857806316ba10e0146104ec57806318160ddd1461050c5780631d85d7961461052157806323b872dd1461054157600080fd5b806310d4000e146104a0578063132d3f6a146104c057806313faede6146104d657600080fd5b806306fdde031161036a57806306fdde0314610404578063081812fc14610426578063095ea7b31461045e5780630d95ccc91461048057600080fd5b806301e9d7571461039157806301ffc9a7146103ba578063037c7d04146103ea575b600080fd5b34801561039d57600080fd5b506103a760105481565b6040519081526020015b60405180910390f35b3480156103c657600080fd5b506103da6103d5366004612b18565b610ab9565b60405190151581526020016103b1565b3480156103f657600080fd5b506015546103da9060ff1681565b34801561041057600080fd5b50610419610aca565b6040516103b19190612d7d565b34801561043257600080fd5b50610446610441366004612aff565b610b5c565b6040516001600160a01b0390911681526020016103b1565b34801561046a57600080fd5b5061047e610479366004612a3f565b610bf6565b005b34801561048c57600080fd5b5061047e61049b366004612ae4565b610d36565b3480156104ac57600080fd5b5061047e6104bb36600461290f565b610d7c565b3480156104cc57600080fd5b506103a760145481565b3480156104e257600080fd5b506103a7600c5481565b3480156104f857600080fd5b5061047e610507366004612b52565b610dc8565b34801561051857600080fd5b506103a7610e09565b34801561052d57600080fd5b5061047e61053c366004612aff565b610e19565b34801561054d57600080fd5b5061047e61055c36600461295d565b610e48565b34801561056d57600080fd5b506103a7600f5481565b34801561058357600080fd5b50610597610592366004612bbe565b610eed565b604080516001600160a01b0390931683526020830191909152016103b1565b3480156105c257600080fd5b506015546103da90610100900460ff1681565b3480156105e157600080fd5b5061047e6105f0366004612be0565b610f42565b34801561060157600080fd5b5061047e610610366004612aff565b610f7a565b34801561062157600080fd5b5061047e610fa9565b61047e610638366004612a69565b611047565b34801561064957600080fd5b5061047e61065836600461290f565b6112b0565b34801561066957600080fd5b5061047e61067836600461295d565b6112fc565b34801561068957600080fd5b5061069d61069836600461290f565b611317565b6040516103b19190612d39565b3480156106b657600080fd5b5061047e6106c5366004612aff565b6113f8565b3480156106d657600080fd5b50601154610446906001600160a01b031681565b3480156106f657600080fd5b5061047e610705366004612b52565b611427565b34801561071657600080fd5b506015546103da906301000000900460ff1681565b34801561073757600080fd5b50610419611464565b34801561074c57600080fd5b506015546103da9062010000900460ff1681565b34801561076c57600080fd5b5061047e61077b366004612ae4565b6114f2565b34801561078c57600080fd5b50600754600160a01b900460ff166103da565b3480156107ab57600080fd5b50610419611536565b3480156107c057600080fd5b506104466107cf366004612aff565b611543565b3480156107e057600080fd5b506103a76107ef36600461290f565b6115ba565b34801561080057600080fd5b5061047e611641565b34801561081557600080fd5b5061047e611675565b34801561082a57600080fd5b5061047e610839366004612aff565b6116a9565b34801561084a57600080fd5b5061047e610859366004612b52565b6116d8565b34801561086a57600080fd5b506007546001600160a01b0316610446565b34801561088857600080fd5b506103a7600e5481565b34801561089e57600080fd5b5061047e6108ad366004612aff565b611715565b3480156108be57600080fd5b50610419611744565b61047e6108d5366004612aff565b611753565b3480156108e657600080fd5b5061047e6108f5366004612a15565b6118b1565b34801561090657600080fd5b506104196118e6565b34801561091b57600080fd5b5061047e61092a366004612aff565b6118f3565b34801561093b57600080fd5b5061047e61094a366004612999565b611922565b34801561095b57600080fd5b5061047e61096a366004612b9b565b61199e565b34801561097b57600080fd5b5061047e61098a366004612ae4565b6119fb565b34801561099b57600080fd5b506104196109aa366004612aff565b611a38565b3480156109bb57600080fd5b506103a760125481565b3480156109d157600080fd5b5061047e611bb9565b3480156109e657600080fd5b506103a7600d5481565b3480156109fc57600080fd5b5061047e610a0b366004612ae4565b611beb565b348015610a1c57600080fd5b506103da610a2b36600461292a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6557600080fd5b5061047e610a74366004612b9b565b611c33565b348015610a8557600080fd5b5061047e610a9436600461290f565b611d00565b348015610aa557600080fd5b50601354610446906001600160a01b031681565b6000610ac482611d98565b92915050565b606060008054610ad990612f6e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0590612f6e565b8015610b525780601f10610b2757610100808354040283529160200191610b52565b820191906000526020600020905b815481529060010190602001808311610b3557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bda5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600754600160a01b900460ff1615610c205760405162461bcd60e51b8152600401610bd190612e10565b6000610c2b82611543565b9050806001600160a01b0316836001600160a01b03161415610c995760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bd1565b336001600160a01b0382161480610cb55750610cb58133610a2b565b610d275760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bd1565b610d318383611dbd565b505050565b6007546001600160a01b03163314610d605760405162461bcd60e51b8152600401610bd190612e3a565b60158054911515620100000262ff000019909216919091179055565b6007546001600160a01b03163314610da65760405162461bcd60e51b8152600401610bd190612e3a565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b03163314610df25760405162461bcd60e51b8152600401610bd190612e3a565b8051610e0590600a9060208401906127d4565b5050565b6000610e1460085490565b905090565b6007546001600160a01b03163314610e435760405162461bcd60e51b8152600401610bd190612e3a565b601055565b600754600160a01b900460ff1615610e725760405162461bcd60e51b8152600401610bd190612e10565b610e7c3382611e2b565b610ee25760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdd08185c1c1c9bdd9959607a1b6064820152608401610bd1565b610d31838383611f22565b604080518082019091526006546001600160a01b038116808352600160a01b90910462ffffff1660208301819052909160009161271090610f2e9086612f0c565b610f389190612ef8565b9150509250929050565b6007546001600160a01b03163314610f6c5760405162461bcd60e51b8152600401610bd190612e3a565b600c92909255600f55601055565b6007546001600160a01b03163314610fa45760405162461bcd60e51b8152600401610bd190612e3a565b600f55565b6007546001600160a01b03163314610fd35760405162461bcd60e51b8152600401610bd190612e3a565b6000610fe76007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611031576040519150601f19603f3d011682016040523d82523d6000602084013e611036565b606091505b505090508061104457600080fd5b50565b8060008111801561105a5750600e548111155b6110765760405162461bcd60e51b8152600401610bd190612de2565b600d548161108360085490565b61108d9190612ee0565b11156110ab5760405162461bcd60e51b8152600401610bd190612e6f565b600f54816110b860085490565b6110c29190612ee0565b11156110e05760405162461bcd60e51b8152600401610bd190612e9d565b60155462010000900460ff166111305760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b6044820152606401610bd1565b6010548210156111825760405162461bcd60e51b815260206004820152601b60248201527f4d696e207370656e642070657220706572736f6e206973206c6f7700000000006044820152606401610bd1565b81600c546111909190612f0c565b3410156111d45760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610bd1565b60155460ff161515600114156112a0576040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061125e8585808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060145491508490506120be565b61129e5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b6044820152606401610bd1565b505b6112aa33836120d4565b50505050565b6007546001600160a01b031633146112da5760405162461bcd60e51b8152600401610bd190612e3a565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b610d3183838360405180602001604052806000815250611922565b60606000611324836115ba565b905060008167ffffffffffffffff8111156113415761134161301a565b60405190808252806020026020018201604052801561136a578160200160208202803683370190505b509050600160005b83811080156113835750600d548211155b156113ee57600061139383611543565b9050866001600160a01b0316816001600160a01b031614156113db57828483815181106113c2576113c2613004565b6020908102919091010152816113d781612fa9565b9250505b826113e581612fa9565b93505050611372565b5090949350505050565b6007546001600160a01b031633146114225760405162461bcd60e51b8152600401610bd190612e3a565b600c55565b6007546001600160a01b031633146114515760405162461bcd60e51b8152600401610bd190612e3a565b8051610e0590600b9060208401906127d4565b600a805461147190612f6e565b80601f016020809104026020016040519081016040528092919081815260200182805461149d90612f6e565b80156114ea5780601f106114bf576101008083540402835291602001916114ea565b820191906000526020600020905b8154815290600101906020018083116114cd57829003601f168201915b505050505081565b6007546001600160a01b0316331461151c5760405162461bcd60e51b8152600401610bd190612e3a565b601580549115156101000261ff0019909216919091179055565b6009805461147190612f6e565b6000818152600260205260408120546001600160a01b031680610ac45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bd1565b60006001600160a01b0382166116255760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bd1565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b0316331461166b5760405162461bcd60e51b8152600401610bd190612e3a565b611673612111565b565b6007546001600160a01b0316331461169f5760405162461bcd60e51b8152600401610bd190612e3a565b61167360006121ae565b6007546001600160a01b031633146116d35760405162461bcd60e51b8152600401610bd190612e3a565b601455565b6007546001600160a01b031633146117025760405162461bcd60e51b8152600401610bd190612e3a565b8051610e059060099060208401906127d4565b6007546001600160a01b0316331461173f5760405162461bcd60e51b8152600401610bd190612e3a565b601255565b606060018054610ad990612f6e565b806000811180156117665750600e548111155b6117825760405162461bcd60e51b8152600401610bd190612de2565b600d548161178f60085490565b6117999190612ee0565b11156117b75760405162461bcd60e51b8152600401610bd190612e6f565b600f54816117c460085490565b6117ce9190612ee0565b11156117ec5760405162461bcd60e51b8152600401610bd190612e9d565b601554610100900460ff166118435760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610bd1565b6007546001600160a01b031633146118a75781600c546118639190612f0c565b3410156118a75760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610bd1565b610e0533836120d4565b600754600160a01b900460ff16156118db5760405162461bcd60e51b8152600401610bd190612e10565b610e05338383612200565b600b805461147190612f6e565b6007546001600160a01b0316331461191d5760405162461bcd60e51b8152600401610bd190612e3a565b600e55565b61192c3383611e2b565b6119925760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610bd1565b6112aa848484846122cf565b6013546001600160a01b031633146119f15760405162461bcd60e51b81526020600482015260166024820152756f6e6c7920666f72206261746368206164647265737360501b6044820152606401610bd1565b610e0581836120d4565b6007546001600160a01b03163314611a255760405162461bcd60e51b8152600401610bd190612e3a565b6015805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b0316611ab75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bd1565b6015546301000000900460ff16611b5a57600b8054611ad590612f6e565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0190612f6e565b8015611b4e5780601f10611b2357610100808354040283529160200191611b4e565b820191906000526020600020905b815481529060010190602001808311611b3157829003601f168201915b50505050509050919050565b6000611b64612302565b90506000815111611b845760405180602001604052806000815250611bb2565b80611b8e84612311565b600a604051602001611ba293929190612c38565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314611be35760405162461bcd60e51b8152600401610bd190612e3a565b61167361240f565b6007546001600160a01b03163314611c155760405162461bcd60e51b8152600401610bd190612e3a565b6015805491151563010000000263ff00000019909216919091179055565b81600081118015611c465750600e548111155b611c625760405162461bcd60e51b8152600401610bd190612de2565b600d5481611c6f60085490565b611c799190612ee0565b1115611c975760405162461bcd60e51b8152600401610bd190612e6f565b600f5481611ca460085490565b611cae9190612ee0565b1115611ccc5760405162461bcd60e51b8152600401610bd190612e9d565b6007546001600160a01b03163314611cf65760405162461bcd60e51b8152600401610bd190612e3a565b610d3182846120d4565b6007546001600160a01b03163314611d2a5760405162461bcd60e51b8152600401610bd190612e3a565b6001600160a01b038116611d8f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd1565b611044816121ae565b60006001600160e01b0319821663152a902d60e11b1480610ac45750610ac482612474565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611df282611543565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ea45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bd1565b6000611eaf83611543565b9050806001600160a01b0316846001600160a01b03161480611eea5750836001600160a01b0316611edf84610b5c565b6001600160a01b0316145b80611f1a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f3582611543565b6001600160a01b031614611f995760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610bd1565b6001600160a01b038216611ffb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bd1565b612006600082611dbd565b6001600160a01b038316600090815260036020526040812080546001929061202f908490612f2b565b90915550506001600160a01b038216600090815260036020526040812080546001929061205d908490612ee0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826120cb85846124c4565b14949350505050565b60005b81811015610d31576120ed600880546001019055565b6120ff836120fa60085490565b612538565b8061210981612fa9565b9150506120d7565b600754600160a01b900460ff166121615760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610bd1565b6007805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156122625760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bd1565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122da848484611f22565b6122e684848484612552565b6112aa5760405162461bcd60e51b8152600401610bd190612d90565b606060098054610ad990612f6e565b6060816123355750506040805180820190915260018152600360fc1b602082015290565b8160005b811561235f578061234981612fa9565b91506123589050600a83612ef8565b9150612339565b60008167ffffffffffffffff81111561237a5761237a61301a565b6040519080825280601f01601f1916602001820160405280156123a4576020820181803683370190505b5090505b8415611f1a576123b9600183612f2b565b91506123c6600a86612fc4565b6123d1906030612ee0565b60f81b8183815181106123e6576123e6613004565b60200101906001600160f81b031916908160001a905350612408600a86612ef8565b94506123a8565b600754600160a01b900460ff16156124395760405162461bcd60e51b8152600401610bd190612e10565b6007805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121913390565b60006001600160e01b031982166380ac58cd60e01b14806124a557506001600160e01b03198216635b5e139f60e01b145b80610ac457506301ffc9a760e01b6001600160e01b0319831614610ac4565b600081815b84518110156125305760008582815181106124e6576124e6613004565b6020026020010151905080831161250c576000838152602082905260409020925061251d565b600081815260208490526040902092505b508061252881612fa9565b9150506124c9565b509392505050565b610e0582826040518060200160405280600081525061265f565b60006001600160a01b0384163b1561265457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612596903390899088908890600401612cfc565b602060405180830381600087803b1580156125b057600080fd5b505af19250505080156125e0575060408051601f3d908101601f191682019092526125dd91810190612b35565b60015b61263a573d80801561260e576040519150601f19603f3d011682016040523d82523d6000602084013e612613565b606091505b5080516126325760405162461bcd60e51b8152600401610bd190612d90565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f1a565b506001949350505050565b6126698383612692565b6126766000848484612552565b610d315760405162461bcd60e51b8152600401610bd190612d90565b6001600160a01b0382166126e85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bd1565b6000818152600260205260409020546001600160a01b03161561274d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bd1565b6001600160a01b0382166000908152600360205260408120805460019290612776908490612ee0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546127e090612f6e565b90600052602060002090601f0160209004810192826128025760008555612848565b82601f1061281b57805160ff1916838001178555612848565b82800160010185558215612848579182015b8281111561284857825182559160200191906001019061282d565b50612854929150612858565b5090565b5b808211156128545760008155600101612859565b600067ffffffffffffffff808411156128885761288861301a565b604051601f8501601f19908116603f011681019082821181831017156128b0576128b061301a565b816040528093508581528686860111156128c957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146128fa57600080fd5b919050565b803580151581146128fa57600080fd5b60006020828403121561292157600080fd5b611bb2826128e3565b6000806040838503121561293d57600080fd5b612946836128e3565b9150612954602084016128e3565b90509250929050565b60008060006060848603121561297257600080fd5b61297b846128e3565b9250612989602085016128e3565b9150604084013590509250925092565b600080600080608085870312156129af57600080fd5b6129b8856128e3565b93506129c6602086016128e3565b925060408501359150606085013567ffffffffffffffff8111156129e957600080fd5b8501601f810187136129fa57600080fd5b612a098782356020840161286d565b91505092959194509250565b60008060408385031215612a2857600080fd5b612a31836128e3565b9150612954602084016128ff565b60008060408385031215612a5257600080fd5b612a5b836128e3565b946020939093013593505050565b600080600060408486031215612a7e57600080fd5b833567ffffffffffffffff80821115612a9657600080fd5b818601915086601f830112612aaa57600080fd5b813581811115612ab957600080fd5b8760208260051b8501011115612ace57600080fd5b6020928301989097509590910135949350505050565b600060208284031215612af657600080fd5b611bb2826128ff565b600060208284031215612b1157600080fd5b5035919050565b600060208284031215612b2a57600080fd5b8135611bb281613030565b600060208284031215612b4757600080fd5b8151611bb281613030565b600060208284031215612b6457600080fd5b813567ffffffffffffffff811115612b7b57600080fd5b8201601f81018413612b8c57600080fd5b611f1a8482356020840161286d565b60008060408385031215612bae57600080fd5b82359150612954602084016128e3565b60008060408385031215612bd157600080fd5b50508035926020909101359150565b600080600060608486031215612bf557600080fd5b505081359360208301359350604090920135919050565b60008151808452612c24816020860160208601612f42565b601f01601f19169290920160200192915050565b600084516020612c4b8285838a01612f42565b855191840191612c5e8184848a01612f42565b8554920191600090600181811c9080831680612c7b57607f831692505b858310811415612c9957634e487b7160e01b85526022600452602485fd5b808015612cad5760018114612cbe57612ceb565b60ff19851688528388019550612ceb565b60008b81526020902060005b85811015612ce35781548a820152908401908801612cca565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d2f90830184612c0c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d7157835183529284019291840191600101612d55565b50909695505050505050565b602081526000611bb26020830184612c0c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526023908201527f536d61727420436f6e7472616374207265616368656420746865206d6178206d6040820152621a5b9d60ea1b606082015260800190565b60008219821115612ef357612ef3612fd8565b500190565b600082612f0757612f07612fee565b500490565b6000816000190483118215151615612f2657612f26612fd8565b500290565b600082821015612f3d57612f3d612fd8565b500390565b60005b83811015612f5d578181015183820152602001612f45565b838111156112aa5750506000910152565b600181811c90821680612f8257607f821691505b60208210811415612fa357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fbd57612fbd612fd8565b5060010190565b600082612fd357612fd3612fee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461104457600080fdfea264697066735822122095f11ef66a2f393f26ab45044f3da14895ecfdf73b19ce2331964dcd9d30babb64736f6c63430008070033697066733a2f2f516d635933484e41636b6265325646367562346a6532664d5355594742384b6f5a526f6e31547147354b424d34372f68696464656e2e6a736f6e
Deployed Bytecode
0x60806040526004361061038c5760003560e01c80635a7adf7f116101dc578063a22cb46511610102578063cafa8dfe116100a0578063e985e9c51161006f578063e985e9c514610a10578063efbd73f414610a59578063f2fde38b14610a79578063faa2571614610a9957600080fd5b8063cafa8dfe146109af578063d3d9fc45146109c5578063d5abeb01146109da578063e0a80853146109f057600080fd5b8063b88d4fde116100dc578063b88d4fde1461092f578063bc4f1a7e1461094f578063c0a010bc1461096f578063c87b56dd1461098f57600080fd5b8063a22cb465146108da578063a45ba8e7146108fa578063b071401b1461090f57600080fd5b8063715018a61161017a57806394354fd01161014957806394354fd01461087c5780639466d2061461089257806395d89b41146108b2578063a0712d68146108c757600080fd5b8063715018a6146108095780637cb647591461081e5780637ec4a6591461083e5780638da5cb5b1461085e57600080fd5b806362b99ad4116101b657806362b99ad41461079f5780636352211e146107b457806370a08231146107d457806371281bb0146107f457600080fd5b80635a7adf7f146107405780635aca1bb6146107605780635c975abb1461078057600080fd5b806326cb4ed3116102c157806341e42f301161025f5780634c00de821161022e5780634c00de82146106ca5780634fdd43cb146106ea578063518302271461070a5780635503a0e81461072b57600080fd5b806341e42f301461063d57806342842e0e1461065d578063438b63001461067d57806344a0d68a146106aa57600080fd5b80633406f5ad1161029b5780633406f5ad146105d557806338e35e42146105f55780633ccfd60b146106155780633fbe20a21461062a57600080fd5b806326cb4ed3146105615780632a55205a1461057757806333bc1c5c146105b657600080fd5b806310d4000e1161032e57806316ba10e01161030857806316ba10e0146104ec57806318160ddd1461050c5780631d85d7961461052157806323b872dd1461054157600080fd5b806310d4000e146104a0578063132d3f6a146104c057806313faede6146104d657600080fd5b806306fdde031161036a57806306fdde0314610404578063081812fc14610426578063095ea7b31461045e5780630d95ccc91461048057600080fd5b806301e9d7571461039157806301ffc9a7146103ba578063037c7d04146103ea575b600080fd5b34801561039d57600080fd5b506103a760105481565b6040519081526020015b60405180910390f35b3480156103c657600080fd5b506103da6103d5366004612b18565b610ab9565b60405190151581526020016103b1565b3480156103f657600080fd5b506015546103da9060ff1681565b34801561041057600080fd5b50610419610aca565b6040516103b19190612d7d565b34801561043257600080fd5b50610446610441366004612aff565b610b5c565b6040516001600160a01b0390911681526020016103b1565b34801561046a57600080fd5b5061047e610479366004612a3f565b610bf6565b005b34801561048c57600080fd5b5061047e61049b366004612ae4565b610d36565b3480156104ac57600080fd5b5061047e6104bb36600461290f565b610d7c565b3480156104cc57600080fd5b506103a760145481565b3480156104e257600080fd5b506103a7600c5481565b3480156104f857600080fd5b5061047e610507366004612b52565b610dc8565b34801561051857600080fd5b506103a7610e09565b34801561052d57600080fd5b5061047e61053c366004612aff565b610e19565b34801561054d57600080fd5b5061047e61055c36600461295d565b610e48565b34801561056d57600080fd5b506103a7600f5481565b34801561058357600080fd5b50610597610592366004612bbe565b610eed565b604080516001600160a01b0390931683526020830191909152016103b1565b3480156105c257600080fd5b506015546103da90610100900460ff1681565b3480156105e157600080fd5b5061047e6105f0366004612be0565b610f42565b34801561060157600080fd5b5061047e610610366004612aff565b610f7a565b34801561062157600080fd5b5061047e610fa9565b61047e610638366004612a69565b611047565b34801561064957600080fd5b5061047e61065836600461290f565b6112b0565b34801561066957600080fd5b5061047e61067836600461295d565b6112fc565b34801561068957600080fd5b5061069d61069836600461290f565b611317565b6040516103b19190612d39565b3480156106b657600080fd5b5061047e6106c5366004612aff565b6113f8565b3480156106d657600080fd5b50601154610446906001600160a01b031681565b3480156106f657600080fd5b5061047e610705366004612b52565b611427565b34801561071657600080fd5b506015546103da906301000000900460ff1681565b34801561073757600080fd5b50610419611464565b34801561074c57600080fd5b506015546103da9062010000900460ff1681565b34801561076c57600080fd5b5061047e61077b366004612ae4565b6114f2565b34801561078c57600080fd5b50600754600160a01b900460ff166103da565b3480156107ab57600080fd5b50610419611536565b3480156107c057600080fd5b506104466107cf366004612aff565b611543565b3480156107e057600080fd5b506103a76107ef36600461290f565b6115ba565b34801561080057600080fd5b5061047e611641565b34801561081557600080fd5b5061047e611675565b34801561082a57600080fd5b5061047e610839366004612aff565b6116a9565b34801561084a57600080fd5b5061047e610859366004612b52565b6116d8565b34801561086a57600080fd5b506007546001600160a01b0316610446565b34801561088857600080fd5b506103a7600e5481565b34801561089e57600080fd5b5061047e6108ad366004612aff565b611715565b3480156108be57600080fd5b50610419611744565b61047e6108d5366004612aff565b611753565b3480156108e657600080fd5b5061047e6108f5366004612a15565b6118b1565b34801561090657600080fd5b506104196118e6565b34801561091b57600080fd5b5061047e61092a366004612aff565b6118f3565b34801561093b57600080fd5b5061047e61094a366004612999565b611922565b34801561095b57600080fd5b5061047e61096a366004612b9b565b61199e565b34801561097b57600080fd5b5061047e61098a366004612ae4565b6119fb565b34801561099b57600080fd5b506104196109aa366004612aff565b611a38565b3480156109bb57600080fd5b506103a760125481565b3480156109d157600080fd5b5061047e611bb9565b3480156109e657600080fd5b506103a7600d5481565b3480156109fc57600080fd5b5061047e610a0b366004612ae4565b611beb565b348015610a1c57600080fd5b506103da610a2b36600461292a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6557600080fd5b5061047e610a74366004612b9b565b611c33565b348015610a8557600080fd5b5061047e610a9436600461290f565b611d00565b348015610aa557600080fd5b50601354610446906001600160a01b031681565b6000610ac482611d98565b92915050565b606060008054610ad990612f6e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0590612f6e565b8015610b525780601f10610b2757610100808354040283529160200191610b52565b820191906000526020600020905b815481529060010190602001808311610b3557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bda5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600754600160a01b900460ff1615610c205760405162461bcd60e51b8152600401610bd190612e10565b6000610c2b82611543565b9050806001600160a01b0316836001600160a01b03161415610c995760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bd1565b336001600160a01b0382161480610cb55750610cb58133610a2b565b610d275760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bd1565b610d318383611dbd565b505050565b6007546001600160a01b03163314610d605760405162461bcd60e51b8152600401610bd190612e3a565b60158054911515620100000262ff000019909216919091179055565b6007546001600160a01b03163314610da65760405162461bcd60e51b8152600401610bd190612e3a565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b03163314610df25760405162461bcd60e51b8152600401610bd190612e3a565b8051610e0590600a9060208401906127d4565b5050565b6000610e1460085490565b905090565b6007546001600160a01b03163314610e435760405162461bcd60e51b8152600401610bd190612e3a565b601055565b600754600160a01b900460ff1615610e725760405162461bcd60e51b8152600401610bd190612e10565b610e7c3382611e2b565b610ee25760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdd08185c1c1c9bdd9959607a1b6064820152608401610bd1565b610d31838383611f22565b604080518082019091526006546001600160a01b038116808352600160a01b90910462ffffff1660208301819052909160009161271090610f2e9086612f0c565b610f389190612ef8565b9150509250929050565b6007546001600160a01b03163314610f6c5760405162461bcd60e51b8152600401610bd190612e3a565b600c92909255600f55601055565b6007546001600160a01b03163314610fa45760405162461bcd60e51b8152600401610bd190612e3a565b600f55565b6007546001600160a01b03163314610fd35760405162461bcd60e51b8152600401610bd190612e3a565b6000610fe76007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611031576040519150601f19603f3d011682016040523d82523d6000602084013e611036565b606091505b505090508061104457600080fd5b50565b8060008111801561105a5750600e548111155b6110765760405162461bcd60e51b8152600401610bd190612de2565b600d548161108360085490565b61108d9190612ee0565b11156110ab5760405162461bcd60e51b8152600401610bd190612e6f565b600f54816110b860085490565b6110c29190612ee0565b11156110e05760405162461bcd60e51b8152600401610bd190612e9d565b60155462010000900460ff166111305760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b6044820152606401610bd1565b6010548210156111825760405162461bcd60e51b815260206004820152601b60248201527f4d696e207370656e642070657220706572736f6e206973206c6f7700000000006044820152606401610bd1565b81600c546111909190612f0c565b3410156111d45760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610bd1565b60155460ff161515600114156112a0576040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061125e8585808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060145491508490506120be565b61129e5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b6044820152606401610bd1565b505b6112aa33836120d4565b50505050565b6007546001600160a01b031633146112da5760405162461bcd60e51b8152600401610bd190612e3a565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b610d3183838360405180602001604052806000815250611922565b60606000611324836115ba565b905060008167ffffffffffffffff8111156113415761134161301a565b60405190808252806020026020018201604052801561136a578160200160208202803683370190505b509050600160005b83811080156113835750600d548211155b156113ee57600061139383611543565b9050866001600160a01b0316816001600160a01b031614156113db57828483815181106113c2576113c2613004565b6020908102919091010152816113d781612fa9565b9250505b826113e581612fa9565b93505050611372565b5090949350505050565b6007546001600160a01b031633146114225760405162461bcd60e51b8152600401610bd190612e3a565b600c55565b6007546001600160a01b031633146114515760405162461bcd60e51b8152600401610bd190612e3a565b8051610e0590600b9060208401906127d4565b600a805461147190612f6e565b80601f016020809104026020016040519081016040528092919081815260200182805461149d90612f6e565b80156114ea5780601f106114bf576101008083540402835291602001916114ea565b820191906000526020600020905b8154815290600101906020018083116114cd57829003601f168201915b505050505081565b6007546001600160a01b0316331461151c5760405162461bcd60e51b8152600401610bd190612e3a565b601580549115156101000261ff0019909216919091179055565b6009805461147190612f6e565b6000818152600260205260408120546001600160a01b031680610ac45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bd1565b60006001600160a01b0382166116255760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bd1565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b0316331461166b5760405162461bcd60e51b8152600401610bd190612e3a565b611673612111565b565b6007546001600160a01b0316331461169f5760405162461bcd60e51b8152600401610bd190612e3a565b61167360006121ae565b6007546001600160a01b031633146116d35760405162461bcd60e51b8152600401610bd190612e3a565b601455565b6007546001600160a01b031633146117025760405162461bcd60e51b8152600401610bd190612e3a565b8051610e059060099060208401906127d4565b6007546001600160a01b0316331461173f5760405162461bcd60e51b8152600401610bd190612e3a565b601255565b606060018054610ad990612f6e565b806000811180156117665750600e548111155b6117825760405162461bcd60e51b8152600401610bd190612de2565b600d548161178f60085490565b6117999190612ee0565b11156117b75760405162461bcd60e51b8152600401610bd190612e6f565b600f54816117c460085490565b6117ce9190612ee0565b11156117ec5760405162461bcd60e51b8152600401610bd190612e9d565b601554610100900460ff166118435760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610bd1565b6007546001600160a01b031633146118a75781600c546118639190612f0c565b3410156118a75760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610bd1565b610e0533836120d4565b600754600160a01b900460ff16156118db5760405162461bcd60e51b8152600401610bd190612e10565b610e05338383612200565b600b805461147190612f6e565b6007546001600160a01b0316331461191d5760405162461bcd60e51b8152600401610bd190612e3a565b600e55565b61192c3383611e2b565b6119925760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610bd1565b6112aa848484846122cf565b6013546001600160a01b031633146119f15760405162461bcd60e51b81526020600482015260166024820152756f6e6c7920666f72206261746368206164647265737360501b6044820152606401610bd1565b610e0581836120d4565b6007546001600160a01b03163314611a255760405162461bcd60e51b8152600401610bd190612e3a565b6015805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b0316611ab75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bd1565b6015546301000000900460ff16611b5a57600b8054611ad590612f6e565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0190612f6e565b8015611b4e5780601f10611b2357610100808354040283529160200191611b4e565b820191906000526020600020905b815481529060010190602001808311611b3157829003601f168201915b50505050509050919050565b6000611b64612302565b90506000815111611b845760405180602001604052806000815250611bb2565b80611b8e84612311565b600a604051602001611ba293929190612c38565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314611be35760405162461bcd60e51b8152600401610bd190612e3a565b61167361240f565b6007546001600160a01b03163314611c155760405162461bcd60e51b8152600401610bd190612e3a565b6015805491151563010000000263ff00000019909216919091179055565b81600081118015611c465750600e548111155b611c625760405162461bcd60e51b8152600401610bd190612de2565b600d5481611c6f60085490565b611c799190612ee0565b1115611c975760405162461bcd60e51b8152600401610bd190612e6f565b600f5481611ca460085490565b611cae9190612ee0565b1115611ccc5760405162461bcd60e51b8152600401610bd190612e9d565b6007546001600160a01b03163314611cf65760405162461bcd60e51b8152600401610bd190612e3a565b610d3182846120d4565b6007546001600160a01b03163314611d2a5760405162461bcd60e51b8152600401610bd190612e3a565b6001600160a01b038116611d8f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd1565b611044816121ae565b60006001600160e01b0319821663152a902d60e11b1480610ac45750610ac482612474565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611df282611543565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ea45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bd1565b6000611eaf83611543565b9050806001600160a01b0316846001600160a01b03161480611eea5750836001600160a01b0316611edf84610b5c565b6001600160a01b0316145b80611f1a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f3582611543565b6001600160a01b031614611f995760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610bd1565b6001600160a01b038216611ffb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bd1565b612006600082611dbd565b6001600160a01b038316600090815260036020526040812080546001929061202f908490612f2b565b90915550506001600160a01b038216600090815260036020526040812080546001929061205d908490612ee0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826120cb85846124c4565b14949350505050565b60005b81811015610d31576120ed600880546001019055565b6120ff836120fa60085490565b612538565b8061210981612fa9565b9150506120d7565b600754600160a01b900460ff166121615760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610bd1565b6007805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156122625760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bd1565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122da848484611f22565b6122e684848484612552565b6112aa5760405162461bcd60e51b8152600401610bd190612d90565b606060098054610ad990612f6e565b6060816123355750506040805180820190915260018152600360fc1b602082015290565b8160005b811561235f578061234981612fa9565b91506123589050600a83612ef8565b9150612339565b60008167ffffffffffffffff81111561237a5761237a61301a565b6040519080825280601f01601f1916602001820160405280156123a4576020820181803683370190505b5090505b8415611f1a576123b9600183612f2b565b91506123c6600a86612fc4565b6123d1906030612ee0565b60f81b8183815181106123e6576123e6613004565b60200101906001600160f81b031916908160001a905350612408600a86612ef8565b94506123a8565b600754600160a01b900460ff16156124395760405162461bcd60e51b8152600401610bd190612e10565b6007805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121913390565b60006001600160e01b031982166380ac58cd60e01b14806124a557506001600160e01b03198216635b5e139f60e01b145b80610ac457506301ffc9a760e01b6001600160e01b0319831614610ac4565b600081815b84518110156125305760008582815181106124e6576124e6613004565b6020026020010151905080831161250c576000838152602082905260409020925061251d565b600081815260208490526040902092505b508061252881612fa9565b9150506124c9565b509392505050565b610e0582826040518060200160405280600081525061265f565b60006001600160a01b0384163b1561265457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612596903390899088908890600401612cfc565b602060405180830381600087803b1580156125b057600080fd5b505af19250505080156125e0575060408051601f3d908101601f191682019092526125dd91810190612b35565b60015b61263a573d80801561260e576040519150601f19603f3d011682016040523d82523d6000602084013e612613565b606091505b5080516126325760405162461bcd60e51b8152600401610bd190612d90565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f1a565b506001949350505050565b6126698383612692565b6126766000848484612552565b610d315760405162461bcd60e51b8152600401610bd190612d90565b6001600160a01b0382166126e85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bd1565b6000818152600260205260409020546001600160a01b03161561274d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bd1565b6001600160a01b0382166000908152600360205260408120805460019290612776908490612ee0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546127e090612f6e565b90600052602060002090601f0160209004810192826128025760008555612848565b82601f1061281b57805160ff1916838001178555612848565b82800160010185558215612848579182015b8281111561284857825182559160200191906001019061282d565b50612854929150612858565b5090565b5b808211156128545760008155600101612859565b600067ffffffffffffffff808411156128885761288861301a565b604051601f8501601f19908116603f011681019082821181831017156128b0576128b061301a565b816040528093508581528686860111156128c957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146128fa57600080fd5b919050565b803580151581146128fa57600080fd5b60006020828403121561292157600080fd5b611bb2826128e3565b6000806040838503121561293d57600080fd5b612946836128e3565b9150612954602084016128e3565b90509250929050565b60008060006060848603121561297257600080fd5b61297b846128e3565b9250612989602085016128e3565b9150604084013590509250925092565b600080600080608085870312156129af57600080fd5b6129b8856128e3565b93506129c6602086016128e3565b925060408501359150606085013567ffffffffffffffff8111156129e957600080fd5b8501601f810187136129fa57600080fd5b612a098782356020840161286d565b91505092959194509250565b60008060408385031215612a2857600080fd5b612a31836128e3565b9150612954602084016128ff565b60008060408385031215612a5257600080fd5b612a5b836128e3565b946020939093013593505050565b600080600060408486031215612a7e57600080fd5b833567ffffffffffffffff80821115612a9657600080fd5b818601915086601f830112612aaa57600080fd5b813581811115612ab957600080fd5b8760208260051b8501011115612ace57600080fd5b6020928301989097509590910135949350505050565b600060208284031215612af657600080fd5b611bb2826128ff565b600060208284031215612b1157600080fd5b5035919050565b600060208284031215612b2a57600080fd5b8135611bb281613030565b600060208284031215612b4757600080fd5b8151611bb281613030565b600060208284031215612b6457600080fd5b813567ffffffffffffffff811115612b7b57600080fd5b8201601f81018413612b8c57600080fd5b611f1a8482356020840161286d565b60008060408385031215612bae57600080fd5b82359150612954602084016128e3565b60008060408385031215612bd157600080fd5b50508035926020909101359150565b600080600060608486031215612bf557600080fd5b505081359360208301359350604090920135919050565b60008151808452612c24816020860160208601612f42565b601f01601f19169290920160200192915050565b600084516020612c4b8285838a01612f42565b855191840191612c5e8184848a01612f42565b8554920191600090600181811c9080831680612c7b57607f831692505b858310811415612c9957634e487b7160e01b85526022600452602485fd5b808015612cad5760018114612cbe57612ceb565b60ff19851688528388019550612ceb565b60008b81526020902060005b85811015612ce35781548a820152908401908801612cca565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d2f90830184612c0c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d7157835183529284019291840191600101612d55565b50909695505050505050565b602081526000611bb26020830184612c0c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526023908201527f536d61727420436f6e7472616374207265616368656420746865206d6178206d6040820152621a5b9d60ea1b606082015260800190565b60008219821115612ef357612ef3612fd8565b500190565b600082612f0757612f07612fee565b500490565b6000816000190483118215151615612f2657612f26612fd8565b500290565b600082821015612f3d57612f3d612fd8565b500390565b60005b83811015612f5d578181015183820152602001612f45565b838111156112aa5750506000910152565b600181811c90821680612f8257607f821691505b60208210811415612fa357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fbd57612fbd612fd8565b5060010190565b600082612fd357612fd3612fee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461104457600080fdfea264697066735822122095f11ef66a2f393f26ab45044f3da14895ecfdf73b19ce2331964dcd9d30babb64736f6c63430008070033
Deployed Bytecode Sourcemap
45531:7737:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46049:32;;;;;;;;;;;;;;;;;;;10205:25:1;;;10193:2;10178:18;46049:32:0;;;;;;;;50612:179;;;;;;;;;;-1:-1:-1;50612:179:0;;;;;:::i;:::-;;:::i;:::-;;;10032:14:1;;10025:22;10007:41;;9995:2;9980:18;50612:179:0;9867:187:1;46403:29:0;;;;;;;;;;-1:-1:-1;46403:29:0;;;;;;;;33213:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34772:221::-;;;;;;;;;;-1:-1:-1;34772:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8414:32:1;;;8396:51;;8384:2;8369:18;34772:221:0;8250:203:1;48477:425:0;;;;;;;;;;-1:-1:-1;48477:425:0;;;;;:::i;:::-;;:::i;:::-;;52289:79;;;;;;;;;;-1:-1:-1;52289:79:0;;;;;:::i;:::-;;:::i;53061:94::-;;;;;;;;;;-1:-1:-1;53061:94:0;;;;;:::i;:::-;;:::i;46302:::-;;;;;;;;;;;;;;;;45808:32;;;;;;;;;;;;;;;;52092:100;;;;;;;;;;-1:-1:-1;52092:100:0;;;;;:::i;:::-;;:::i;47139:89::-;;;;;;;;;;;;;:::i;51506:94::-;;;;;;;;;;-1:-1:-1;51506:94:0;;;;;:::i;:::-;;:::i;49085:352::-;;;;;;;;;;-1:-1:-1;49085:352:0;;;;;:::i;:::-;;:::i;45976:37::-;;;;;;;;;;;;;;;;24626:289;;;;;;;;;;-1:-1:-1;24626:289:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;9143:32:1;;;9125:51;;9207:2;9192:18;;9185:34;;;;9098:18;24626:289:0;8951:274:1;46437:30:0;;;;;;;;;;-1:-1:-1;46437:30:0;;;;;;;;;;;52464:207;;;;;;;;;;-1:-1:-1;52464:207:0;;;;;:::i;:::-;;:::i;51402:98::-;;;;;;;;;;-1:-1:-1;51402:98:0;;;;;:::i;:::-;;:::i;52677:137::-;;;;;;;;;;;;;:::i;47748:535::-;;;;;;:::i;:::-;;:::i;51168:107::-;;;;;;;;;;-1:-1:-1;51168:107:0;;;;;:::i;:::-;;:::i;35932:185::-;;;;;;;;;;-1:-1:-1;35932:185:0;;;;;:::i;:::-;;:::i;49445:635::-;;;;;;;;;;-1:-1:-1;49445:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51088:74::-;;;;;;;;;;-1:-1:-1;51088:74:0;;;;;:::i;:::-;;:::i;46122:76::-;;;;;;;;;;-1:-1:-1;46122:76:0;;;;-1:-1:-1;;;;;46122:76:0;;;51848:132;;;;;;;;;;-1:-1:-1;51848:132:0;;;;;:::i;:::-;;:::i;46547:28::-;;;;;;;;;;-1:-1:-1;46547:28:0;;;;;;;;;;;45730:33;;;;;;;;;;;;;:::i;46514:27::-;;;;;;;;;;-1:-1:-1;46514:27:0;;;;;;;;;;;52198:85;;;;;;;;;;-1:-1:-1;52198:85:0;;;;;:::i;:::-;;:::i;8747:86::-;;;;;;;;;;-1:-1:-1;8818:7:0;;-1:-1:-1;;;8818:7:0;;;;8747:86;;45697:28;;;;;;;;;;;;;:::i;32907:239::-;;;;;;;;;;-1:-1:-1;32907:239:0;;;;;:::i;:::-;;:::i;32637:208::-;;;;;;;;;;-1:-1:-1;32637:208:0;;;;;:::i;:::-;;:::i;50900:72::-;;;;;;;;;;;;;:::i;11646:103::-;;;;;;;;;;;;;:::i;51742:100::-;;;;;;;;;;-1:-1:-1;51742:100:0;;;;;:::i;:::-;;:::i;51986:::-;;;;;;;;;;-1:-1:-1;51986:100:0;;;;;:::i;:::-;;:::i;10995:87::-;;;;;;;;;;-1:-1:-1;11068:6:0;;-1:-1:-1;;;;;11068:6:0;10995:87;;45882:38;;;;;;;;;;;;;;;;51281:115;;;;;;;;;;-1:-1:-1;51281:115:0;;;;;:::i;:::-;;:::i;33382:104::-;;;;;;;;;;;;;:::i;47234:316::-;;;;;;:::i;:::-;;:::i;48908:169::-;;;;;;;;;;-1:-1:-1;48908:169:0;;;;;:::i;:::-;;:::i;45768:31::-;;;;;;;;;;;;;:::i;51606:130::-;;;;;;;;;;-1:-1:-1;51606:130:0;;;;;:::i;:::-;;:::i;36188:328::-;;;;;;;;;;-1:-1:-1;36188:328:0;;;;;:::i;:::-;;:::i;47556:180::-;;;;;;;;;;-1:-1:-1;47556:180:0;;;;;:::i;:::-;;:::i;52374:84::-;;;;;;;;;;-1:-1:-1;52374:84:0;;;;;:::i;:::-;;:::i;50086:494::-;;;;;;;;;;-1:-1:-1;50086:494:0;;;;;:::i;:::-;;:::i;46203:41::-;;;;;;;;;;;;;;;;50828:68;;;;;;;;;;;;;:::i;45845:32::-;;;;;;;;;;;;;;;;51001:81;;;;;;;;;;-1:-1:-1;51001:81:0;;;;;:::i;:::-;;:::i;35291:164::-;;;;;;;;;;-1:-1:-1;35291:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35412:25:0;;;35388:4;35412:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35291:164;48291:155;;;;;;;;;;-1:-1:-1;48291:155:0;;;;;:::i;:::-;;:::i;11904:201::-;;;;;;;;;;-1:-1:-1;11904:201:0;;;;;:::i;:::-;;:::i;46266:27::-;;;;;;;;;;-1:-1:-1;46266:27:0;;;;-1:-1:-1;;;;;46266:27:0;;;50612:179;50726:4;50749:36;50773:11;50749:23;:36::i;:::-;50742:43;50612:179;-1:-1:-1;;50612:179:0:o;33213:100::-;33267:13;33300:5;33293:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33213:100;:::o;34772:221::-;34848:7;38115:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38115:16:0;34868:73;;;;-1:-1:-1;;;34868:73:0;;17549:2:1;34868:73:0;;;17531:21:1;17588:2;17568:18;;;17561:30;17627:34;17607:18;;;17600:62;-1:-1:-1;;;17678:18:1;;;17671:42;17730:19;;34868:73:0;;;;;;;;;-1:-1:-1;34961:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34961:24:0;;34772:221::o;48477:425::-;8818:7;;-1:-1:-1;;;8818:7:0;;;;9072:9;9064:38;;;;-1:-1:-1;;;9064:38:0;;;;;;;:::i;:::-;48572:13:::1;48588:23;48603:7;48588:14;:23::i;:::-;48572:39;;48636:5;-1:-1:-1::0;;;;;48630:11:0::1;:2;-1:-1:-1::0;;;;;48630:11:0::1;;;48622:57;;;::::0;-1:-1:-1;;;48622:57:0;;19091:2:1;48622:57:0::1;::::0;::::1;19073:21:1::0;19130:2;19110:18;;;19103:30;19169:34;19149:18;;;19142:62;-1:-1:-1;;;19220:18:1;;;19213:31;19261:19;;48622:57:0::1;18889:397:1::0;48622:57:0::1;7481:10:::0;-1:-1:-1;;;;;48714:21:0;::::1;;::::0;:62:::1;;-1:-1:-1::0;48739:37:0::1;48756:5:::0;7481:10;35291:164;:::i;48739:37::-:1;48692:168;;;::::0;-1:-1:-1;;;48692:168:0;;15942:2:1;48692:168:0::1;::::0;::::1;15924:21:1::0;15981:2;15961:18;;;15954:30;16020:34;16000:18;;;15993:62;16091:26;16071:18;;;16064:54;16135:19;;48692:168:0::1;15740:420:1::0;48692:168:0::1;48873:21;48882:2;48886:7;48873:8;:21::i;:::-;48561:341;48477:425:::0;;:::o;52289:79::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;52346:7:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;52346:16:0;;::::1;::::0;;;::::1;::::0;;52289:79::o;53061:94::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;53127:12:::1;:22:::0;;-1:-1:-1;;;;;;53127:22:0::1;-1:-1:-1::0;;;;;53127:22:0;;;::::1;::::0;;;::::1;::::0;;53061:94::o;52092:100::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;52164:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52092:100:::0;:::o;47139:89::-;47183:7;47206:16;:6;1708:14;;1616:114;47206:16;47199:23;;47139:89;:::o;51506:94::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;51572:13:::1;:22:::0;51506:94::o;49085:352::-;8818:7;;-1:-1:-1;;;8818:7:0;;;;9072:9;9064:38;;;;-1:-1:-1;;;9064:38:0;;;;;;;:::i;:::-;49293:41:::1;7481:10:::0;49326:7:::1;49293:18;:41::i;:::-;49285:103;;;::::0;-1:-1:-1;;;49285:103:0;;15524:2:1;49285:103:0::1;::::0;::::1;15506:21:1::0;15563:2;15543:18;;;15536:30;15602:34;15582:18;;;15575:62;-1:-1:-1;;;15653:18:1;;;15646:47;15710:19;;49285:103:0::1;15322:413:1::0;49285:103:0::1;49401:28;49411:4;49417:2;49421:7;49401:9;:28::i;24626:289::-:0;24774:41;;;;;;;;;24805:10;24774:41;-1:-1:-1;;;;;24774:41:0;;;;;-1:-1:-1;;;24774:41:0;;;;;;;;;;;;;-1:-1:-1;;24904:5:0;;24876:24;;:5;:24;:::i;:::-;24875:34;;;;:::i;:::-;24859:50;;24767:148;24626:289;;;;;:::o;52464:207::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;52574:4:::1;:12:::0;;;;52593:15:::1;:35:::0;52635:13:::1;:30:::0;52464:207::o;51402:98::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;51470:15:::1;:24:::0;51402:98::o;52677:137::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;52722:7:::1;52743;11068:6:::0;;-1:-1:-1;;;;;11068:6:0;;10995:87;52743:7:::1;-1:-1:-1::0;;;;;52735:21:0::1;52764;52735:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52721:69;;;52805:2;52797:11;;;::::0;::::1;;52714:100;52677:137::o:0;47748:535::-;47850:11;46868:1;46854:11;:15;:52;;;;;46888:18;;46873:11;:33;;46854:52;46846:85;;;;-1:-1:-1;;;46846:85:0;;;;;;;:::i;:::-;46980:9;;46965:11;46946:16;:6;1708:14;;1616:114;46946:16;:30;;;;:::i;:::-;:43;;46938:76;;;;-1:-1:-1;;;46938:76:0;;;;;;;:::i;:::-;47064:15;;47048:11;47029:16;:6;1708:14;;1616:114;47029:16;:30;;;;:::i;:::-;:50;;47021:98;;;;-1:-1:-1;;;47021:98:0;;;;;;;:::i;:::-;47877:7:::1;::::0;;;::::1;;;47869:41;;;::::0;-1:-1:-1;;;47869:41:0;;20607:2:1;47869:41:0::1;::::0;::::1;20589:21:1::0;20646:2;20626:18;;;20619:30;-1:-1:-1;;;20665:18:1;;;20658:51;20726:18;;47869:41:0::1;20405:345:1::0;47869:41:0::1;47940:13;;47925:11;:28;;47917:69;;;::::0;-1:-1:-1;;;47917:69:0;;13305:2:1;47917:69:0::1;::::0;::::1;13287:21:1::0;13344:2;13324:18;;;13317:30;13383:29;13363:18;;;13356:57;13430:18;;47917:69:0::1;13103:351:1::0;47917:69:0::1;48021:11;48014:4;;:18;;;;:::i;:::-;48001:9;:31;;47993:62;;;::::0;-1:-1:-1;;;47993:62:0;;19842:2:1;47993:62:0::1;::::0;::::1;19824:21:1::0;19881:2;19861:18;;;19854:30;-1:-1:-1;;;19900:18:1;;;19893:48;19958:18;;47993:62:0::1;19640:342:1::0;47993:62:0::1;48067:10;::::0;::::1;;:18;;:10:::0;:18:::1;48064:173;;;48118:28;::::0;-1:-1:-1;;48135:10:0::1;6423:2:1::0;6419:15;6415:53;48118:28:0::1;::::0;::::1;6403:66:1::0;48093:12:0::1;::::0;6485::1;;48118:28:0::1;;;;;;;;;;;;48108:39;;;;;;48093:54;;48163:45;48182:9;;48163:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;48192:10:0::1;::::0;;-1:-1:-1;48203:4:0;;-1:-1:-1;48163:18:0::1;:45::i;:::-;48155:74;;;::::0;-1:-1:-1;;;48155:74:0;;14420:2:1;48155:74:0::1;::::0;::::1;14402:21:1::0;14459:2;14439:18;;;14432:30;-1:-1:-1;;;14478:18:1;;;14471:47;14535:18;;48155:74:0::1;14218:341:1::0;48155:74:0::1;48086:151;48064:173;48243:34;48253:10;48265:11;48243:9;:34::i;:::-;47748:535:::0;;;;:::o;51168:107::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;51240:16:::1;:29:::0;;-1:-1:-1;;;;;;51240:29:0::1;-1:-1:-1::0;;;;;51240:29:0;;;::::1;::::0;;;::::1;::::0;;51168:107::o;35932:185::-;36070:39;36087:4;36093:2;36097:7;36070:39;;;;;;;;;;;;:16;:39::i;49445:635::-;49520:16;49548:23;49574:17;49584:6;49574:9;:17::i;:::-;49548:43;;49598:30;49645:15;49631:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49631:30:0;-1:-1:-1;49598:63:0;-1:-1:-1;49693:1:0;49668:22;49737:309;49762:15;49744;:33;:64;;;;;49799:9;;49781:14;:27;;49744:64;49737:309;;;49819:25;49847:23;49855:14;49847:7;:23::i;:::-;49819:51;;49906:6;-1:-1:-1;;;;;49885:27:0;:17;-1:-1:-1;;;;;49885:27:0;;49881:131;;;49958:14;49925:13;49939:15;49925:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;49985:17;;;;:::i;:::-;;;;49881:131;50022:16;;;;:::i;:::-;;;;49810:236;49737:309;;;-1:-1:-1;50061:13:0;;49445:635;-1:-1:-1;;;;49445:635:0:o;51088:74::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;51144:4:::1;:12:::0;51088:74::o;51848:132::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;51936:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;45730:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52198:85::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;52258:10:::1;:19:::0;;;::::1;;;;-1:-1:-1::0;;52258:19:0;;::::1;::::0;;;::::1;::::0;;52198:85::o;45697:28::-;;;;;;;:::i;32907:239::-;32979:7;33015:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33015:16:0;33050:19;33042:73;;;;-1:-1:-1;;;33042:73:0;;16778:2:1;33042:73:0;;;16760:21:1;16817:2;16797:18;;;16790:30;16856:34;16836:18;;;16829:62;-1:-1:-1;;;16907:18:1;;;16900:39;16956:19;;33042:73:0;16576:405:1;32637:208:0;32709:7;-1:-1:-1;;;;;32737:19:0;;32729:74;;;;-1:-1:-1;;;32729:74:0;;16367:2:1;32729:74:0;;;16349:21:1;16406:2;16386:18;;;16379:30;16445:34;16425:18;;;16418:62;-1:-1:-1;;;16496:18:1;;;16489:40;16546:19;;32729:74:0;16165:406:1;32729:74:0;-1:-1:-1;;;;;;32821:16:0;;;;;:9;:16;;;;;;;32637:208::o;50900:72::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;50956:10:::1;:8;:10::i;:::-;50900:72::o:0;11646:103::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;11711:30:::1;11738:1;11711:18;:30::i;51742:100::-:0;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;51812:10:::1;:24:::0;51742:100::o;51986:::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;52058:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;51281:115::-:0;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;51357:19:::1;:33:::0;51281:115::o;33382:104::-;33438:13;33471:7;33464:14;;;;;:::i;47234:316::-;47299:11;46868:1;46854:11;:15;:52;;;;;46888:18;;46873:11;:33;;46854:52;46846:85;;;;-1:-1:-1;;;46846:85:0;;;;;;;:::i;:::-;46980:9;;46965:11;46946:16;:6;1708:14;;1616:114;46946:16;:30;;;;:::i;:::-;:43;;46938:76;;;;-1:-1:-1;;;46938:76:0;;;;;;;:::i;:::-;47064:15;;47048:11;47029:16;:6;1708:14;;1616:114;47029:16;:30;;;;:::i;:::-;:50;;47021:98;;;;-1:-1:-1;;;47021:98:0;;;;;;;:::i;:::-;47327:10:::1;::::0;::::1;::::0;::::1;;;47319:46;;;::::0;-1:-1:-1;;;47319:46:0;;18323:2:1;47319:46:0::1;::::0;::::1;18305:21:1::0;18362:2;18342:18;;;18335:30;18401:25;18381:18;;;18374:53;18444:18;;47319:46:0::1;18121:347:1::0;47319:46:0::1;11068:6:::0;;-1:-1:-1;;;;;11068:6:0;47400:10:::1;:21;47396:108;;47462:11;47455:4;;:18;;;;:::i;:::-;47442:9;:31;;47434:62;;;::::0;-1:-1:-1;;;47434:62:0;;19842:2:1;47434:62:0::1;::::0;::::1;19824:21:1::0;19881:2;19861:18;;;19854:30;-1:-1:-1;;;19900:18:1;;;19893:48;19958:18;;47434:62:0::1;19640:342:1::0;47434:62:0::1;47510:34;47520:10;47532:11;47510:9;:34::i;48908:169::-:0;8818:7;;-1:-1:-1;;;8818:7:0;;;;9072:9;9064:38;;;;-1:-1:-1;;;9064:38:0;;;;;;;:::i;:::-;49017:52:::1;7481:10:::0;49050:8:::1;49060;49017:18;:52::i;45768:31::-:0;;;;;;;:::i;51606:130::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;51690:18:::1;:40:::0;51606:130::o;36188:328::-;36363:41;7481:10;36396:7;36363:18;:41::i;:::-;36355:103;;;;-1:-1:-1;;;36355:103:0;;20189:2:1;36355:103:0;;;20171:21:1;20228:2;20208:18;;;20201:30;20267:34;20247:18;;;20240:62;-1:-1:-1;;;20318:18:1;;;20311:47;20375:19;;36355:103:0;19987:413:1;36355:103:0;36469:39;36483:4;36489:2;36493:7;36502:5;36469:13;:39::i;47556:180::-;47652:12;;-1:-1:-1;;;;;47652:12:0;47638:10;:26;47630:60;;;;-1:-1:-1;;;47630:60:0;;12954:2:1;47630:60:0;;;12936:21:1;12993:2;12973:18;;;12966:30;-1:-1:-1;;;13012:18:1;;;13005:52;13074:18;;47630:60:0;12752:346:1;47630:60:0;47697:33;47707:9;47718:11;47697:9;:33::i;52374:84::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;52433:10:::1;:19:::0;;-1:-1:-1;;52433:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52374:84::o;50086:494::-;38091:4;38115:16;;;:7;:16;;;;;;50185:13;;-1:-1:-1;;;;;38115:16:0;50210:98;;;;-1:-1:-1;;;50210:98:0;;18675:2:1;50210:98:0;;;18657:21:1;18714:2;18694:18;;;18687:30;18753:34;18733:18;;;18726:62;-1:-1:-1;;;18804:18:1;;;18797:45;18859:19;;50210:98:0;18473:411:1;50210:98:0;50321:8;;;;;;;50317:64;;50356:17;50349:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50086:494;;;:::o;50317:64::-;50389:28;50420:10;:8;:10::i;:::-;50389:41;;50475:1;50450:14;50444:28;:32;:130;;;;;;;;;;;;;;;;;50512:14;50528:19;:8;:17;:19::i;:::-;50549:9;50495:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50444:130;50437:137;50086:494;-1:-1:-1;;;50086:494:0:o;50828:68::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;50882:8:::1;:6;:8::i;51001:81::-:0;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;51059:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;51059:17:0;;::::1;::::0;;;::::1;::::0;;51001:81::o;48291:155::-;48377:11;46868:1;46854:11;:15;:52;;;;;46888:18;;46873:11;:33;;46854:52;46846:85;;;;-1:-1:-1;;;46846:85:0;;;;;;;:::i;:::-;46980:9;;46965:11;46946:16;:6;1708:14;;1616:114;46946:16;:30;;;;:::i;:::-;:43;;46938:76;;;;-1:-1:-1;;;46938:76:0;;;;;;;:::i;:::-;47064:15;;47048:11;47029:16;:6;1708:14;;1616:114;47029:16;:30;;;;:::i;:::-;:50;;47021:98;;;;-1:-1:-1;;;47021:98:0;;;;;;;:::i;:::-;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23:::1;11207:68;;;;-1:-1:-1::0;;;11207:68:0::1;;;;;;;:::i;:::-;48407:33:::2;48417:9;48428:11;48407:9;:33::i;11904:201::-:0;11068:6;;-1:-1:-1;;;;;11068:6:0;7481:10;11215:23;11207:68;;;;-1:-1:-1;;;11207:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11993:22:0;::::1;11985:73;;;::::0;-1:-1:-1;;;11985:73:0;;11435:2:1;11985:73:0::1;::::0;::::1;11417:21:1::0;11474:2;11454:18;;;11447:30;11513:34;11493:18;;;11486:62;-1:-1:-1;;;11564:18:1;;;11557:36;11610:19;;11985:73:0::1;11233:402:1::0;11985:73:0::1;12069:28;12088:8;12069:18;:28::i;24947:234::-:0;25057:4;-1:-1:-1;;;;;;25087:41:0;;-1:-1:-1;;;25087:41:0;;:88;;;25139:36;25163:11;25139:23;:36::i;42172:174::-;42247:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42247:29:0;-1:-1:-1;;;;;42247:29:0;;;;;;;;:24;;42301:23;42247:24;42301:14;:23::i;:::-;-1:-1:-1;;;;;42292:46:0;;;;;;;;;;;42172:174;;:::o;38320:348::-;38413:4;38115:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38115:16:0;38430:73;;;;-1:-1:-1;;;38430:73:0;;14766:2:1;38430:73:0;;;14748:21:1;14805:2;14785:18;;;14778:30;14844:34;14824:18;;;14817:62;-1:-1:-1;;;14895:18:1;;;14888:42;14947:19;;38430:73:0;14564:408:1;38430:73:0;38514:13;38530:23;38545:7;38530:14;:23::i;:::-;38514:39;;38583:5;-1:-1:-1;;;;;38572:16:0;:7;-1:-1:-1;;;;;38572:16:0;;:51;;;;38616:7;-1:-1:-1;;;;;38592:31:0;:20;38604:7;38592:11;:20::i;:::-;-1:-1:-1;;;;;38592:31:0;;38572:51;:87;;;-1:-1:-1;;;;;;35412:25:0;;;35388:4;35412:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38627:32;38564:96;38320:348;-1:-1:-1;;;;38320:348:0:o;41429:625::-;41588:4;-1:-1:-1;;;;;41561:31:0;:23;41576:7;41561:14;:23::i;:::-;-1:-1:-1;;;;;41561:31:0;;41553:81;;;;-1:-1:-1;;;41553:81:0;;11842:2:1;41553:81:0;;;11824:21:1;11881:2;11861:18;;;11854:30;11920:34;11900:18;;;11893:62;-1:-1:-1;;;11971:18:1;;;11964:35;12016:19;;41553:81:0;11640:401:1;41553:81:0;-1:-1:-1;;;;;41653:16:0;;41645:65;;;;-1:-1:-1;;;41645:65:0;;13661:2:1;41645:65:0;;;13643:21:1;13700:2;13680:18;;;13673:30;13739:34;13719:18;;;13712:62;-1:-1:-1;;;13790:18:1;;;13783:34;13834:19;;41645:65:0;13459:400:1;41645:65:0;41827:29;41844:1;41848:7;41827:8;:29::i;:::-;-1:-1:-1;;;;;41869:15:0;;;;;;:9;:15;;;;;:20;;41888:1;;41869:15;:20;;41888:1;;41869:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41900:13:0;;;;;;:9;:13;;;;;:18;;41917:1;;41900:13;:18;;41917:1;;41900:18;:::i;:::-;;;;-1:-1:-1;;41929:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41929:21:0;-1:-1:-1;;;;;41929:21:0;;;;;;;;;41968:27;;41929:16;;41968:27;;;;;;;48561:341:::1;48477:425:::0;;:::o;3132:190::-;3257:4;3310;3281:25;3294:5;3301:4;3281:12;:25::i;:::-;:33;;3132:190;-1:-1:-1;;;;3132:190:0:o;52820:206::-;52902:9;52897:124;52921:11;52917:1;:15;52897:124;;;52948:18;:6;1827:19;;1845:1;1827:19;;;1738:127;52948:18;52975:38;52985:9;52996:16;:6;1708:14;;1616:114;52996:16;52975:9;:38::i;:::-;52934:3;;;;:::i;:::-;;;;52897:124;;9806:120;8818:7;;-1:-1:-1;;;8818:7:0;;;;9342:41;;;;-1:-1:-1;;;9342:41:0;;10667:2:1;9342:41:0;;;10649:21:1;10706:2;10686:18;;;10679:30;-1:-1:-1;;;10725:18:1;;;10718:50;10785:18;;9342:41:0;10465:344:1;9342:41:0;9865:7:::1;:15:::0;;-1:-1:-1;;;;9865:15:0::1;::::0;;9896:22:::1;7481:10:::0;9905:12:::1;9896:22;::::0;-1:-1:-1;;;;;8414:32:1;;;8396:51;;8384:2;8369:18;9896:22:0::1;;;;;;;9806:120::o:0;12265:191::-;12358:6;;;-1:-1:-1;;;;;12375:17:0;;;-1:-1:-1;;;;;;12375:17:0;;;;;;;12408:40;;12358:6;;;12375:17;12358:6;;12408:40;;12339:16;;12408:40;12328:128;12265:191;:::o;42488:315::-;42643:8;-1:-1:-1;;;;;42634:17:0;:5;-1:-1:-1;;;;;42634:17:0;;;42626:55;;;;-1:-1:-1;;;42626:55:0;;14066:2:1;42626:55:0;;;14048:21:1;14105:2;14085:18;;;14078:30;14144:27;14124:18;;;14117:55;14189:18;;42626:55:0;13864:349:1;42626:55:0;-1:-1:-1;;;;;42692:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;42692:46:0;;;;;;;;;;42754:41;;10007::1;;;42754::0;;9980:18:1;42754:41:0;;;;;;;42488:315;;;:::o;37398:::-;37555:28;37565:4;37571:2;37575:7;37555:9;:28::i;:::-;37602:48;37625:4;37631:2;37635:7;37644:5;37602:22;:48::i;:::-;37594:111;;;;-1:-1:-1;;;37594:111:0;;;;;;;:::i;53161:104::-;53221:13;53250:9;53243:16;;;;;:::i;4963:723::-;5019:13;5240:10;5236:53;;-1:-1:-1;;5267:10:0;;;;;;;;;;;;-1:-1:-1;;;5267:10:0;;;;;4963:723::o;5236:53::-;5314:5;5299:12;5355:78;5362:9;;5355:78;;5388:8;;;;:::i;:::-;;-1:-1:-1;5411:10:0;;-1:-1:-1;5419:2:0;5411:10;;:::i;:::-;;;5355:78;;;5443:19;5475:6;5465:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5465:17:0;;5443:39;;5493:154;5500:10;;5493:154;;5527:11;5537:1;5527:11;;:::i;:::-;;-1:-1:-1;5596:10:0;5604:2;5596:5;:10;:::i;:::-;5583:24;;:2;:24;:::i;:::-;5570:39;;5553:6;5560;5553:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5553:56:0;;;;;;;;-1:-1:-1;5624:11:0;5633:2;5624:11;;:::i;:::-;;;5493:154;;9547:118;8818:7;;-1:-1:-1;;;8818:7:0;;;;9072:9;9064:38;;;;-1:-1:-1;;;9064:38:0;;;;;;;:::i;:::-;9607:7:::1;:14:::0;;-1:-1:-1;;;;9607:14:0::1;-1:-1:-1::0;;;9607:14:0::1;::::0;;9637:20:::1;9644:12;7481:10:::0;;7401:98;32268:305;32370:4;-1:-1:-1;;;;;;32407:40:0;;-1:-1:-1;;;32407:40:0;;:105;;-1:-1:-1;;;;;;;32464:48:0;;-1:-1:-1;;;32464:48:0;32407:105;:158;;;-1:-1:-1;;;;;;;;;;23888:40:0;;;32529:36;23779:157;3684:675;3767:7;3810:4;3767:7;3825:497;3849:5;:12;3845:1;:16;3825:497;;;3883:20;3906:5;3912:1;3906:8;;;;;;;;:::i;:::-;;;;;;;3883:31;;3949:12;3933;:28;3929:382;;4435:13;4485:15;;;4521:4;4514:15;;;4568:4;4552:21;;4061:57;;3929:382;;;4435:13;4485:15;;;4521:4;4514:15;;;4568:4;4552:21;;4238:57;;3929:382;-1:-1:-1;3863:3:0;;;;:::i;:::-;;;;3825:497;;;-1:-1:-1;4339:12:0;3684:675;-1:-1:-1;;;3684:675:0:o;39010:110::-;39086:26;39096:2;39100:7;39086:26;;;;;;;;;;;;:9;:26::i;43368:799::-;43523:4;-1:-1:-1;;;;;43544:13:0;;13991:19;:23;43540:620;;43580:72;;-1:-1:-1;;;43580:72:0;;-1:-1:-1;;;;;43580:36:0;;;;;:72;;7481:10;;43631:4;;43637:7;;43646:5;;43580:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43580:72:0;;;;;;;;-1:-1:-1;;43580:72:0;;;;;;;;;;;;:::i;:::-;;;43576:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43822:13:0;;43818:272;;43865:60;;-1:-1:-1;;;43865:60:0;;;;;;;:::i;43818:272::-;44040:6;44034:13;44025:6;44021:2;44017:15;44010:38;43576:529;-1:-1:-1;;;;;;43703:51:0;-1:-1:-1;;;43703:51:0;;-1:-1:-1;43696:58:0;;43540:620;-1:-1:-1;44144:4:0;43368:799;;;;;;:::o;39347:321::-;39477:18;39483:2;39487:7;39477:5;:18::i;:::-;39528:54;39559:1;39563:2;39567:7;39576:5;39528:22;:54::i;:::-;39506:154;;;;-1:-1:-1;;;39506:154:0;;;;;;;:::i;40004:439::-;-1:-1:-1;;;;;40084:16:0;;40076:61;;;;-1:-1:-1;;;40076:61:0;;17188:2:1;40076:61:0;;;17170:21:1;;;17207:18;;;17200:30;17266:34;17246:18;;;17239:62;17318:18;;40076:61:0;16986:356:1;40076:61:0;38091:4;38115:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38115:16:0;:30;40148:58;;;;-1:-1:-1;;;40148:58:0;;12248:2:1;40148:58:0;;;12230:21:1;12287:2;12267:18;;;12260:30;12326;12306:18;;;12299:58;12374:18;;40148:58:0;12046:352:1;40148:58:0;-1:-1:-1;;;;;40277:13:0;;;;;;:9;:13;;;;;:18;;40294:1;;40277:13;:18;;40294:1;;40277:18;:::i;:::-;;;;-1:-1:-1;;40306:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40306:21:0;-1:-1:-1;;;;;40306:21:0;;;;;;;;40345:33;;40306:16;;;40345:33;;40306:16;;40345:33;52164:22:::1;52092:100:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:689::-;3066:6;3074;3082;3135:2;3123:9;3114:7;3110:23;3106:32;3103:52;;;3151:1;3148;3141:12;3103:52;3191:9;3178:23;3220:18;3261:2;3253:6;3250:14;3247:34;;;3277:1;3274;3267:12;3247:34;3315:6;3304:9;3300:22;3290:32;;3360:7;3353:4;3349:2;3345:13;3341:27;3331:55;;3382:1;3379;3372:12;3331:55;3422:2;3409:16;3448:2;3440:6;3437:14;3434:34;;;3464:1;3461;3454:12;3434:34;3519:7;3512:4;3502:6;3499:1;3495:14;3491:2;3487:23;3483:34;3480:47;3477:67;;;3540:1;3537;3530:12;3477:67;3571:4;3563:13;;;;3595:6;;-1:-1:-1;3633:20:1;;;;3620:34;;2971:689;-1:-1:-1;;;;2971:689:1:o;3665:180::-;3721:6;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:26;3829:9;3813:26;:::i;3850:180::-;3909:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:52;;;3978:1;3975;3968:12;3930:52;-1:-1:-1;4001:23:1;;3850:180;-1:-1:-1;3850:180:1:o;4035:245::-;4093:6;4146:2;4134:9;4125:7;4121:23;4117:32;4114:52;;;4162:1;4159;4152:12;4114:52;4201:9;4188:23;4220:30;4244:5;4220:30;:::i;4285:249::-;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4455:9;4449:16;4474:30;4498:5;4474:30;:::i;4539:450::-;4608:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:52;;;4677:1;4674;4667:12;4629:52;4717:9;4704:23;4750:18;4742:6;4739:30;4736:50;;;4782:1;4779;4772:12;4736:50;4805:22;;4858:4;4850:13;;4846:27;-1:-1:-1;4836:55:1;;4887:1;4884;4877:12;4836:55;4910:73;4975:7;4970:2;4957:16;4952:2;4948;4944:11;4910:73;:::i;5179:254::-;5247:6;5255;5308:2;5296:9;5287:7;5283:23;5279:32;5276:52;;;5324:1;5321;5314:12;5276:52;5360:9;5347:23;5337:33;;5389:38;5423:2;5412:9;5408:18;5389:38;:::i;5438:248::-;5506:6;5514;5567:2;5555:9;5546:7;5542:23;5538:32;5535:52;;;5583:1;5580;5573:12;5535:52;-1:-1:-1;;5606:23:1;;;5676:2;5661:18;;;5648:32;;-1:-1:-1;5438:248:1:o;5691:316::-;5768:6;5776;5784;5837:2;5825:9;5816:7;5812:23;5808:32;5805:52;;;5853:1;5850;5843:12;5805:52;-1:-1:-1;;5876:23:1;;;5946:2;5931:18;;5918:32;;-1:-1:-1;5997:2:1;5982:18;;;5969:32;;5691:316;-1:-1:-1;5691:316:1:o;6012:257::-;6053:3;6091:5;6085:12;6118:6;6113:3;6106:19;6134:63;6190:6;6183:4;6178:3;6174:14;6167:4;6160:5;6156:16;6134:63;:::i;:::-;6251:2;6230:15;-1:-1:-1;;6226:29:1;6217:39;;;;6258:4;6213:50;;6012:257;-1:-1:-1;;6012:257:1:o;6508:1527::-;6732:3;6770:6;6764:13;6796:4;6809:51;6853:6;6848:3;6843:2;6835:6;6831:15;6809:51;:::i;:::-;6923:13;;6882:16;;;;6945:55;6923:13;6882:16;6967:15;;;6945:55;:::i;:::-;7089:13;;7022:20;;;7062:1;;7149;7171:18;;;;7224;;;;7251:93;;7329:4;7319:8;7315:19;7303:31;;7251:93;7392:2;7382:8;7379:16;7359:18;7356:40;7353:167;;;-1:-1:-1;;;7419:33:1;;7475:4;7472:1;7465:15;7505:4;7426:3;7493:17;7353:167;7536:18;7563:110;;;;7687:1;7682:328;;;;7529:481;;7563:110;-1:-1:-1;;7598:24:1;;7584:39;;7643:20;;;;-1:-1:-1;7563:110:1;;7682:328;21414:1;21407:14;;;21451:4;21438:18;;7777:1;7791:169;7805:8;7802:1;7799:15;7791:169;;;7887:14;;7872:13;;;7865:37;7930:16;;;;7822:10;;7791:169;;;7795:3;;7991:8;7984:5;7980:20;7973:27;;7529:481;-1:-1:-1;8026:3:1;;6508:1527;-1:-1:-1;;;;;;;;;;;6508:1527:1:o;8458:488::-;-1:-1:-1;;;;;8727:15:1;;;8709:34;;8779:15;;8774:2;8759:18;;8752:43;8826:2;8811:18;;8804:34;;;8874:3;8869:2;8854:18;;8847:31;;;8652:4;;8895:45;;8920:19;;8912:6;8895:45;:::i;:::-;8887:53;8458:488;-1:-1:-1;;;;;;8458:488:1:o;9230:632::-;9401:2;9453:21;;;9523:13;;9426:18;;;9545:22;;;9372:4;;9401:2;9624:15;;;;9598:2;9583:18;;;9372:4;9667:169;9681:6;9678:1;9675:13;9667:169;;;9742:13;;9730:26;;9811:15;;;;9776:12;;;;9703:1;9696:9;9667:169;;;-1:-1:-1;9853:3:1;;9230:632;-1:-1:-1;;;;;;9230:632:1:o;10241:219::-;10390:2;10379:9;10372:21;10353:4;10410:44;10450:2;10439:9;10435:18;10427:6;10410:44;:::i;10814:414::-;11016:2;10998:21;;;11055:2;11035:18;;;11028:30;11094:34;11089:2;11074:18;;11067:62;-1:-1:-1;;;11160:2:1;11145:18;;11138:48;11218:3;11203:19;;10814:414::o;12403:344::-;12605:2;12587:21;;;12644:2;12624:18;;;12617:30;-1:-1:-1;;;12678:2:1;12663:18;;12656:50;12738:2;12723:18;;12403:344::o;14977:340::-;15179:2;15161:21;;;15218:2;15198:18;;;15191:30;-1:-1:-1;;;15252:2:1;15237:18;;15230:46;15308:2;15293:18;;14977:340::o;17760:356::-;17962:2;17944:21;;;17981:18;;;17974:30;18040:34;18035:2;18020:18;;18013:62;18107:2;18092:18;;17760:356::o;19291:344::-;19493:2;19475:21;;;19532:2;19512:18;;;19505:30;-1:-1:-1;;;19566:2:1;19551:18;;19544:50;19626:2;19611:18;;19291:344::o;20755:399::-;20957:2;20939:21;;;20996:2;20976:18;;;20969:30;21035:34;21030:2;21015:18;;21008:62;-1:-1:-1;;;21101:2:1;21086:18;;21079:33;21144:3;21129:19;;20755:399::o;21467:128::-;21507:3;21538:1;21534:6;21531:1;21528:13;21525:39;;;21544:18;;:::i;:::-;-1:-1:-1;21580:9:1;;21467:128::o;21600:120::-;21640:1;21666;21656:35;;21671:18;;:::i;:::-;-1:-1:-1;21705:9:1;;21600:120::o;21725:168::-;21765:7;21831:1;21827;21823:6;21819:14;21816:1;21813:21;21808:1;21801:9;21794:17;21790:45;21787:71;;;21838:18;;:::i;:::-;-1:-1:-1;21878:9:1;;21725:168::o;21898:125::-;21938:4;21966:1;21963;21960:8;21957:34;;;21971:18;;:::i;:::-;-1:-1:-1;22008:9:1;;21898:125::o;22028:258::-;22100:1;22110:113;22124:6;22121:1;22118:13;22110:113;;;22200:11;;;22194:18;22181:11;;;22174:39;22146:2;22139:10;22110:113;;;22241:6;22238:1;22235:13;22232:48;;;-1:-1:-1;;22276:1:1;22258:16;;22251:27;22028:258::o;22291:380::-;22370:1;22366:12;;;;22413;;;22434:61;;22488:4;22480:6;22476:17;22466:27;;22434:61;22541:2;22533:6;22530:14;22510:18;22507:38;22504:161;;;22587:10;22582:3;22578:20;22575:1;22568:31;22622:4;22619:1;22612:15;22650:4;22647:1;22640:15;22504:161;;22291:380;;;:::o;22676:135::-;22715:3;-1:-1:-1;;22736:17:1;;22733:43;;;22756:18;;:::i;:::-;-1:-1:-1;22803:1:1;22792:13;;22676:135::o;22816:112::-;22848:1;22874;22864:35;;22879:18;;:::i;:::-;-1:-1:-1;22913:9:1;;22816:112::o;22933:127::-;22994:10;22989:3;22985:20;22982:1;22975:31;23025:4;23022:1;23015:15;23049:4;23046:1;23039:15;23065:127;23126:10;23121:3;23117:20;23114:1;23107:31;23157:4;23154:1;23147:15;23181:4;23178:1;23171:15;23197:127;23258:10;23253:3;23249:20;23246:1;23239:31;23289:4;23286:1;23279:15;23313:4;23310:1;23303:15;23329:127;23390:10;23385:3;23381:20;23378:1;23371:31;23421:4;23418:1;23411:15;23445:4;23442:1;23435:15;23461:131;-1:-1:-1;;;;;;23535:32:1;;23525:43;;23515:71;;23582:1;23579;23572:12
Swarm Source
ipfs://95f11ef66a2f393f26ab45044f3da14895ecfdf73b19ce2331964dcd9d30babb
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.