More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 3,122 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17955710 | 49 days ago | IN | 0 CRO | 0.505 | ||||
Approve | 17955702 | 49 days ago | IN | 0 CRO | 0.505 | ||||
Approve | 17955694 | 49 days ago | IN | 0 CRO | 0.505 | ||||
Approve | 17955687 | 49 days ago | IN | 0 CRO | 0.505 | ||||
Set Approval For... | 16726352 | 130 days ago | IN | 0 CRO | 0.2334716 | ||||
Set Approval For... | 16570310 | 140 days ago | IN | 0 CRO | 0.23340225 | ||||
Set Approval For... | 15382470 | 218 days ago | IN | 0 CRO | 0.2334716 | ||||
Approve | 14692141 | 263 days ago | IN | 0 CRO | 0.88375 | ||||
Set Approval For... | 14239436 | 293 days ago | IN | 0 CRO | 0.2334716 | ||||
Set Approval For... | 13902090 | 315 days ago | IN | 0 CRO | 0.147056 | ||||
Set Approval For... | 13902089 | 315 days ago | IN | 0 CRO | 0.147056 | ||||
Set Approval For... | 13892956 | 316 days ago | IN | 0 CRO | 0.14701232 | ||||
Set Approval For... | 13892956 | 316 days ago | IN | 0 CRO | 0.14701232 | ||||
Set Approval For... | 13742345 | 326 days ago | IN | 0 CRO | 0.132916 | ||||
Set Approval For... | 13742343 | 326 days ago | IN | 0 CRO | 0.132916 | ||||
Set Approval For... | 13726255 | 327 days ago | IN | 0 CRO | 0.147056 | ||||
Set Approval For... | 13726254 | 327 days ago | IN | 0 CRO | 0.147056 | ||||
Set Approval For... | 13726252 | 327 days ago | IN | 0 CRO | 0.147056 | ||||
Approve | 13293910 | 355 days ago | IN | 0 CRO | 0.88375 | ||||
Set Approval For... | 13187931 | 362 days ago | IN | 0 CRO | 0.14701232 | ||||
Set Approval For... | 13187929 | 362 days ago | IN | 0 CRO | 0.14696995 | ||||
Set Approval For... | 13175515 | 363 days ago | IN | 0 CRO | 0.12277952 | ||||
Set Approval For... | 13170512 | 363 days ago | IN | 0 CRO | 0.122816 | ||||
Set Approval For... | 12988797 | 375 days ago | IN | 0 CRO | 0.4669432 | ||||
Set Approval For... | 12923825 | 379 days ago | IN | 0 CRO | 0.4668045 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
6507924 | 798 days ago | 32,258 CRO | ||||
2438785 | 1067 days ago | 225 CRO | ||||
2438783 | 1067 days ago | 225 CRO | ||||
2438782 | 1067 days ago | 225 CRO | ||||
2438782 | 1067 days ago | 225 CRO | ||||
2438781 | 1067 days ago | 450 CRO | ||||
2438781 | 1067 days ago | 225 CRO | ||||
2438779 | 1067 days ago | 265.5 CRO | ||||
2438779 | 1067 days ago | 265.5 CRO | ||||
2438779 | 1067 days ago | 225 CRO | ||||
2438779 | 1067 days ago | 225 CRO | ||||
2438779 | 1067 days ago | 225 CRO | ||||
2438778 | 1067 days ago | 265.5 CRO | ||||
2438777 | 1067 days ago | 450 CRO | ||||
2438776 | 1067 days ago | 225 CRO | ||||
2438774 | 1067 days ago | 225 CRO | ||||
2438774 | 1067 days ago | 225 CRO | ||||
2438773 | 1067 days ago | 265.5 CRO | ||||
2438773 | 1067 days ago | 225 CRO | ||||
2438771 | 1067 days ago | 225 CRO | ||||
2438769 | 1067 days ago | 225 CRO | ||||
2438769 | 1067 days ago | 265.5 CRO | ||||
2438769 | 1067 days ago | 225 CRO | ||||
2438769 | 1067 days ago | 225 CRO | ||||
2438767 | 1067 days ago | 225 CRO |
Loading...
Loading
Contract Name:
CroClubWereWolf
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-04-21 */ // Sources flattened with hardhat v2.8.4 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // 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 contracts/SafeMathLite.sol pragma solidity ^0.8.4; library SafeMathLite{ /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } } // File contracts/SafePct.sol pragma solidity ^0.8.4; /** * @dev Compute percentages safely without phantom overflows. * * Intermediate operations can overflow even when the result will always * fit into computed type. Developers usually * assume that overflows raise errors. `SafePct` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafePct { using SafeMathLite for uint256; /** * Requirements: * * - intermediate operations must revert on overflow */ function mulDiv(uint256 x, uint256 y, uint256 z) internal pure returns (uint256) { require(z > 0, "Division by zero"); if (x == 0) return 0; uint256 xy = x * y; if (xy / x == y) { // no overflow happened - same as in SafeMath mul return xy / z; } //slither-disable-next-line divide-before-multiply uint256 a = x / z; uint256 b = x % z; // x = a * z + b //slither-disable-next-line divide-before-multiply uint256 c = y / z; uint256 d = y % z; // y = c * z + d return (a.mul(c).mul(z)).add(a.mul(d)).add(b.mul(c)).add(b.mul(d).div(z)); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // 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/token/ERC721/[email protected] // 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/[email protected] // 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/token/ERC721/extensions/[email protected] // 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/utils/[email protected] // 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/utils/[email protected] // 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/utils/[email protected] // 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/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/access/[email protected] // 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/security/[email protected] // 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/security/[email protected] // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File contracts/NewBaseDrop.sol pragma solidity ^0.8.4; abstract contract Market { function isMember(address user) public view virtual returns (bool); function addToEscrow(address _address) external virtual payable; } abstract contract BaseDrop is ERC721Enumerable, Ownable, Pausable, ReentrancyGuard { using Address for address payable; address public artist; uint128 constant internal SCALE = 10000; uint128 internal fee = 2500; uint16[] internal order; address public marketContract; function isMember(address _address) public view returns (bool) { return Market(marketContract).isMember(_address); } function payDirect(uint256 amount) internal { Market(marketContract).addToEscrow{value: amount}(artist); } // The following functions are overrides required by Solidity. function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view override returns (bool) { return super.supportsInterface(interfaceId); } function withdraw() public virtual onlyOwner{ payable(msg.sender).sendValue(address(this).balance); } function pause() public onlyOwner{ _pause(); } function unpause() public onlyOwner{ _unpause(); } } // File contracts/interfaces/IDrop.sol pragma solidity ^0.8.4; interface IDrop { struct Info { uint256 regularCost; uint256 memberCost; uint256 whitelistCost; uint256 maxSupply; uint256 totalSupply; uint256 maxMintPerAddress; uint256 maxMintPerTx; } function mintCost(address _minter) external view returns(uint256); function canMint(address _minter) external view returns (uint256); function mint(uint256 _amount) external payable; function maxSupply() external view returns (uint256); function getInfo() external view returns (Info memory); } // File contracts/drops/CroClubWereWolf.sol pragma solidity ^0.8.4; contract CroClubWereWolf is IDrop, BaseDrop { using Counters for Counters.Counter; using SafePct for uint256; using SafeMathLite for uint256; Counters.Counter public _tokenIdCounter; uint256 private memberCost = 250 ether; uint256 private regularCost = 295 ether; uint64 constant MAX_TOKENS = 1500; uint8 constant MAX_MINTAMOUNT = 10; uint8 private currentChunkIndex; string baseURI = "https://croclubs.mypinata.cloud/ipfs/Qmd1mjAzHnGhUC71t9QYsJt2Xo2MLyzGbXb7JzgvcFtwqU"; constructor(address _marketContract, address _artist) ERC721("CroClubs - Werewolf", "CCW") { marketContract = _marketContract; artist = _artist; fee = 1000; } function mintCost(address _minter) external override view returns(uint256) { if (isMember(_minter)) { return memberCost; } else { return regularCost; } } function getLen() external view returns(uint) { return order.length; } function setSequnceChunk(uint8 _chunkIndex, uint16[] calldata _chunk) external onlyOwner { require(currentChunkIndex <= _chunkIndex, "chunkIndex exists"); if (_chunkIndex == 0) { order = _chunk; } else { uint len = _chunk.length; for(uint i = 0; i < len; i ++) { order.push(_chunk[i]); } } currentChunkIndex = _chunkIndex + 1; } function mintForSpecial(address _to, uint256 amount) external onlyOwner { for (uint256 i = 0; i < amount; i ++) { safeMint(_to); } } function setMemberCost(uint256 _cost) external onlyOwner { memberCost = _cost; } function setRegularCost(uint256 _cost) external onlyOwner { regularCost = _cost; } function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } function mint(uint256 _amount) external override payable whenNotPaused { require(_amount <= MAX_MINTAMOUNT, "not mint more than max amount"); uint256 price; bool _isMember = isMember(msg.sender); if(_isMember){ price = memberCost.mul(_amount); } else { price = regularCost.mul(_amount); } require(msg.value >= price, "not enough funds"); uint256 amountFee = price.mulDiv(fee, SCALE); for(uint256 i = 0; i < _amount; i++){ safeMint(msg.sender); } payDirect(price - amountFee); } function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = string(abi.encodePacked(baseURI, "/", Strings.toString(_tokenId), ".json")); return _tokenURI; } function safeMint(address _to) private { uint256 tokenId; tokenId = _tokenIdCounter.current(); require(tokenId < MAX_TOKENS, "sold out!"); _tokenIdCounter.increment(); _safeMint(_to, order[tokenId]); } function maxSupply() external override pure returns (uint256) { return MAX_TOKENS; } function canMint(address) external override pure returns (uint256) { return MAX_MINTAMOUNT; } function getInfo() external override view returns (Info memory) { Info memory allInfo; allInfo.regularCost = regularCost; allInfo.memberCost = memberCost; allInfo.maxSupply = MAX_TOKENS; allInfo.totalSupply = super.totalSupply(); allInfo.maxMintPerTx = MAX_MINTAMOUNT; return allInfo; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_marketContract","type":"address"},{"internalType":"address","name":"_artist","type":"address"}],"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":"_tokenIdCounter","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"canMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInfo","outputs":[{"components":[{"internalType":"uint256","name":"regularCost","type":"uint256"},{"internalType":"uint256","name":"memberCost","type":"uint256"},{"internalType":"uint256","name":"whitelistCost","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"maxMintPerAddress","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"internalType":"struct IDrop.Info","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isMember","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintForSpecial","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setMemberCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setRegularCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_chunkIndex","type":"uint8"},{"internalType":"uint16[]","name":"_chunk","type":"uint16[]"}],"name":"setSequnceChunk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600d80546001600160801b0319166109c4179055680d8d726b7177a80000601155680ffdf28905e43c0000601255610100604052605360808181529062002e8260a03980516200005891601491602090910190620001ca565b503480156200006657600080fd5b5060405162002ed538038062002ed583398101604081905262000089916200028d565b604080518082018252601381527f43726f436c756273202d2057657265776f6c660000000000000000000000000060208083019182528351808501909452600384526243435760e81b908401528151919291620000e991600091620001ca565b508051620000ff906001906020840190620001ca565b5050506200011c620001166200017460201b60201c565b62000178565b600a805460ff60a01b191690556001600b55600f80546001600160a01b039384166001600160a01b031991821617909155600c8054929093169116179055600d80546001600160801b0319166103e817905562000301565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001d890620002c4565b90600052602060002090601f016020900481019282620001fc576000855562000247565b82601f106200021757805160ff191683800117855562000247565b8280016001018555821562000247579182015b82811115620002475782518255916020019190600101906200022a565b506200025592915062000259565b5090565b5b808211156200025557600081556001016200025a565b80516001600160a01b03811681146200028857600080fd5b919050565b60008060408385031215620002a0578182fd5b620002ab8362000270565b9150620002bb6020840162000270565b90509250929050565b600181811c90821680620002d957607f821691505b60208210811415620002fb57634e487b7160e01b600052602260045260246000fd5b50919050565b612b7180620003116000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb011461066b578063dc09e92314610680578063e1ec6294146106a0578063e985e9c5146106c0578063f2fde38b1461070957600080fd5b8063a22cb465146105ca578063a230c524146105ea578063b88d4fde1461060a578063c2ba47441461062a578063c87b56dd1461064b57600080fd5b806384c4bd4b116100f257806384c4bd4b1461054d5780638da5cb5b1461056457806395d89b4114610582578063a0712d6814610597578063a1794bcd146105aa57600080fd5b80636352211e146104e357806370a0823114610503578063715018a6146105235780638456cb591461053857600080fd5b80633ccfd60b116101b15780634ddc302c116101755780634ddc302c146103f95780634f6ccce71461041957806355f804b3146104395780635a9b0b89146104595780635c975abb146104c457600080fd5b80633ccfd60b1461037a5780633f4ba83a1461038f57806342842e0e146103a457806343bc1612146103c45780634a90be57146103e457600080fd5b806318160ddd116101f857806318160ddd146102db57806323b872dd146102fa5780632acc659e1461031a5780632f745c591461033a5780633b3c523a1461035a57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a61024536600461263e565b610729565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461073a565b60405161025691906128cd565b34801561028d57600080fd5b506102a161029c3660046126de565b6107cc565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d43660046125f9565b610866565b005b3480156102e757600080fd5b506008545b604051908152602001610256565b34801561030657600080fd5b506102d961031536600461250f565b61097c565b34801561032657600080fd5b506102ec6103353660046124c3565b6109ad565b34801561034657600080fd5b506102ec6103553660046125f9565b6109d2565b34801561036657600080fd5b506102d96103753660046126f6565b610a68565b34801561038657600080fd5b506102d9610bae565b34801561039b57600080fd5b506102d9610be4565b3480156103b057600080fd5b506102d96103bf36600461250f565b610c16565b3480156103d057600080fd5b50600c546102a1906001600160a01b031681565b3480156103f057600080fd5b50600e546102ec565b34801561040557600080fd5b506102d96104143660046125f9565b610c31565b34801561042557600080fd5b506102ec6104343660046126de565b610c81565b34801561044557600080fd5b506102d9610454366004612676565b610d22565b34801561046557600080fd5b5061046e610d63565b6040516102569190600060e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015292915050565b3480156104d057600080fd5b50600a54600160a01b900460ff1661024a565b3480156104ef57600080fd5b506102a16104fe3660046126de565b610e0c565b34801561050f57600080fd5b506102ec61051e3660046124c3565b610e83565b34801561052f57600080fd5b506102d9610f0a565b34801561054457600080fd5b506102d9610f3e565b34801561055957600080fd5b506010546102ec9081565b34801561057057600080fd5b50600a546001600160a01b03166102a1565b34801561058e57600080fd5b50610274610f70565b6102d96105a53660046126de565b610f7f565b3480156105b657600080fd5b50600f546102a1906001600160a01b031681565b3480156105d657600080fd5b506102d96105e53660046125c3565b6110ff565b3480156105f657600080fd5b5061024a6106053660046124c3565b61110a565b34801561061657600080fd5b506102d961062536600461254a565b611188565b34801561063657600080fd5b506102ec6106453660046124c3565b50600a90565b34801561065757600080fd5b506102746106663660046126de565b6111ba565b34801561067757600080fd5b506105dc6102ec565b34801561068c57600080fd5b506102d961069b3660046126de565b61126e565b3480156106ac57600080fd5b506102d96106bb3660046126de565b61129d565b3480156106cc57600080fd5b5061024a6106db3660046124dd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561071557600080fd5b506102d96107243660046124c3565b6112cc565b600061073482611367565b92915050565b60606000805461074990612a6b565b80601f016020809104026020016040519081016040528092919081815260200182805461077590612a6b565b80156107c25780601f10610797576101008083540402835291602001916107c2565b820191906000526020600020905b8154815290600101906020018083116107a557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661084a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087182610e0c565b9050806001600160a01b0316836001600160a01b031614156108df5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610841565b336001600160a01b03821614806108fb57506108fb81336106db565b61096d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610841565b610977838361138c565b505050565b61098633826113fa565b6109a25760405162461bcd60e51b815260040161084190612967565b6109778383836114f1565b60006109b88261110a565b156109c557505060115490565b505060125490565b919050565b60006109dd83610e83565b8210610a3f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610841565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a925760405162461bcd60e51b815260040161084190612932565b60135460ff80851691161115610ade5760405162461bcd60e51b81526020600482015260116024820152706368756e6b496e6465782065786973747360781b6044820152606401610841565b60ff8316610af857610af2600e8383612300565b50610b8a565b8060005b81811015610b8757600e848483818110610b2657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b3b91906126bc565b81546001810183556000928352602090922060108304018054600f9093166002026101000a61ffff81810219909416929093169290920217905580610b7f81612aa6565b915050610afc565b50505b610b958360016129d0565b6013805460ff191660ff92909216919091179055505050565b600a546001600160a01b03163314610bd85760405162461bcd60e51b815260040161084190612932565b610be23347611698565b565b600a546001600160a01b03163314610c0e5760405162461bcd60e51b815260040161084190612932565b610be26117b1565b61097783838360405180602001604052806000815250611188565b600a546001600160a01b03163314610c5b5760405162461bcd60e51b815260040161084190612932565b60005b8181101561097757610c6f8361184e565b80610c7981612aa6565b915050610c5e565b6000610c8c60085490565b8210610cef5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610841565b60088281548110610d1057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610d4c5760405162461bcd60e51b815260040161084190612932565b8051610d5f9060149060208401906123ad565b5050565b610da36040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b610de36040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b601254815260115460208201526105dc60608201526008546080820152600a60c0820152919050565b6000818152600260205260408120546001600160a01b0316806107345760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610841565b60006001600160a01b038216610eee5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610841565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f345760405162461bcd60e51b815260040161084190612932565b610be260006118f2565b600a546001600160a01b03163314610f685760405162461bcd60e51b815260040161084190612932565b610be2611944565b60606001805461074990612a6b565b600a54600160a01b900460ff1615610fcc5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610841565b600a81111561101d5760405162461bcd60e51b815260206004820152601d60248201527f6e6f74206d696e74206d6f7265207468616e206d617820616d6f756e740000006044820152606401610841565b6000806110293361110a565b905080156110455760115461103e90846119cc565b9150611055565b60125461105290846119cc565b91505b813410156110985760405162461bcd60e51b815260206004820152601060248201526f6e6f7420656e6f7567682066756e647360801b6044820152606401610841565b600d546000906110be9084906fffffffffffffffffffffffffffffffff166127106119df565b905060005b848110156110e6576110d43361184e565b806110de81612aa6565b9150506110c3565b506110f96110f48285612a28565b611af1565b50505050565b610d5f338383611b57565b600f5460405163288c314960e21b81526001600160a01b038381166004830152600092169063a230c5249060240160206040518083038186803b15801561115057600080fd5b505afa158015611164573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107349190612622565b61119233836113fa565b6111ae5760405162461bcd60e51b815260040161084190612967565b6110f984848484611c26565b6000818152600260205260409020546060906001600160a01b03166112395760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610841565b6000601461124684611c59565b6040516020016112579291906127c6565b60408051601f198184030181529190529392505050565b600a546001600160a01b031633146112985760405162461bcd60e51b815260040161084190612932565b601155565b600a546001600160a01b031633146112c75760405162461bcd60e51b815260040161084190612932565b601255565b600a546001600160a01b031633146112f65760405162461bcd60e51b815260040161084190612932565b6001600160a01b03811661135b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610841565b611364816118f2565b50565b60006001600160e01b0319821663780e9d6360e01b1480610734575061073482611d73565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113c182610e0c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610841565b600061147e83610e0c565b9050806001600160a01b0316846001600160a01b031614806114b95750836001600160a01b03166114ae846107cc565b6001600160a01b0316145b806114e957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661150482610e0c565b6001600160a01b0316146115685760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610841565b6001600160a01b0382166115ca5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610841565b6115d5838383611dc3565b6115e060008261138c565b6001600160a01b0383166000908152600360205260408120805460019290611609908490612a28565b90915550506001600160a01b03821660009081526003602052604081208054600192906116379084906129b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b804710156116e85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610841565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611735576040519150601f19603f3d011682016040523d82523d6000602084013e61173a565b606091505b50509050806109775760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610841565b600a54600160a01b900460ff166118015760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610841565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600061185960105490565b90506105dc81106118985760405162461bcd60e51b8152602060048201526009602482015268736f6c64206f75742160b81b6044820152606401610841565b6118a6601080546001019055565b610d5f82600e83815481106118cb57634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff16611dce565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a54600160a01b900460ff16156119915760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610841565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118313390565b60006119d88284612a09565b9392505050565b6000808211611a235760405162461bcd60e51b815260206004820152601060248201526f4469766973696f6e206279207a65726f60801b6044820152606401610841565b83611a30575060006119d8565b6000611a3c8486612a09565b905083611a4986836129f5565b1415611a6157611a5983826129f5565b9150506119d8565b6000611a6d84876129f5565b90506000611a7b8588612ac1565b90506000611a8986886129f5565b90506000611a978789612ac1565b9050611ae4611ab088611aaa86856119cc565b90611de8565b611ade611abd86866119cc565b611ade611aca89876119cc565b611ade8d611ad88c8b6119cc565b906119cc565b90611df4565b9998505050505050505050565b600f54600c54604051634065da6360e01b81526001600160a01b039182166004820152911690634065da639083906024016000604051808303818588803b158015611b3b57600080fd5b505af1158015611b4f573d6000803e3d6000fd5b505050505050565b816001600160a01b0316836001600160a01b03161415611bb95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610841565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c318484846114f1565b611c3d84848484611e00565b6110f95760405162461bcd60e51b8152600401610841906128e0565b606081611c7d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ca75780611c9181612aa6565b9150611ca09050600a836129f5565b9150611c81565b60008167ffffffffffffffff811115611cd057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611cfa576020820181803683370190505b5090505b84156114e957611d0f600183612a28565b9150611d1c600a86612ac1565b611d279060306129b8565b60f81b818381518110611d4a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d6c600a866129f5565b9450611cfe565b60006001600160e01b031982166380ac58cd60e01b1480611da457506001600160e01b03198216635b5e139f60e01b145b8061073457506301ffc9a760e01b6001600160e01b0319831614610734565b610977838383611f0d565b610d5f828260405180602001604052806000815250611fc5565b60006119d882846129f5565b60006119d882846129b8565b60006001600160a01b0384163b15611f0257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e44903390899088908890600401612890565b602060405180830381600087803b158015611e5e57600080fd5b505af1925050508015611e8e575060408051601f3d908101601f19168201909252611e8b9181019061265a565b60015b611ee8573d808015611ebc576040519150601f19603f3d011682016040523d82523d6000602084013e611ec1565b606091505b508051611ee05760405162461bcd60e51b8152600401610841906128e0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114e9565b506001949350505050565b6001600160a01b038316611f6857611f6381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f8b565b816001600160a01b0316836001600160a01b031614611f8b57611f8b8382611ff8565b6001600160a01b038216611fa25761097781612095565b826001600160a01b0316826001600160a01b03161461097757610977828261216e565b611fcf83836121b2565b611fdc6000848484611e00565b6109775760405162461bcd60e51b8152600401610841906128e0565b6000600161200584610e83565b61200f9190612a28565b600083815260076020526040902054909150808214612062576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120a790600190612a28565b600083815260096020526040812054600880549394509092849081106120dd57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061210c57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061215257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061217983610e83565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122085760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610841565b6000818152600260205260409020546001600160a01b03161561226d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610841565b61227960008383611dc3565b6001600160a01b03821660009081526003602052604081208054600192906122a29084906129b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805482825590600052602060002090600f0160109004810192821561239d5791602002820160005b8382111561236d57833561ffff1683826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302612329565b801561239b5782816101000a81549061ffff021916905560020160208160010104928301926001030261236d565b505b506123a9929150612421565b5090565b8280546123b990612a6b565b90600052602060002090601f0160209004810192826123db576000855561239d565b82601f106123f457805160ff191683800117855561239d565b8280016001018555821561239d579182015b8281111561239d578251825591602001919060010190612406565b5b808211156123a95760008155600101612422565b600067ffffffffffffffff8084111561245157612451612b01565b604051601f8501601f19908116603f0116810190828211818310171561247957612479612b01565b8160405280935085815286868601111561249257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146109cd57600080fd5b6000602082840312156124d4578081fd5b6119d8826124ac565b600080604083850312156124ef578081fd5b6124f8836124ac565b9150612506602084016124ac565b90509250929050565b600080600060608486031215612523578081fd5b61252c846124ac565b925061253a602085016124ac565b9150604084013590509250925092565b6000806000806080858703121561255f578081fd5b612568856124ac565b9350612576602086016124ac565b925060408501359150606085013567ffffffffffffffff811115612598578182fd5b8501601f810187136125a8578182fd5b6125b787823560208401612436565b91505092959194509250565b600080604083850312156125d5578182fd5b6125de836124ac565b915060208301356125ee81612b17565b809150509250929050565b6000806040838503121561260b578182fd5b612614836124ac565b946020939093013593505050565b600060208284031215612633578081fd5b81516119d881612b17565b60006020828403121561264f578081fd5b81356119d881612b25565b60006020828403121561266b578081fd5b81516119d881612b25565b600060208284031215612687578081fd5b813567ffffffffffffffff81111561269d578182fd5b8201601f810184136126ad578182fd5b6114e984823560208401612436565b6000602082840312156126cd578081fd5b813561ffff811681146119d8578182fd5b6000602082840312156126ef578081fd5b5035919050565b60008060006040848603121561270a578081fd5b833560ff8116811461271a578182fd5b9250602084013567ffffffffffffffff80821115612736578283fd5b818601915086601f830112612749578283fd5b813581811115612757578384fd5b8760208260051b850101111561276b578384fd5b6020830194508093505050509250925092565b60008151808452612796816020860160208601612a3f565b601f01601f19169290920160200192915050565b600081516127bc818560208601612a3f565b9290920192915050565b600080845482600182811c9150808316806127e257607f831692505b602080841082141561280257634e487b7160e01b87526022600452602487fd5b818015612816576001811461282757612853565b60ff19861689528489019650612853565b60008b815260209020885b8681101561284b5781548b820152908501908301612832565b505084890196505b50505050505061288761287661287083602f60f81b815260010190565b866127aa565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128c39083018461277e565b9695505050505050565b6020815260006119d8602083018461277e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156129cb576129cb612ad5565b500190565b600060ff821660ff84168060ff038211156129ed576129ed612ad5565b019392505050565b600082612a0457612a04612aeb565b500490565b6000816000190483118215151615612a2357612a23612ad5565b500290565b600082821015612a3a57612a3a612ad5565b500390565b60005b83811015612a5a578181015183820152602001612a42565b838111156110f95750506000910152565b600181811c90821680612a7f57607f821691505b60208210811415612aa057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612aba57612aba612ad5565b5060010190565b600082612ad057612ad0612aeb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461136457600080fd5b6001600160e01b03198116811461136457600080fdfea2646970667358221220a5b1dcc4daff3c421dfde78f9f6d32e2f69994ed4bacca10abdab4f78dd6708764736f6c6343000804003368747470733a2f2f63726f636c7562732e6d7970696e6174612e636c6f75642f697066732f516d64316d6a417a486e47685543373174395159734a7432586f324d4c797a47625862374a7a67766346747771550000000000000000000000007a3cdb2364f92369a602cae81167d0679087e6a300000000000000000000000000edc96ec176e8e6629da3b7b99d0114568b522f
Deployed Bytecode
0x6080604052600436106102255760003560e01c80636352211e11610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb011461066b578063dc09e92314610680578063e1ec6294146106a0578063e985e9c5146106c0578063f2fde38b1461070957600080fd5b8063a22cb465146105ca578063a230c524146105ea578063b88d4fde1461060a578063c2ba47441461062a578063c87b56dd1461064b57600080fd5b806384c4bd4b116100f257806384c4bd4b1461054d5780638da5cb5b1461056457806395d89b4114610582578063a0712d6814610597578063a1794bcd146105aa57600080fd5b80636352211e146104e357806370a0823114610503578063715018a6146105235780638456cb591461053857600080fd5b80633ccfd60b116101b15780634ddc302c116101755780634ddc302c146103f95780634f6ccce71461041957806355f804b3146104395780635a9b0b89146104595780635c975abb146104c457600080fd5b80633ccfd60b1461037a5780633f4ba83a1461038f57806342842e0e146103a457806343bc1612146103c45780634a90be57146103e457600080fd5b806318160ddd116101f857806318160ddd146102db57806323b872dd146102fa5780632acc659e1461031a5780632f745c591461033a5780633b3c523a1461035a57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a61024536600461263e565b610729565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461073a565b60405161025691906128cd565b34801561028d57600080fd5b506102a161029c3660046126de565b6107cc565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d43660046125f9565b610866565b005b3480156102e757600080fd5b506008545b604051908152602001610256565b34801561030657600080fd5b506102d961031536600461250f565b61097c565b34801561032657600080fd5b506102ec6103353660046124c3565b6109ad565b34801561034657600080fd5b506102ec6103553660046125f9565b6109d2565b34801561036657600080fd5b506102d96103753660046126f6565b610a68565b34801561038657600080fd5b506102d9610bae565b34801561039b57600080fd5b506102d9610be4565b3480156103b057600080fd5b506102d96103bf36600461250f565b610c16565b3480156103d057600080fd5b50600c546102a1906001600160a01b031681565b3480156103f057600080fd5b50600e546102ec565b34801561040557600080fd5b506102d96104143660046125f9565b610c31565b34801561042557600080fd5b506102ec6104343660046126de565b610c81565b34801561044557600080fd5b506102d9610454366004612676565b610d22565b34801561046557600080fd5b5061046e610d63565b6040516102569190600060e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015292915050565b3480156104d057600080fd5b50600a54600160a01b900460ff1661024a565b3480156104ef57600080fd5b506102a16104fe3660046126de565b610e0c565b34801561050f57600080fd5b506102ec61051e3660046124c3565b610e83565b34801561052f57600080fd5b506102d9610f0a565b34801561054457600080fd5b506102d9610f3e565b34801561055957600080fd5b506010546102ec9081565b34801561057057600080fd5b50600a546001600160a01b03166102a1565b34801561058e57600080fd5b50610274610f70565b6102d96105a53660046126de565b610f7f565b3480156105b657600080fd5b50600f546102a1906001600160a01b031681565b3480156105d657600080fd5b506102d96105e53660046125c3565b6110ff565b3480156105f657600080fd5b5061024a6106053660046124c3565b61110a565b34801561061657600080fd5b506102d961062536600461254a565b611188565b34801561063657600080fd5b506102ec6106453660046124c3565b50600a90565b34801561065757600080fd5b506102746106663660046126de565b6111ba565b34801561067757600080fd5b506105dc6102ec565b34801561068c57600080fd5b506102d961069b3660046126de565b61126e565b3480156106ac57600080fd5b506102d96106bb3660046126de565b61129d565b3480156106cc57600080fd5b5061024a6106db3660046124dd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561071557600080fd5b506102d96107243660046124c3565b6112cc565b600061073482611367565b92915050565b60606000805461074990612a6b565b80601f016020809104026020016040519081016040528092919081815260200182805461077590612a6b565b80156107c25780601f10610797576101008083540402835291602001916107c2565b820191906000526020600020905b8154815290600101906020018083116107a557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661084a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087182610e0c565b9050806001600160a01b0316836001600160a01b031614156108df5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610841565b336001600160a01b03821614806108fb57506108fb81336106db565b61096d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610841565b610977838361138c565b505050565b61098633826113fa565b6109a25760405162461bcd60e51b815260040161084190612967565b6109778383836114f1565b60006109b88261110a565b156109c557505060115490565b505060125490565b919050565b60006109dd83610e83565b8210610a3f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610841565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a925760405162461bcd60e51b815260040161084190612932565b60135460ff80851691161115610ade5760405162461bcd60e51b81526020600482015260116024820152706368756e6b496e6465782065786973747360781b6044820152606401610841565b60ff8316610af857610af2600e8383612300565b50610b8a565b8060005b81811015610b8757600e848483818110610b2657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b3b91906126bc565b81546001810183556000928352602090922060108304018054600f9093166002026101000a61ffff81810219909416929093169290920217905580610b7f81612aa6565b915050610afc565b50505b610b958360016129d0565b6013805460ff191660ff92909216919091179055505050565b600a546001600160a01b03163314610bd85760405162461bcd60e51b815260040161084190612932565b610be23347611698565b565b600a546001600160a01b03163314610c0e5760405162461bcd60e51b815260040161084190612932565b610be26117b1565b61097783838360405180602001604052806000815250611188565b600a546001600160a01b03163314610c5b5760405162461bcd60e51b815260040161084190612932565b60005b8181101561097757610c6f8361184e565b80610c7981612aa6565b915050610c5e565b6000610c8c60085490565b8210610cef5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610841565b60088281548110610d1057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610d4c5760405162461bcd60e51b815260040161084190612932565b8051610d5f9060149060208401906123ad565b5050565b610da36040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b610de36040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b601254815260115460208201526105dc60608201526008546080820152600a60c0820152919050565b6000818152600260205260408120546001600160a01b0316806107345760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610841565b60006001600160a01b038216610eee5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610841565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f345760405162461bcd60e51b815260040161084190612932565b610be260006118f2565b600a546001600160a01b03163314610f685760405162461bcd60e51b815260040161084190612932565b610be2611944565b60606001805461074990612a6b565b600a54600160a01b900460ff1615610fcc5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610841565b600a81111561101d5760405162461bcd60e51b815260206004820152601d60248201527f6e6f74206d696e74206d6f7265207468616e206d617820616d6f756e740000006044820152606401610841565b6000806110293361110a565b905080156110455760115461103e90846119cc565b9150611055565b60125461105290846119cc565b91505b813410156110985760405162461bcd60e51b815260206004820152601060248201526f6e6f7420656e6f7567682066756e647360801b6044820152606401610841565b600d546000906110be9084906fffffffffffffffffffffffffffffffff166127106119df565b905060005b848110156110e6576110d43361184e565b806110de81612aa6565b9150506110c3565b506110f96110f48285612a28565b611af1565b50505050565b610d5f338383611b57565b600f5460405163288c314960e21b81526001600160a01b038381166004830152600092169063a230c5249060240160206040518083038186803b15801561115057600080fd5b505afa158015611164573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107349190612622565b61119233836113fa565b6111ae5760405162461bcd60e51b815260040161084190612967565b6110f984848484611c26565b6000818152600260205260409020546060906001600160a01b03166112395760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610841565b6000601461124684611c59565b6040516020016112579291906127c6565b60408051601f198184030181529190529392505050565b600a546001600160a01b031633146112985760405162461bcd60e51b815260040161084190612932565b601155565b600a546001600160a01b031633146112c75760405162461bcd60e51b815260040161084190612932565b601255565b600a546001600160a01b031633146112f65760405162461bcd60e51b815260040161084190612932565b6001600160a01b03811661135b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610841565b611364816118f2565b50565b60006001600160e01b0319821663780e9d6360e01b1480610734575061073482611d73565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113c182610e0c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610841565b600061147e83610e0c565b9050806001600160a01b0316846001600160a01b031614806114b95750836001600160a01b03166114ae846107cc565b6001600160a01b0316145b806114e957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661150482610e0c565b6001600160a01b0316146115685760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610841565b6001600160a01b0382166115ca5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610841565b6115d5838383611dc3565b6115e060008261138c565b6001600160a01b0383166000908152600360205260408120805460019290611609908490612a28565b90915550506001600160a01b03821660009081526003602052604081208054600192906116379084906129b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b804710156116e85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610841565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611735576040519150601f19603f3d011682016040523d82523d6000602084013e61173a565b606091505b50509050806109775760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610841565b600a54600160a01b900460ff166118015760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610841565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600061185960105490565b90506105dc81106118985760405162461bcd60e51b8152602060048201526009602482015268736f6c64206f75742160b81b6044820152606401610841565b6118a6601080546001019055565b610d5f82600e83815481106118cb57634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff16611dce565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a54600160a01b900460ff16156119915760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610841565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118313390565b60006119d88284612a09565b9392505050565b6000808211611a235760405162461bcd60e51b815260206004820152601060248201526f4469766973696f6e206279207a65726f60801b6044820152606401610841565b83611a30575060006119d8565b6000611a3c8486612a09565b905083611a4986836129f5565b1415611a6157611a5983826129f5565b9150506119d8565b6000611a6d84876129f5565b90506000611a7b8588612ac1565b90506000611a8986886129f5565b90506000611a978789612ac1565b9050611ae4611ab088611aaa86856119cc565b90611de8565b611ade611abd86866119cc565b611ade611aca89876119cc565b611ade8d611ad88c8b6119cc565b906119cc565b90611df4565b9998505050505050505050565b600f54600c54604051634065da6360e01b81526001600160a01b039182166004820152911690634065da639083906024016000604051808303818588803b158015611b3b57600080fd5b505af1158015611b4f573d6000803e3d6000fd5b505050505050565b816001600160a01b0316836001600160a01b03161415611bb95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610841565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c318484846114f1565b611c3d84848484611e00565b6110f95760405162461bcd60e51b8152600401610841906128e0565b606081611c7d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ca75780611c9181612aa6565b9150611ca09050600a836129f5565b9150611c81565b60008167ffffffffffffffff811115611cd057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611cfa576020820181803683370190505b5090505b84156114e957611d0f600183612a28565b9150611d1c600a86612ac1565b611d279060306129b8565b60f81b818381518110611d4a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d6c600a866129f5565b9450611cfe565b60006001600160e01b031982166380ac58cd60e01b1480611da457506001600160e01b03198216635b5e139f60e01b145b8061073457506301ffc9a760e01b6001600160e01b0319831614610734565b610977838383611f0d565b610d5f828260405180602001604052806000815250611fc5565b60006119d882846129f5565b60006119d882846129b8565b60006001600160a01b0384163b15611f0257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e44903390899088908890600401612890565b602060405180830381600087803b158015611e5e57600080fd5b505af1925050508015611e8e575060408051601f3d908101601f19168201909252611e8b9181019061265a565b60015b611ee8573d808015611ebc576040519150601f19603f3d011682016040523d82523d6000602084013e611ec1565b606091505b508051611ee05760405162461bcd60e51b8152600401610841906128e0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114e9565b506001949350505050565b6001600160a01b038316611f6857611f6381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f8b565b816001600160a01b0316836001600160a01b031614611f8b57611f8b8382611ff8565b6001600160a01b038216611fa25761097781612095565b826001600160a01b0316826001600160a01b03161461097757610977828261216e565b611fcf83836121b2565b611fdc6000848484611e00565b6109775760405162461bcd60e51b8152600401610841906128e0565b6000600161200584610e83565b61200f9190612a28565b600083815260076020526040902054909150808214612062576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120a790600190612a28565b600083815260096020526040812054600880549394509092849081106120dd57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061210c57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061215257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061217983610e83565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122085760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610841565b6000818152600260205260409020546001600160a01b03161561226d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610841565b61227960008383611dc3565b6001600160a01b03821660009081526003602052604081208054600192906122a29084906129b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805482825590600052602060002090600f0160109004810192821561239d5791602002820160005b8382111561236d57833561ffff1683826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302612329565b801561239b5782816101000a81549061ffff021916905560020160208160010104928301926001030261236d565b505b506123a9929150612421565b5090565b8280546123b990612a6b565b90600052602060002090601f0160209004810192826123db576000855561239d565b82601f106123f457805160ff191683800117855561239d565b8280016001018555821561239d579182015b8281111561239d578251825591602001919060010190612406565b5b808211156123a95760008155600101612422565b600067ffffffffffffffff8084111561245157612451612b01565b604051601f8501601f19908116603f0116810190828211818310171561247957612479612b01565b8160405280935085815286868601111561249257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146109cd57600080fd5b6000602082840312156124d4578081fd5b6119d8826124ac565b600080604083850312156124ef578081fd5b6124f8836124ac565b9150612506602084016124ac565b90509250929050565b600080600060608486031215612523578081fd5b61252c846124ac565b925061253a602085016124ac565b9150604084013590509250925092565b6000806000806080858703121561255f578081fd5b612568856124ac565b9350612576602086016124ac565b925060408501359150606085013567ffffffffffffffff811115612598578182fd5b8501601f810187136125a8578182fd5b6125b787823560208401612436565b91505092959194509250565b600080604083850312156125d5578182fd5b6125de836124ac565b915060208301356125ee81612b17565b809150509250929050565b6000806040838503121561260b578182fd5b612614836124ac565b946020939093013593505050565b600060208284031215612633578081fd5b81516119d881612b17565b60006020828403121561264f578081fd5b81356119d881612b25565b60006020828403121561266b578081fd5b81516119d881612b25565b600060208284031215612687578081fd5b813567ffffffffffffffff81111561269d578182fd5b8201601f810184136126ad578182fd5b6114e984823560208401612436565b6000602082840312156126cd578081fd5b813561ffff811681146119d8578182fd5b6000602082840312156126ef578081fd5b5035919050565b60008060006040848603121561270a578081fd5b833560ff8116811461271a578182fd5b9250602084013567ffffffffffffffff80821115612736578283fd5b818601915086601f830112612749578283fd5b813581811115612757578384fd5b8760208260051b850101111561276b578384fd5b6020830194508093505050509250925092565b60008151808452612796816020860160208601612a3f565b601f01601f19169290920160200192915050565b600081516127bc818560208601612a3f565b9290920192915050565b600080845482600182811c9150808316806127e257607f831692505b602080841082141561280257634e487b7160e01b87526022600452602487fd5b818015612816576001811461282757612853565b60ff19861689528489019650612853565b60008b815260209020885b8681101561284b5781548b820152908501908301612832565b505084890196505b50505050505061288761287661287083602f60f81b815260010190565b866127aa565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128c39083018461277e565b9695505050505050565b6020815260006119d8602083018461277e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156129cb576129cb612ad5565b500190565b600060ff821660ff84168060ff038211156129ed576129ed612ad5565b019392505050565b600082612a0457612a04612aeb565b500490565b6000816000190483118215151615612a2357612a23612ad5565b500290565b600082821015612a3a57612a3a612ad5565b500390565b60005b83811015612a5a578181015183820152602001612a42565b838111156110f95750506000910152565b600181811c90821680612a7f57607f821691505b60208210811415612aa057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612aba57612aba612ad5565b5060010190565b600082612ad057612ad0612aeb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461136457600080fd5b6001600160e01b03198116811461136457600080fdfea2646970667358221220a5b1dcc4daff3c421dfde78f9f6d32e2f69994ed4bacca10abdab4f78dd6708764736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a3cdb2364f92369a602cae81167d0679087e6a300000000000000000000000000edc96ec176e8e6629da3b7b99d0114568b522f
-----Decoded View---------------
Arg [0] : _marketContract (address): 0x7a3CdB2364f92369a602CAE81167d0679087e6a3
Arg [1] : _artist (address): 0x00edC96EC176E8e6629da3b7b99d0114568B522f
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a3cdb2364f92369a602cae81167d0679087e6a3
Arg [1] : 00000000000000000000000000edc96ec176e8e6629da3b7b99d0114568b522f
Deployed Bytecode Sourcemap
57510:3839:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56354:145;;;;;;;;;;-1:-1:-1;56354:145:0;;;;;:::i;:::-;;:::i;:::-;;;8751:14:1;;8744:22;8726:41;;8714:2;8699:18;56354:145:0;;;;;;;;27259:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28818:221::-;;;;;;;;;;-1:-1:-1;28818:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8049:32:1;;;8031:51;;8019:2;8004:18;28818:221:0;7986:102:1;28341:411:0;;;;;;;;;;-1:-1:-1;28341:411:0;;;;;:::i;:::-;;:::i;:::-;;42171:113;;;;;;;;;;-1:-1:-1;42259:10:0;:17;42171:113;;;20173:25:1;;;20161:2;20146:18;42171:113:0;20128:76:1;29568:339:0;;;;;;;;;;-1:-1:-1;29568:339:0;;;;;:::i;:::-;;:::i;58239:211::-;;;;;;;;;;-1:-1:-1;58239:211:0;;;;;:::i;:::-;;:::i;41839:256::-;;;;;;;;;;-1:-1:-1;41839:256:0;;;;;:::i;:::-;;:::i;58550:447::-;;;;;;;;;;-1:-1:-1;58550:447:0;;;;;:::i;:::-;;:::i;56507:115::-;;;;;;;;;;;;;:::i;56698:64::-;;;;;;;;;;;;;:::i;29978:185::-;;;;;;;;;;-1:-1:-1;29978:185:0;;;;;:::i;:::-;;:::i;55681:21::-;;;;;;;;;;-1:-1:-1;55681:21:0;;;;-1:-1:-1;;;;;55681:21:0;;;58458:84;;;;;;;;;;-1:-1:-1;58522:5:0;:12;58458:84;;59005:168;;;;;;;;;;-1:-1:-1;59005:168:0;;;;;:::i;:::-;;:::i;42361:233::-;;;;;;;;;;-1:-1:-1;42361:233:0;;;;;:::i;:::-;;:::i;59391:100::-;;;;;;;;;;-1:-1:-1;59391:100:0;;;;;:::i;:::-;;:::i;60990:356::-;;;;;;;;;;;;;:::i;:::-;;;;;;19551:4:1;19593:3;19582:9;19578:19;19570:27;;19630:6;19624:13;19613:9;19606:32;19694:4;19686:6;19682:17;19676:24;19669:4;19658:9;19654:20;19647:54;19757:4;19749:6;19745:17;19739:24;19732:4;19721:9;19717:20;19710:54;19820:4;19812:6;19808:17;19802:24;19795:4;19784:9;19780:20;19773:54;19883:4;19875:6;19871:17;19865:24;19858:4;19847:9;19843:20;19836:54;19946:4;19938:6;19934:17;19928:24;19921:4;19910:9;19906:20;19899:54;20009:4;20001:6;19997:17;19991:24;19984:4;19973:9;19969:20;19962:54;19560:462;;;;;51353:86:0;;;;;;;;;;-1:-1:-1;51424:7:0;;-1:-1:-1;;;51424:7:0;;;;51353:86;;26953:239;;;;;;;;;;-1:-1:-1;26953:239:0;;;;;:::i;:::-;;:::i;26683:208::-;;;;;;;;;;-1:-1:-1;26683:208:0;;;;;:::i;:::-;;:::i;49398:103::-;;;;;;;;;;;;;:::i;56630:60::-;;;;;;;;;;;;;:::i;57672:39::-;;;;;;;;;;-1:-1:-1;57672:39:0;;;;;;48747:87;;;;;;;;;;-1:-1:-1;48820:6:0;;-1:-1:-1;;;;;48820:6:0;48747:87;;27428:104;;;;;;;;;;;;;:::i;59499:649::-;;;;;;:::i;:::-;;:::i;55819:29::-;;;;;;;;;;-1:-1:-1;55819:29:0;;;;-1:-1:-1;;;;;55819:29:0;;;29111:155;;;;;;;;;;-1:-1:-1;29111:155:0;;;;;:::i;:::-;;:::i;55857:130::-;;;;;;;;;;-1:-1:-1;55857:130:0;;;;;:::i;:::-;;:::i;30234:328::-;;;;;;;;;;-1:-1:-1;30234:328:0;;;;;:::i;:::-;;:::i;60872:107::-;;;;;;;;;;-1:-1:-1;60872:107:0;;;;;:::i;:::-;-1:-1:-1;57883:2:0;;60872:107;60160:318;;;;;;;;;;-1:-1:-1;60160:318:0;;;;;:::i;:::-;;:::i;60766:98::-;;;;;;;;;;-1:-1:-1;57840:4:0;60766:98;;59185:94;;;;;;;;;;-1:-1:-1;59185:94:0;;;;;:::i;:::-;;:::i;59287:96::-;;;;;;;;;;-1:-1:-1;59287:96:0;;;;;:::i;:::-;;:::i;29337:164::-;;;;;;;;;;-1:-1:-1;29337:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29458:25:0;;;29434:4;29458:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29337:164;49656:201;;;;;;;;;;-1:-1:-1;49656:201:0;;;;;:::i;:::-;;:::i;56354:145::-;56431:4;56455:36;56479:11;56455:23;:36::i;:::-;56448:43;56354:145;-1:-1:-1;;56354:145:0:o;27259:100::-;27313:13;27346:5;27339:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27259:100;:::o;28818:221::-;28894:7;32161:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32161:16:0;28914:73;;;;-1:-1:-1;;;28914:73:0;;15463:2:1;28914:73:0;;;15445:21:1;15502:2;15482:18;;;15475:30;15541:34;15521:18;;;15514:62;-1:-1:-1;;;15592:18:1;;;15585:42;15644:19;;28914:73:0;;;;;;;;;-1:-1:-1;29007:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29007:24:0;;28818:221::o;28341:411::-;28422:13;28438:23;28453:7;28438:14;:23::i;:::-;28422:39;;28486:5;-1:-1:-1;;;;;28480:11:0;:2;-1:-1:-1;;;;;28480:11:0;;;28472:57;;;;-1:-1:-1;;;28472:57:0;;16998:2:1;28472:57:0;;;16980:21:1;17037:2;17017:18;;;17010:30;17076:34;17056:18;;;17049:62;-1:-1:-1;;;17127:18:1;;;17120:31;17168:19;;28472:57:0;16970:223:1;28472:57:0;21600:10;-1:-1:-1;;;;;28564:21:0;;;;:62;;-1:-1:-1;28589:37:0;28606:5;21600:10;29337:164;:::i;28589:37::-;28542:168;;;;-1:-1:-1;;;28542:168:0;;13856:2:1;28542:168:0;;;13838:21:1;13895:2;13875:18;;;13868:30;13934:34;13914:18;;;13907:62;14005:26;13985:18;;;13978:54;14049:19;;28542:168:0;13828:246:1;28542:168:0;28723:21;28732:2;28736:7;28723:8;:21::i;:::-;28341:411;;;:::o;29568:339::-;29763:41;21600:10;29796:7;29763:18;:41::i;:::-;29755:103;;;;-1:-1:-1;;;29755:103:0;;;;;;;:::i;:::-;29871:28;29881:4;29887:2;29891:7;29871:9;:28::i;58239:211::-;58305:7;58329:17;58338:7;58329:8;:17::i;:::-;58325:118;;;-1:-1:-1;;58370:10:0;;;58239:211::o;58325:118::-;-1:-1:-1;;58420:11:0;;;58239:211::o;58325:118::-;58239:211;;;:::o;41839:256::-;41936:7;41972:23;41989:5;41972:16;:23::i;:::-;41964:5;:31;41956:87;;;;-1:-1:-1;;;41956:87:0;;9553:2:1;41956:87:0;;;9535:21:1;9592:2;9572:18;;;9565:30;9631:34;9611:18;;;9604:62;-1:-1:-1;;;9682:18:1;;;9675:41;9733:19;;41956:87:0;9525:233:1;41956:87:0;-1:-1:-1;;;;;;42061:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41839:256::o;58550:447::-;48820:6;;-1:-1:-1;;;;;48820:6:0;21600:10;48967:23;48959:68;;;;-1:-1:-1;;;48959:68:0;;;;;;;:::i;:::-;58658:17:::1;::::0;:32:::1;::::0;;::::1;:17:::0;::::1;:32;;58650:62;;;::::0;-1:-1:-1;;;58650:62:0;;18934:2:1;58650:62:0::1;::::0;::::1;18916:21:1::0;18973:2;18953:18;;;18946:30;-1:-1:-1;;;18992:18:1;;;18985:47;19049:18;;58650:62:0::1;18906:167:1::0;58650:62:0::1;58727:16;::::0;::::1;58723:221;;58760:14;:5;58768:6:::0;;58760:14:::1;:::i;:::-;;58723:221;;;58818:6:::0;58807:8:::1;58846:87;58866:3;58862:1;:7;58846:87;;;58896:5;58907:6;;58914:1;58907:9;;;;;-1:-1:-1::0;;;58907:9:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58896:21:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;58896:21:0;;;::::1;::::0;;;::::1;::::0;::::1;;::::0;;;;;;::::1;;;;;::::0;;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;;::::1;;::::0;;58871:4;::::1;::::0;::::1;:::i;:::-;;;;58846:87;;;;58723:221;;58974:15;:11:::0;58988:1:::1;58974:15;:::i;:::-;58954:17;:35:::0;;-1:-1:-1;;58954:35:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;58550:447:0:o;56507:115::-;48820:6;;-1:-1:-1;;;;;48820:6:0;21600:10;48967:23;48959:68;;;;-1:-1:-1;;;48959:68:0;;;;;;;:::i;:::-;56562:52:::1;56570:10;56592:21;56562:29;:52::i;:::-;56507:115::o:0;56698:64::-;48820:6;;-1:-1:-1;;;;;48820:6:0;21600:10;48967:23;48959:68;;;;-1:-1:-1;;;48959:68:0;;;;;;;:::i;:::-;56744:10:::1;:8;:10::i;29978:185::-:0;30116:39;30133:4;30139:2;30143:7;30116:39;;;;;;;;;;;;:16;:39::i;59005:168::-;48820:6;;-1:-1:-1;;;;;48820:6:0;21600:10;48967:23;48959:68;;;;-1:-1:-1;;;48959:68:0;;;;;;;:::i;:::-;59093:9:::1;59088:78;59112:6;59108:1;:10;59088:78;;;59141:13;59150:3;59141:8;:13::i;:::-;59120:4:::0;::::1;::::0;::::1;:::i;:::-;;;;59088:78;;42361:233:::0;42436:7;42472:30;42259:10;:17;;42171:113;42472:30;42464:5;:38;42456:95;;;;-1:-1:-1;;;42456:95:0;;18521:2:1;42456:95:0;;;18503:21:1;18560:2;18540:18;;;18533:30;18599:34;18579:18;;;18572:62;-1:-1:-1;;;18650:18:1;;;18643:42;18702:19;;42456:95:0;18493:234:1;42456:95:0;42569:10;42580:5;42569:17;;;;;;-1:-1:-1;;;42569:17:0;;;;;;;;;;;;;;;;;42562:24;;42361:233;;;:::o;59391:100::-;48820:6;;-1:-1:-1;;;;;48820:6:0;21600:10;48967:23;48959:68;;;;-1:-1:-1;;;48959:68:0;;;;;;;:::i;:::-;59465:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;59391:100:::0;:::o;60990:356::-;61041:11;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61041:11:0;61065:19;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61065:19:0;61117:11;;61095:33;;61160:10;;61139:18;;;:31;57840:4;61181:17;;;:30;42259:10;:17;61222:19;;;:41;57883:2;61274:20;;;:37;61222:7;60990:356;-1:-1:-1;60990:356:0:o;26953:239::-;27025:7;27061:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27061:16:0;27096:19;27088:73;;;;-1:-1:-1;;;27088:73:0;;14692:2:1;27088:73:0;;;14674:21:1;14731:2;14711:18;;;14704:30;14770:34;14750:18;;;14743:62;-1:-1:-1;;;14821:18:1;;;14814:39;14870:19;;27088:73:0;14664:231:1;26683:208:0;26755:7;-1:-1:-1;;;;;26783:19:0;;26775:74;;;;-1:-1:-1;;;26775:74:0;;14281:2:1;26775:74:0;;;14263:21:1;14320:2;14300:18;;;14293:30;14359:34;14339:18;;;14332:62;-1:-1:-1;;;14410:18:1;;;14403:40;14460:19;;26775:74:0;14253:232:1;26775:74:0;-1:-1:-1;;;;;;26867:16:0;;;;;:9;:16;;;;;;;26683:208::o;49398:103::-;48820:6;;-1:-1:-1;;;;;48820:6:0;21600:10;48967:23;48959:68;;;;-1:-1:-1;;;48959:68:0;;;;;;;:::i;:::-;49463:30:::1;49490:1;49463:18;:30::i;56630:60::-:0;48820:6;;-1:-1:-1;;;;;48820:6:0;21600:10;48967:23;48959:68;;;;-1:-1:-1;;;48959:68:0;;;;;;;:::i;:::-;56674:8:::1;:6;:8::i;27428:104::-:0;27484:13;27517:7;27510:14;;;;;:::i;59499:649::-;51424:7;;-1:-1:-1;;;51424:7:0;;;;51678:9;51670:38;;;;-1:-1:-1;;;51670:38:0;;13511:2:1;51670:38:0;;;13493:21:1;13550:2;13530:18;;;13523:30;-1:-1:-1;;;13569:18:1;;;13562:46;13625:18;;51670:38:0;13483:166:1;51670:38:0;57883:2:::1;59589:25:::0;::::1;;59581:67;;;::::0;-1:-1:-1;;;59581:67:0;;17818:2:1;59581:67:0::1;::::0;::::1;17800:21:1::0;17857:2;17837:18;;;17830:30;17896:31;17876:18;;;17869:59;17945:18;;59581:67:0::1;17790:179:1::0;59581:67:0::1;59659:13;59683:14:::0;59700:20:::1;59709:10;59700:8;:20::i;:::-;59683:37;;59736:9;59733:138;;;59769:10;::::0;:23:::1;::::0;59784:7;59769:14:::1;:23::i;:::-;59761:31;;59733:138;;;59834:11;::::0;:24:::1;::::0;59850:7;59834:15:::1;:24::i;:::-;59826:32;;59733:138;59912:5;59899:9;:18;;59891:47;;;::::0;-1:-1:-1;;;59891:47:0;;18176:2:1;59891:47:0::1;::::0;::::1;18158:21:1::0;18215:2;18195:18;;;18188:30;-1:-1:-1;;;18234:18:1;;;18227:46;18290:18;;59891:47:0::1;18148:166:1::0;59891:47:0::1;59984:3;::::0;59951:17:::1;::::0;59971:24:::1;::::0;:5;;59984:3:::1;;55743:5;59971:12;:24::i;:::-;59951:44;;60013:9;60009:83;60032:7;60028:1;:11;60009:83;;;60060:20;60069:10;60060:8;:20::i;:::-;60041:3:::0;::::1;::::0;::::1;:::i;:::-;;;;60009:83;;;-1:-1:-1::0;60112:28:0::1;60122:17;60130:9:::0;60122:5;:17:::1;:::i;:::-;60112:9;:28::i;:::-;51719:1;;;59499:649:::0;:::o;29111:155::-;29206:52;21600:10;29239:8;29249;29206:18;:52::i;55857:130::-;55945:14;;55938:41;;-1:-1:-1;;;55938:41:0;;-1:-1:-1;;;;;8049:32:1;;;55938:41:0;;;8031:51:1;55914:4:0;;55945:14;;55938:31;;8004:18:1;;55938:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;30234:328::-;30409:41;21600:10;30442:7;30409:18;:41::i;:::-;30401:103;;;;-1:-1:-1;;;30401:103:0;;;;;;;:::i;:::-;30515:39;30529:4;30535:2;30539:7;30548:5;30515:13;:39::i;60160:318::-;32137:4;32161:16;;;:7;:16;;;;;;60231:13;;-1:-1:-1;;;;;32161:16:0;60255:76;;;;-1:-1:-1;;;60255:76:0;;16582:2:1;60255:76:0;;;16564:21:1;16621:2;16601:18;;;16594:30;16660:34;16640:18;;;16633:62;-1:-1:-1;;;16711:18:1;;;16704:45;16766:19;;60255:76:0;16554:237:1;60255:76:0;60342:23;60392:7;60406:26;60423:8;60406:16;:26::i;:::-;60375:67;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;60375:67:0;;;;;;;;;;60160:318;-1:-1:-1;;;60160:318:0:o;59185:94::-;48820:6;;-1:-1:-1;;;;;48820:6:0;21600:10;48967:23;48959:68;;;;-1:-1:-1;;;48959:68:0;;;;;;;:::i;:::-;59253:10:::1;:18:::0;59185:94::o;59287:96::-;48820:6;;-1:-1:-1;;;;;48820:6:0;21600:10;48967:23;48959:68;;;;-1:-1:-1;;;48959:68:0;;;;;;;:::i;:::-;59356:11:::1;:19:::0;59287:96::o;49656:201::-;48820:6;;-1:-1:-1;;;;;48820:6:0;21600:10;48967:23;48959:68;;;;-1:-1:-1;;;48959:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49745:22:0;::::1;49737:73;;;::::0;-1:-1:-1;;;49737:73:0;;10384:2:1;49737:73:0::1;::::0;::::1;10366:21:1::0;10423:2;10403:18;;;10396:30;10462:34;10442:18;;;10435:62;-1:-1:-1;;;10513:18:1;;;10506:36;10559:19;;49737:73:0::1;10356:228:1::0;49737:73:0::1;49821:28;49840:8;49821:18;:28::i;:::-;49656:201:::0;:::o;41531:224::-;41633:4;-1:-1:-1;;;;;;41657:50:0;;-1:-1:-1;;;41657:50:0;;:90;;;41711:36;41735:11;41711:23;:36::i;36218:174::-;36293:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36293:29:0;-1:-1:-1;;;;;36293:29:0;;;;;;;;:24;;36347:23;36293:24;36347:14;:23::i;:::-;-1:-1:-1;;;;;36338:46:0;;;;;;;;;;;36218:174;;:::o;32366:348::-;32459:4;32161:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32161:16:0;32476:73;;;;-1:-1:-1;;;32476:73:0;;13098:2:1;32476:73:0;;;13080:21:1;13137:2;13117:18;;;13110:30;13176:34;13156:18;;;13149:62;-1:-1:-1;;;13227:18:1;;;13220:42;13279:19;;32476:73:0;13070:234:1;32476:73:0;32560:13;32576:23;32591:7;32576:14;:23::i;:::-;32560:39;;32629:5;-1:-1:-1;;;;;32618:16:0;:7;-1:-1:-1;;;;;32618:16:0;;:51;;;;32662:7;-1:-1:-1;;;;;32638:31:0;:20;32650:7;32638:11;:20::i;:::-;-1:-1:-1;;;;;32638:31:0;;32618:51;:87;;;-1:-1:-1;;;;;;29458:25:0;;;29434:4;29458:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32673:32;32610:96;32366:348;-1:-1:-1;;;;32366:348:0:o;35475:625::-;35634:4;-1:-1:-1;;;;;35607:31:0;:23;35622:7;35607:14;:23::i;:::-;-1:-1:-1;;;;;35607:31:0;;35599:81;;;;-1:-1:-1;;;35599:81:0;;10791:2:1;35599:81:0;;;10773:21:1;10830:2;10810:18;;;10803:30;10869:34;10849:18;;;10842:62;-1:-1:-1;;;10920:18:1;;;10913:35;10965:19;;35599:81:0;10763:227:1;35599:81:0;-1:-1:-1;;;;;35699:16:0;;35691:65;;;;-1:-1:-1;;;35691:65:0;;11554:2:1;35691:65:0;;;11536:21:1;11593:2;11573:18;;;11566:30;11632:34;11612:18;;;11605:62;-1:-1:-1;;;11683:18:1;;;11676:34;11727:19;;35691:65:0;11526:226:1;35691:65:0;35769:39;35790:4;35796:2;35800:7;35769:20;:39::i;:::-;35873:29;35890:1;35894:7;35873:8;:29::i;:::-;-1:-1:-1;;;;;35915:15:0;;;;;;:9;:15;;;;;:20;;35934:1;;35915:15;:20;;35934:1;;35915:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35946:13:0;;;;;;:9;:13;;;;;:18;;35963:1;;35946:13;:18;;35963:1;;35946:18;:::i;:::-;;;;-1:-1:-1;;35975:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35975:21:0;-1:-1:-1;;;;;35975:21:0;;;;;;;;;36014:27;;35975:16;;36014:27;;;;;;;28341:411;;;:::o;14824:317::-;14939:6;14914:21;:31;;14906:73;;;;-1:-1:-1;;;14906:73:0;;12740:2:1;14906:73:0;;;12722:21:1;12779:2;12759:18;;;12752:30;12818:31;12798:18;;;12791:59;12867:18;;14906:73:0;12712:179:1;14906:73:0;14993:12;15011:9;-1:-1:-1;;;;;15011:14:0;15033:6;15011:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14992:52;;;15063:7;15055:78;;;;-1:-1:-1;;;15055:78:0;;12313:2:1;15055:78:0;;;12295:21:1;12352:2;12332:18;;;12325:30;12391:34;12371:18;;;12364:62;12462:28;12442:18;;;12435:56;12508:19;;15055:78:0;12285:248:1;52412:120:0;51424:7;;-1:-1:-1;;;51424:7:0;;;;51948:41;;;;-1:-1:-1;;;51948:41:0;;9204:2:1;51948:41:0;;;9186:21:1;9243:2;9223:18;;;9216:30;-1:-1:-1;;;9262:18:1;;;9255:50;9322:18;;51948:41:0;9176:170:1;51948:41:0;52471:7:::1;:15:::0;;-1:-1:-1;;;;52471:15:0::1;::::0;;52502:22:::1;21600:10:::0;52511:12:::1;52502:22;::::0;-1:-1:-1;;;;;8049:32:1;;;8031:51;;8019:2;8004:18;52502:22:0::1;;;;;;;52412:120::o:0;60485:273::-;60535:15;60581:25;:15;1034:14;;942:114;60581:25;60571:35;-1:-1:-1;57840:4:0;60635:20;;60627:42;;;;-1:-1:-1;;;60627:42:0;;19280:2:1;60627:42:0;;;19262:21:1;19319:1;19299:18;;;19292:29;-1:-1:-1;;;19337:18:1;;;19330:39;19386:18;;60627:42:0;19252:158:1;60627:42:0;60680:27;:15;1153:19;;1171:1;1153:19;;;1064:127;60680:27;60720:30;60730:3;60735:5;60741:7;60735:14;;;;;;-1:-1:-1;;;60735:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60720:9;:30::i;50017:191::-;50110:6;;;-1:-1:-1;;;;;50127:17:0;;;-1:-1:-1;;;;;;50127:17:0;;;;;;;50160:40;;50110:6;;;50127:17;50110:6;;50160:40;;50091:16;;50160:40;50017:191;;:::o;52153:118::-;51424:7;;-1:-1:-1;;;51424:7:0;;;;51678:9;51670:38;;;;-1:-1:-1;;;51670:38:0;;13511:2:1;51670:38:0;;;13493:21:1;13550:2;13530:18;;;13523:30;-1:-1:-1;;;13569:18:1;;;13562:46;13625:18;;51670:38:0;13483:166:1;51670:38:0;52213:7:::1;:14:::0;;-1:-1:-1;;;;52213:14:0::1;-1:-1:-1::0;;;52213:14:0::1;::::0;;52243:20:::1;52250:12;21600:10:::0;;21520:98;2608;2666:7;2693:5;2697:1;2693;:5;:::i;:::-;2686:12;2608:98;-1:-1:-1;;;2608:98:0:o;3991:669::-;4063:7;4095:1;4091;:5;4083:34;;;;-1:-1:-1;;;4083:34:0;;15876:2:1;4083:34:0;;;15858:21:1;15915:2;15895:18;;;15888:30;-1:-1:-1;;;15934:18:1;;;15927:46;15990:18;;4083:34:0;15848:166:1;4083:34:0;4134:6;4130:20;;-1:-1:-1;4149:1:0;4142:8;;4130:20;4161:10;4174:5;4178:1;4174;:5;:::i;:::-;4161:18;-1:-1:-1;4204:1:0;4194:6;4199:1;4161:18;4194:6;:::i;:::-;:11;4190:107;;;4279:6;4284:1;4279:2;:6;:::i;:::-;4272:13;;;;;4190:107;4369:9;4381:5;4385:1;4381;:5;:::i;:::-;4369:17;-1:-1:-1;4397:9:0;4409:5;4413:1;4409;:5;:::i;:::-;4397:17;-1:-1:-1;4504:9:0;4516:5;4520:1;4516;:5;:::i;:::-;4504:17;-1:-1:-1;4532:9:0;4544:5;4548:1;4544;:5;:::i;:::-;4532:17;-1:-1:-1;4586:66:0;4636:15;4649:1;4636:8;:1;4532:17;4636:5;:8::i;:::-;:12;;:15::i;:::-;4586:45;4622:8;:1;4628;4622:5;:8::i;:::-;4586:31;4608:8;:1;4614;4608:5;:8::i;:::-;4587:15;4600:1;4587:8;:1;4593;4587:5;:8::i;:::-;:12;;:15::i;:::-;4586:21;;:31::i;:66::-;4579:73;3991:669;-1:-1:-1;;;;;;;;;3991:669:0:o;55995:120::-;56057:14;;56100:6;;56050:57;;-1:-1:-1;;;56050:57:0;;-1:-1:-1;;;;;56100:6:0;;;56050:57;;;8031:51:1;56057:14:0;;;56050:34;;56092:6;;8004:18:1;;56050:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55995:120;:::o;36534:315::-;36689:8;-1:-1:-1;;;;;36680:17:0;:5;-1:-1:-1;;;;;36680:17:0;;;36672:55;;;;-1:-1:-1;;;36672:55:0;;11959:2:1;36672:55:0;;;11941:21:1;11998:2;11978:18;;;11971:30;12037:27;12017:18;;;12010:55;12082:18;;36672:55:0;11931:175:1;36672:55:0;-1:-1:-1;;;;;36738:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36738:46:0;;;;;;;;;;36800:41;;8726::1;;;36800::0;;8699:18:1;36800:41:0;;;;;;;36534:315;;;:::o;31444:::-;31601:28;31611:4;31617:2;31621:7;31601:9;:28::i;:::-;31648:48;31671:4;31677:2;31681:7;31690:5;31648:22;:48::i;:::-;31640:111;;;;-1:-1:-1;;;31640:111:0;;;;;;;:::i;22107:723::-;22163:13;22384:10;22380:53;;-1:-1:-1;;22411:10:0;;;;;;;;;;;;-1:-1:-1;;;22411:10:0;;;;;22107:723::o;22380:53::-;22458:5;22443:12;22499:78;22506:9;;22499:78;;22532:8;;;;:::i;:::-;;-1:-1:-1;22555:10:0;;-1:-1:-1;22563:2:0;22555:10;;:::i;:::-;;;22499:78;;;22587:19;22619:6;22609:17;;;;;;-1:-1:-1;;;22609:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22609:17:0;;22587:39;;22637:154;22644:10;;22637:154;;22671:11;22681:1;22671:11;;:::i;:::-;;-1:-1:-1;22740:10:0;22748:2;22740:5;:10;:::i;:::-;22727:24;;:2;:24;:::i;:::-;22714:39;;22697:6;22704;22697:14;;;;;;-1:-1:-1;;;22697:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;22697:56:0;;;;;;;;-1:-1:-1;22768:11:0;22777:2;22768:11;;:::i;:::-;;;22637:154;;26314:305;26416:4;-1:-1:-1;;;;;;26453:40:0;;-1:-1:-1;;;26453:40:0;;:105;;-1:-1:-1;;;;;;;26510:48:0;;-1:-1:-1;;;26510:48:0;26453:105;:158;;;-1:-1:-1;;;;;;;;;;24846:40:0;;;26575:36;24737:157;56191:155;56293:45;56320:4;56326:2;56330:7;56293:26;:45::i;33056:110::-;33132:26;33142:2;33146:7;33132:26;;;;;;;;;;;;:9;:26::i;3007:98::-;3065:7;3092:5;3096:1;3092;:5;:::i;1870:98::-;1928:7;1955:5;1959:1;1955;:5;:::i;37414:799::-;37569:4;-1:-1:-1;;;;;37590:13:0;;13858:19;:23;37586:620;;37626:72;;-1:-1:-1;;;37626:72:0;;-1:-1:-1;;;;;37626:36:0;;;;;:72;;21600:10;;37677:4;;37683:7;;37692:5;;37626:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37626:72:0;;;;;;;;-1:-1:-1;;37626:72:0;;;;;;;;;;;;:::i;:::-;;;37622:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37868:13:0;;37864:272;;37911:60;;-1:-1:-1;;;37911:60:0;;;;;;;:::i;37864:272::-;38086:6;38080:13;38071:6;38067:2;38063:15;38056:38;37622:529;-1:-1:-1;;;;;;37749:51:0;-1:-1:-1;;;37749:51:0;;-1:-1:-1;37742:58:0;;37586:620;-1:-1:-1;38190:4:0;37414:799;;;;;;:::o;43207:589::-;-1:-1:-1;;;;;43413:18:0;;43409:187;;43448:40;43480:7;44623:10;:17;;44596:24;;;;:15;:24;;;;;:44;;;44651:24;;;;;;;;;;;;44519:164;43448:40;43409:187;;;43518:2;-1:-1:-1;;;;;43510:10:0;:4;-1:-1:-1;;;;;43510:10:0;;43506:90;;43537:47;43570:4;43576:7;43537:32;:47::i;:::-;-1:-1:-1;;;;;43610:16:0;;43606:183;;43643:45;43680:7;43643:36;:45::i;43606:183::-;43716:4;-1:-1:-1;;;;;43710:10:0;:2;-1:-1:-1;;;;;43710:10:0;;43706:83;;43737:40;43765:2;43769:7;43737:27;:40::i;33393:321::-;33523:18;33529:2;33533:7;33523:5;:18::i;:::-;33574:54;33605:1;33609:2;33613:7;33622:5;33574:22;:54::i;:::-;33552:154;;;;-1:-1:-1;;;33552:154:0;;;;;;;:::i;45310:988::-;45576:22;45626:1;45601:22;45618:4;45601:16;:22::i;:::-;:26;;;;:::i;:::-;45638:18;45659:26;;;:17;:26;;;;;;45576:51;;-1:-1:-1;45792:28:0;;;45788:328;;-1:-1:-1;;;;;45859:18:0;;45837:19;45859:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45910:30;;;;;;:44;;;46027:30;;:17;:30;;;;;:43;;;45788:328;-1:-1:-1;46212:26:0;;;;:17;:26;;;;;;;;46205:33;;;-1:-1:-1;;;;;46256:18:0;;;;;:12;:18;;;;;:34;;;;;;;46249:41;45310:988::o;46593:1079::-;46871:10;:17;46846:22;;46871:21;;46891:1;;46871:21;:::i;:::-;46903:18;46924:24;;;:15;:24;;;;;;47297:10;:26;;46846:46;;-1:-1:-1;46924:24:0;;46846:46;;47297:26;;;;-1:-1:-1;;;47297:26:0;;;;;;;;;;;;;;;;;47275:48;;47361:11;47336:10;47347;47336:22;;;;;;-1:-1:-1;;;47336:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;47441:28;;;:15;:28;;;;;;;:41;;;47613:24;;;;;47606:31;47648:10;:16;;;;;-1:-1:-1;;;47648:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;46593:1079;;;;:::o;44097:221::-;44182:14;44199:20;44216:2;44199:16;:20::i;:::-;-1:-1:-1;;;;;44230:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44275:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44097:221:0:o;34050:439::-;-1:-1:-1;;;;;34130:16:0;;34122:61;;;;-1:-1:-1;;;34122:61:0;;15102:2:1;34122:61:0;;;15084:21:1;;;15121:18;;;15114:30;15180:34;15160:18;;;15153:62;15232:18;;34122:61:0;15074:182:1;34122:61:0;32137:4;32161:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32161:16:0;:30;34194:58;;;;-1:-1:-1;;;34194:58:0;;11197:2:1;34194:58:0;;;11179:21:1;11236:2;11216:18;;;11209:30;11275;11255:18;;;11248:58;11323:18;;34194:58:0;11169:178:1;34194:58:0;34265:45;34294:1;34298:2;34302:7;34265:20;:45::i;:::-;-1:-1:-1;;;;;34323:13:0;;;;;;:9;:13;;;;;:18;;34340:1;;34323:13;:18;;34340:1;;34323:18;:::i;:::-;;;;-1:-1:-1;;34352:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34352:21:0;-1:-1:-1;;;;;34352:21:0;;;;;;;;34391:33;;34352:16;;;34391:33;;34352:16;;34391:33;59465:18:::1;59391:100:::0;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;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:2;;;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:2;;;532:1;529;522:12;491:2;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;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:196;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:325::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2615:28;2637:5;2615:28;:::i;:::-;2662:5;2652:15;;;2432:241;;;;;:::o;2678:264::-;2746:6;2754;2807:2;2795:9;2786:7;2782:23;2778:32;2775:2;;;2828:6;2820;2813:22;2775:2;2856:29;2875:9;2856:29;:::i;:::-;2846:39;2932:2;2917:18;;;;2904:32;;-1:-1:-1;;;2765:177:1:o;2947:255::-;3014:6;3067:2;3055:9;3046:7;3042:23;3038:32;3035:2;;;3088:6;3080;3073:22;3035:2;3125:9;3119:16;3144:28;3166:5;3144:28;:::i;3207:255::-;3265:6;3318:2;3306:9;3297:7;3293:23;3289:32;3286:2;;;3339:6;3331;3324:22;3286:2;3383:9;3370:23;3402:30;3426:5;3402:30;:::i;3467:259::-;3536:6;3589:2;3577:9;3568:7;3564:23;3560:32;3557:2;;;3610:6;3602;3595:22;3557:2;3647:9;3641:16;3666:30;3690:5;3666:30;:::i;3731:480::-;3800:6;3853:2;3841:9;3832:7;3828:23;3824:32;3821:2;;;3874:6;3866;3859:22;3821:2;3919:9;3906:23;3952:18;3944:6;3941:30;3938:2;;;3989:6;3981;3974:22;3938:2;4017:22;;4070:4;4062:13;;4058:27;-1:-1:-1;4048:2:1;;4104:6;4096;4089:22;4048:2;4132:73;4197:7;4192:2;4179:16;4174:2;4170;4166:11;4132:73;:::i;4216:292::-;4274:6;4327:2;4315:9;4306:7;4302:23;4298:32;4295:2;;;4348:6;4340;4333:22;4295:2;4392:9;4379:23;4442:6;4435:5;4431:18;4424:5;4421:29;4411:2;;4469:6;4461;4454:22;4513:190;4572:6;4625:2;4613:9;4604:7;4600:23;4596:32;4593:2;;;4646:6;4638;4631:22;4593:2;-1:-1:-1;4674:23:1;;4583:120;-1:-1:-1;4583:120:1:o;4708:831::-;4800:6;4808;4816;4869:2;4857:9;4848:7;4844:23;4840:32;4837:2;;;4890:6;4882;4875:22;4837:2;4934:9;4921:23;4984:4;4977:5;4973:16;4966:5;4963:27;4953:2;;5009:6;5001;4994:22;4953:2;5037:5;-1:-1:-1;5093:2:1;5078:18;;5065:32;5116:18;5146:14;;;5143:2;;;5178:6;5170;5163:22;5143:2;5221:6;5210:9;5206:22;5196:32;;5266:7;5259:4;5255:2;5251:13;5247:27;5237:2;;5293:6;5285;5278:22;5237:2;5338;5325:16;5364:2;5356:6;5353:14;5350:2;;;5385:6;5377;5370:22;5350:2;5443:7;5438:2;5428:6;5425:1;5421:14;5417:2;5413:23;5409:32;5406:45;5403:2;;;5469:6;5461;5454:22;5403:2;5505;5501;5497:11;5487:21;;5527:6;5517:16;;;;;4827:712;;;;;:::o;5544:257::-;5585:3;5623:5;5617:12;5650:6;5645:3;5638:19;5666:63;5722:6;5715:4;5710:3;5706:14;5699:4;5692:5;5688:16;5666:63;:::i;:::-;5783:2;5762:15;-1:-1:-1;;5758:29:1;5749:39;;;;5790:4;5745:50;;5593:208;-1:-1:-1;;5593:208:1:o;5806:185::-;5848:3;5886:5;5880:12;5901:52;5946:6;5941:3;5934:4;5927:5;5923:16;5901:52;:::i;:::-;5969:16;;;;;5856:135;-1:-1:-1;;5856:135:1:o;6233:1437::-;6611:3;6640;6675:6;6669:13;6705:3;6727:1;6755:9;6751:2;6747:18;6737:28;;6815:2;6804:9;6800:18;6837;6827:2;;6881:4;6873:6;6869:17;6859:27;;6827:2;6907;6955;6947:6;6944:14;6924:18;6921:38;6918:2;;;-1:-1:-1;;;6982:33:1;;7038:4;7035:1;7028:15;7068:4;6989:3;7056:17;6918:2;7099:18;7126:104;;;;7244:1;7239:322;;;;7092:469;;7126:104;-1:-1:-1;;7159:24:1;;7147:37;;7204:16;;;;-1:-1:-1;7126:104:1;;7239:322;20256:4;20275:17;;;20325:4;20309:21;;7334:3;7350:165;7364:6;7361:1;7358:13;7350:165;;;7442:14;;7429:11;;;7422:35;7485:16;;;;7379:10;;7350:165;;;7354:3;;7544:6;7539:3;7535:16;7528:23;;7092:469;;;;;;;7577:87;7602:61;7628:34;7658:3;-1:-1:-1;;;6179:16:1;;6220:1;6211:11;;6169:59;7628:34;7620:6;7602:61;:::i;:::-;-1:-1:-1;;;6056:20:1;;6101:1;6092:11;;6046:63;7577:87;7570:94;6619:1051;-1:-1:-1;;;;;6619:1051:1:o;8093:488::-;-1:-1:-1;;;;;8362:15:1;;;8344:34;;8414:15;;8409:2;8394:18;;8387:43;8461:2;8446:18;;8439:34;;;8509:3;8504:2;8489:18;;8482:31;;;8287:4;;8530:45;;8555:19;;8547:6;8530:45;:::i;:::-;8522:53;8296:285;-1:-1:-1;;;;;;8296:285:1:o;8778:219::-;8927:2;8916:9;8909:21;8890:4;8947:44;8987:2;8976:9;8972:18;8964:6;8947:44;:::i;9763:414::-;9965:2;9947:21;;;10004:2;9984:18;;;9977:30;10043:34;10038:2;10023:18;;10016:62;-1:-1:-1;;;10109:2:1;10094:18;;10087:48;10167:3;10152:19;;9937:240::o;16019:356::-;16221:2;16203:21;;;16240:18;;;16233:30;16299:34;16294:2;16279:18;;16272:62;16366:2;16351:18;;16193:182::o;17198:413::-;17400:2;17382:21;;;17439:2;17419:18;;;17412:30;17478:34;17473:2;17458:18;;17451:62;-1:-1:-1;;;17544:2:1;17529:18;;17522:47;17601:3;17586:19;;17372:239::o;20341:128::-;20381:3;20412:1;20408:6;20405:1;20402:13;20399:2;;;20418:18;;:::i;:::-;-1:-1:-1;20454:9:1;;20389:80::o;20474:204::-;20512:3;20548:4;20545:1;20541:12;20580:4;20577:1;20573:12;20615:3;20609:4;20605:14;20600:3;20597:23;20594:2;;;20623:18;;:::i;:::-;20659:13;;20520:158;-1:-1:-1;;;20520:158:1:o;20683:120::-;20723:1;20749;20739:2;;20754:18;;:::i;:::-;-1:-1:-1;20788:9:1;;20729:74::o;20808:168::-;20848:7;20914:1;20910;20906:6;20902:14;20899:1;20896:21;20891:1;20884:9;20877:17;20873:45;20870:2;;;20921:18;;:::i;:::-;-1:-1:-1;20961:9:1;;20860:116::o;20981:125::-;21021:4;21049:1;21046;21043:8;21040:2;;;21054:18;;:::i;:::-;-1:-1:-1;21091:9:1;;21030:76::o;21111:258::-;21183:1;21193:113;21207:6;21204:1;21201:13;21193:113;;;21283:11;;;21277:18;21264:11;;;21257:39;21229:2;21222:10;21193:113;;;21324:6;21321:1;21318:13;21315:2;;;-1:-1:-1;;21359:1:1;21341:16;;21334:27;21164:205::o;21374:380::-;21453:1;21449:12;;;;21496;;;21517:2;;21571:4;21563:6;21559:17;21549:27;;21517:2;21624;21616:6;21613:14;21593:18;21590:38;21587:2;;;21670:10;21665:3;21661:20;21658:1;21651:31;21705:4;21702:1;21695:15;21733:4;21730:1;21723:15;21587:2;;21429:325;;;:::o;21759:135::-;21798:3;-1:-1:-1;;21819:17:1;;21816:2;;;21839:18;;:::i;:::-;-1:-1:-1;21886:1:1;21875:13;;21806:88::o;21899:112::-;21931:1;21957;21947:2;;21962:18;;:::i;:::-;-1:-1:-1;21996:9:1;;21937:74::o;22016:127::-;22077:10;22072:3;22068:20;22065:1;22058:31;22108:4;22105:1;22098:15;22132:4;22129:1;22122:15;22148:127;22209:10;22204:3;22200:20;22197:1;22190:31;22240:4;22237:1;22230:15;22264:4;22261:1;22254:15;22280:127;22341:10;22336:3;22332:20;22329:1;22322:31;22372:4;22369:1;22362:15;22396:4;22393:1;22386:15;22412:118;22498:5;22491:13;22484:21;22477:5;22474:32;22464:2;;22520:1;22517;22510:12;22535:131;-1:-1:-1;;;;;;22609:32:1;;22599:43;;22589:2;;22656:1;22653;22646:12
Swarm Source
ipfs://a5b1dcc4daff3c421dfde78f9f6d32e2f69994ed4bacca10abdab4f78dd67087
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.