Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
131 SGapes
Holders
72
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SGapesLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
SuperGapes
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-18 */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (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 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (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); } /** * @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); } /** * @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 of token that is not own"); 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); } /** * @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 {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: SuperGapes.sol pragma solidity ^0.8.2; contract SuperGapes is ERC721, ERC721Enumerable, Ownable { using Counters for Counters.Counter; using Address for address; Counters.Counter private _tokenIdCounter; /* ERC721Enumerable Faces = ERC721Enumerable(0x0D3dcc1d43eadc4c9083BbBDd8bCe840e4D08F3E); ERC721Enumerable Nature = ERC721Enumerable(0x86FB9B866C25c54F1F11ec28016308c8a67840b6); ERC721Enumerable Space = ERC721Enumerable(0x1183Eec45441c3B4dF32E3410e0FB5B7189EB303); ERC721Enumerable Gape = ERC721Enumerable(0xBaE6f981dc151CfC633212f06A9c5B4E37920454); */ ERC721Enumerable public Gape; ERC721Enumerable public Faces; ERC721Enumerable public Nature; ERC721Enumerable public Space; address public constant DEAD = 0x000000000000000000000000000000000000dEaD; string private baseURI = "ipfs://QmX95SB7JxFo8sSeF8shqm9Vvss5GxiYDSxSddLZijPNWd/"; string private _contractURI = "ipfs://QmR5BzqegvBsGWMJv7Ha9P7dvuvsTMKGeUJB3jmpNSf5cv"; string public constant PROVANCE = "24fb29d08392a446be092429f16aa8e9fe2f89e64a1140f0bc87037184f2794e"; address payable internal devwallet = payable(0x376Fd64563274bb4fCde4eBCFbAbEde3503688Ba); uint256 public constant MAXSUPPLY = 448; uint256 public saleStart; bool public enablePaid; uint256 public mintPrice = 0.2 ether; mapping(uint256 => bool) public FacesMinted; mapping(uint256 => bool) public NatureMinted; mapping(uint256 => bool) public SpaceMinted; bool public frozenMetadata; event PermanentURI(string _baseURI, string _contractURI); constructor(address _Gape, address _Faces, address _Nature, address _Space, uint256 _saleStart) ERC721("Super Gapes", "SGapes") { Gape = ERC721Enumerable(_Gape); Faces = ERC721Enumerable(_Faces); Nature = ERC721Enumerable(_Nature); Space = ERC721Enumerable(_Space); saleStart = _saleStart; } function _baseURI() internal view override returns (string memory) { return baseURI; } function setBaseUri(string memory baseURI_) external onlyOwner { require(!frozenMetadata,"Metadata already frozen"); baseURI = baseURI_; } function contractURI() public view returns (string memory) { return _contractURI; } function setContractURI(string memory contractURI_) external onlyOwner { require(!frozenMetadata,"Metadata already frozen"); _contractURI = contractURI_; } function freezeMetadata() external onlyOwner { frozenMetadata = true; emit PermanentURI(baseURI, _contractURI); } function mintMultiple(uint256 numberOfTokens) public { require(saleStart <= block.timestamp, "Sale must be active to mint new NFTs"); require(totalSupply() + numberOfTokens <= MAXSUPPLY, "Purchase would exceed max supply"); require(numberOfTokens <= getMintpass(_msgSender()), "Your mintpass doesn't include that many mints"); //require all approvals for contracts, easier way out require(Gape.isApprovedForAll(_msgSender(), address(this)), "contract not approved"); for (uint256 index = 0; index < numberOfTokens; index++) { _mintPass(getIdGape(_msgSender()), getIdFaces(_msgSender()),getIdNature(_msgSender()),getIdSpace(_msgSender())); } } function mintOne(uint256 idGape, uint256 idFaces, uint256 idNature, uint256 idSpace) public { require(saleStart <= block.timestamp, "Sale must be active to mint new NFTs"); require(totalSupply() + 1 <= MAXSUPPLY, "Purchase would exceed max supply"); require(Faces.ownerOf(idFaces) == _msgSender(), "Sender is not the owner of the Faces NFT"); require(Nature.ownerOf(idNature) == _msgSender(), "Sender is not the owner of the Nature NFT"); require(Space.ownerOf(idSpace) == _msgSender(), "Sender is not the owner of the Space NFT"); //require all approvals for contracts, easier way out require(Gape.isApprovedForAll(_msgSender(), address(this)), "contract not approved"); _mintPass(idGape, idFaces, idNature, idSpace); } function mintPaid() public payable { require(saleStart <= block.timestamp, "Sale must be active to mint new NFTs"); require(enablePaid, "Paid mint isn't enabled yet"); require(totalSupply() + 1 <= MAXSUPPLY, "Purchase would exceed max supply"); require(msg.value >= mintPrice, "Not paid enough"); //mint _safeMint(_msgSender(), _tokenIdCounter.current()); _tokenIdCounter.increment(); } function _mintPass(uint256 idGape, uint256 idFaces, uint256 idNature, uint256 idSpace) internal { require(!FacesMinted[idFaces], "This GAN Face has already been claimed in a mintpass"); require(!NatureMinted[idNature], "This GAN Nature has already been claimed in a mintpass"); require(!SpaceMinted[idSpace], "This GAN Space has already been claimed in a mintpass"); //mint _safeMint(_msgSender(), _tokenIdCounter.current()); _tokenIdCounter.increment(); //burn Gape.transferFrom(_msgSender(), DEAD, idGape); //set nfts as claimed FacesMinted[idFaces] = true; NatureMinted[idNature] = true; SpaceMinted[idSpace] = true; } // The following functions are overrides required by Solidity. function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } function setSaleStart(uint256 _saleStart) public onlyOwner { saleStart = _saleStart; } function flipPaidMint() public onlyOwner { enablePaid = !enablePaid; } function withdraw() external { // This forwards all available gas. Be sure to check the return value! (bool success, ) = devwallet.call{value : address(this).balance}(""); require(success, "Transfer failed."); } function getMintpass(address sender) public view returns (uint256 eligible) { if (checkFaces(sender) < checkNature (sender) && checkFaces(sender) < checkSpace (sender) && checkFaces(sender) < checkGape(sender)) return checkFaces(sender); if (checkNature(sender) < checkSpace (sender) && checkNature(sender) < checkGape(sender)) return checkNature(sender); if (checkSpace(sender) < checkGape (sender)) return checkSpace(sender); return checkGape (sender); } function checkFaces(address sender) public view returns (uint256 mintable) { if (Faces.balanceOf(sender) == 0) return 0; for (uint256 index = 0; index < Faces.balanceOf(sender); index++) { if (!FacesMinted[Faces.tokenOfOwnerByIndex(sender, index)]) mintable += 1; } } function checkNature(address sender) public view returns (uint256 mintable) { if (Nature.balanceOf(sender) == 0) return 0; for (uint256 index = 0; index < Nature.balanceOf(sender); index++) { if (!NatureMinted[Nature.tokenOfOwnerByIndex(sender, index)]) mintable += 1; } } function checkSpace(address sender) public view returns (uint256 mintable) { if (Space.balanceOf(sender) == 0) return 0; for (uint256 index = 0; index < Space.balanceOf(sender); index++) { if (!SpaceMinted[Space.tokenOfOwnerByIndex(sender, index)]) mintable += 1; } } function checkGape(address sender) public view returns (uint256 mintable) { return Gape.balanceOf(sender); } function getIdFaces(address sender) public view returns (uint256 id) { for (uint256 index = 0; index < Faces.balanceOf(sender); index++) { if (!FacesMinted[Faces.tokenOfOwnerByIndex(sender, index)]) return Faces.tokenOfOwnerByIndex(sender, index); } } function getIdNature(address sender) public view returns (uint256 id) { for (uint256 index = 0; index < Nature.balanceOf(sender); index++) { if (!NatureMinted[Nature.tokenOfOwnerByIndex(sender, index)]) return Nature.tokenOfOwnerByIndex(sender, index); } } function getIdSpace(address sender) public view returns (uint256 id) { for (uint256 index = 0; index < Space.balanceOf(sender); index++) { if (!SpaceMinted[Space.tokenOfOwnerByIndex(sender, index)]) return Space.tokenOfOwnerByIndex(sender, index); } } function getIdGape(address sender) public view returns (uint256 id) { return Gape.tokenOfOwnerByIndex(sender, 0); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_Gape","type":"address"},{"internalType":"address","name":"_Faces","type":"address"},{"internalType":"address","name":"_Nature","type":"address"},{"internalType":"address","name":"_Space","type":"address"},{"internalType":"uint256","name":"_saleStart","type":"uint256"}],"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":"string","name":"_baseURI","type":"string"},{"indexed":false,"internalType":"string","name":"_contractURI","type":"string"}],"name":"PermanentURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Faces","outputs":[{"internalType":"contract ERC721Enumerable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"FacesMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Gape","outputs":[{"internalType":"contract ERC721Enumerable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXSUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Nature","outputs":[{"internalType":"contract ERC721Enumerable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"NatureMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Space","outputs":[{"internalType":"contract ERC721Enumerable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"SpaceMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"checkFaces","outputs":[{"internalType":"uint256","name":"mintable","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"checkGape","outputs":[{"internalType":"uint256","name":"mintable","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"checkNature","outputs":[{"internalType":"uint256","name":"mintable","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"checkSpace","outputs":[{"internalType":"uint256","name":"mintable","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enablePaid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPaidMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frozenMetadata","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"getIdFaces","outputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"getIdGape","outputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"getIdNature","outputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"getIdSpace","outputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"getMintpass","outputs":[{"internalType":"uint256","name":"eligible","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":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"idGape","type":"uint256"},{"internalType":"uint256","name":"idFaces","type":"uint256"},{"internalType":"uint256","name":"idNature","type":"uint256"},{"internalType":"uint256","name":"idSpace","type":"uint256"}],"name":"mintOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPaid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"saleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStart","type":"uint256"}],"name":"setSaleStart","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405260366080818152906200442560a03980516200002991601091602090910190620001ee565b506040518060600160405280603581526020016200445b6035913980516200005a91601191602090910190620001ee565b50601280546001600160a01b03191673376fd64563274bb4fcde4ebcfbabede3503688ba1790556702c68af0bb1400006015553480156200009a57600080fd5b506040516200449038038062004490833981016040819052620000bd91620002b1565b604080518082018252600b81526a537570657220476170657360a81b60208083019182528351808501909452600684526553476170657360d01b9084015281519192916200010e91600091620001ee565b50805162000124906001906020840190620001ee565b505050620001416200013b6200019860201b60201c565b6200019c565b600c80546001600160a01b03199081166001600160a01b0397881617909155600d8054821695871695909517909455600e8054851693861693909317909255600f8054909316931692909217905560135562000355565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001fc9062000318565b90600052602060002090601f0160209004810192826200022057600085556200026b565b82601f106200023b57805160ff19168380011785556200026b565b828001600101855582156200026b579182015b828111156200026b5782518255916020019190600101906200024e565b50620002799291506200027d565b5090565b5b808211156200027957600081556001016200027e565b80516001600160a01b0381168114620002ac57600080fd5b919050565b600080600080600060a08688031215620002ca57600080fd5b620002d58662000294565b9450620002e56020870162000294565b9350620002f56040870162000294565b9250620003056060870162000294565b9150608086015190509295509295909350565b600181811c908216806200032d57607f821691505b602082108114156200034f57634e487b7160e01b600052602260045260246000fd5b50919050565b6140c080620003656000396000f3fe60806040526004361061033f5760003560e01c806377fcfa74116101b0578063af48b37f116100ec578063e81574bd11610095578063f2fde38b1161006f578063f2fde38b14610941578063f8999e6614610961578063fb6efac714610981578063fde7ac58146109a157600080fd5b8063e81574bd146108c3578063e8a3d485146108e3578063e985e9c5146108f857600080fd5b8063c00ab6b2116100c6578063c00ab6b21461086e578063c87b56dd1461088e578063d111515d146108ae57600080fd5b8063af48b37f1461080e578063b88d4fde1461082e578063b98573b91461084e57600080fd5b8063938e3d7b11610159578063a1fc670511610133578063a1fc67051461079e578063a22cb465146107b8578063ab0bcc41146107d8578063abbb5a55146107ee57600080fd5b8063938e3d7b1461074957806395d89b4114610769578063a0bcfc7f1461077e57600080fd5b80638a500fda1161018a5780638a500fda146106eb5780638da5cb5b1461070b5780638e99d2a81461072957600080fd5b806377fcfa74146106915780637ed0008b146106b15780638529ccad146106d157600080fd5b80632fab51241161027f5780636352211e116102285780636ad1b27e116102025780636ad1b27e1461062657806370a0823114610646578063715018a614610666578063758b4e861461067b57600080fd5b80636352211e146105e85780636817c76c1461060857806369907b9b1461061e57600080fd5b80633ccfd60b116102595780633ccfd60b1461059357806342842e0e146105a85780634f6ccce7146105c857600080fd5b80632fab51241461051357806333e82d8014610543578063394885f01461056357600080fd5b806315b6ba0e116102ec57806324624907116102c6578063246249071461048e578063271cc331146104be5780632f181f54146104d35780632f745c59146104f357600080fd5b806315b6ba0e1461043957806318160ddd1461045957806323b872dd1461046e57600080fd5b806306fdde031161031d57806306fdde03146103d5578063081812fc146103f7578063095ea7b31461041757600080fd5b806301ffc9a714610344578063029fc55f1461037957806303fd2a45146103a7575b600080fd5b34801561035057600080fd5b5061036461035f366004613a48565b6109b6565b60405190151581526020015b60405180910390f35b34801561038557600080fd5b50610399610394366004613a7a565b6109c7565b604051908152602001610370565b3480156103b357600080fd5b506103bd61dead81565b6040516001600160a01b039091168152602001610370565b3480156103e157600080fd5b506103ea610b94565b6040516103709190613aef565b34801561040357600080fd5b506103bd610412366004613b02565b610c26565b34801561042357600080fd5b50610437610432366004613b1b565b610cd1565b005b34801561044557600080fd5b50610399610454366004613a7a565b610e03565b34801561046557600080fd5b50600854610399565b34801561047a57600080fd5b50610437610489366004613b47565b610fd5565b34801561049a57600080fd5b506103646104a9366004613b02565b60166020526000908152604090205460ff1681565b3480156104ca57600080fd5b5061043761105c565b3480156104df57600080fd5b506104376104ee366004613b02565b6110ca565b3480156104ff57600080fd5b5061039961050e366004613b1b565b611129565b34801561051f57600080fd5b5061036461052e366004613b02565b60186020526000908152604090205460ff1681565b34801561054f57600080fd5b5061039961055e366004613a7a565b6111d1565b34801561056f57600080fd5b5061036461057e366004613b02565b60176020526000908152604090205460ff1681565b34801561059f57600080fd5b50610437611290565b3480156105b457600080fd5b506104376105c3366004613b47565b611336565b3480156105d457600080fd5b506103996105e3366004613b02565b611351565b3480156105f457600080fd5b506103bd610603366004613b02565b6113f5565b34801561061457600080fd5b5061039960155481565b610437611480565b34801561063257600080fd5b50610399610641366004613a7a565b611604565b34801561065257600080fd5b50610399610661366004613a7a565b61168a565b34801561067257600080fd5b50610437611724565b34801561068757600080fd5b506103996101c081565b34801561069d57600080fd5b506103996106ac366004613a7a565b611788565b3480156106bd57600080fd5b506103996106cc366004613a7a565b6118fc565b3480156106dd57600080fd5b506019546103649060ff1681565b3480156106f757600080fd5b50610399610706366004613a7a565b611ace565b34801561071757600080fd5b50600a546001600160a01b03166103bd565b34801561073557600080fd5b50600d546103bd906001600160a01b031681565b34801561075557600080fd5b50610437610764366004613c14565b611b01565b34801561077557600080fd5b506103ea611bc5565b34801561078a57600080fd5b50610437610799366004613c14565b611bd4565b3480156107aa57600080fd5b506014546103649060ff1681565b3480156107c457600080fd5b506104376107d3366004613c6b565b611c94565b3480156107e457600080fd5b5061039960135481565b3480156107fa57600080fd5b50610437610809366004613b02565b611c9f565b34801561081a57600080fd5b50610399610829366004613a7a565b611f04565b34801561083a57600080fd5b50610437610849366004613ca4565b612078565b34801561085a57600080fd5b50600e546103bd906001600160a01b031681565b34801561087a57600080fd5b50600c546103bd906001600160a01b031681565b34801561089a57600080fd5b506103ea6108a9366004613b02565b612106565b3480156108ba57600080fd5b506104376121ee565b3480156108cf57600080fd5b506103996108de366004613a7a565b612293565b3480156108ef57600080fd5b506103ea612465565b34801561090457600080fd5b50610364610913366004613d24565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561094d57600080fd5b5061043761095c366004613a7a565b612474565b34801561096d57600080fd5b5061043761097c366004613d52565b612553565b34801561098d57600080fd5b50600f546103bd906001600160a01b031681565b3480156109ad57600080fd5b506103ea6129f4565b60006109c182612a10565b92915050565b6000805b600f546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b158015610a1057600080fd5b505afa158015610a24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a489190613d84565b811015610b8e57600f54604051632f745c5960e01b81526001600160a01b03858116600483015260248201849052601892600092911690632f745c599060440160206040518083038186803b158015610aa057600080fd5b505afa158015610ab4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad89190613d84565b815260208101919091526040016000205460ff16610b7c57600f54604051632f745c5960e01b81526001600160a01b0385811660048301526024820184905290911690632f745c59906044015b60206040518083038186803b158015610b3d57600080fd5b505afa158015610b51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b759190613d84565b9392505050565b80610b8681613db3565b9150506109cb565b50919050565b606060008054610ba390613dec565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcf90613dec565b8015610c1c5780601f10610bf157610100808354040283529160200191610c1c565b820191906000526020600020905b815481529060010190602001808311610bff57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cb55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610cdc826113f5565b9050806001600160a01b0316836001600160a01b03161415610d665760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610cac565b336001600160a01b0382161480610d825750610d828133610913565b610df45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610cac565b610dfe8383612a4e565b505050565b600d546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b158015610e4957600080fd5b505afa158015610e5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e819190613d84565b610e8d57506000919050565b60005b600d546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b158015610ed557600080fd5b505afa158015610ee9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0d9190613d84565b811015610b8e57600d54604051632f745c5960e01b81526001600160a01b03858116600483015260248201849052601692600092911690632f745c599060440160206040518083038186803b158015610f6557600080fd5b505afa158015610f79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9d9190613d84565b815260208101919091526040016000205460ff16610fc357610fc0600183613e21565b91505b80610fcd81613db3565b915050610e90565b610fdf3382612ac9565b6110515760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610cac565b610dfe838383612bd1565b600a546001600160a01b031633146110b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b6014805460ff19811660ff90911615179055565b600a546001600160a01b031633146111245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b601355565b60006111348361168a565b82106111a85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610cac565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60006111dc82612293565b6111e583610e03565b10801561120157506111f6826118fc565b6111ff83610e03565b105b801561121c575061121182611ace565b61121a83610e03565b105b1561122a576109c182610e03565b611233826118fc565b61123c83612293565b108015611258575061124d82611ace565b61125683612293565b105b15611266576109c182612293565b61126f82611ace565b611278836118fc565b1015611287576109c1826118fc565b6109c182611ace565b6012546040516000916001600160a01b03169047908381818185875af1925050503d80600081146112dd576040519150601f19603f3d011682016040523d82523d6000602084013e6112e2565b606091505b50509050806113335760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e000000000000000000000000000000006044820152606401610cac565b50565b610dfe83838360405180602001604052806000815250612078565b600061135c60085490565b82106113d05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610cac565b600882815481106113e3576113e3613e39565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806109c15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610cac565b4260135411156114de5760405162461bcd60e51b8152602060048201526024808201527f53616c65206d7573742062652061637469766520746f206d696e74206e6577206044820152634e46547360e01b6064820152608401610cac565b60145460ff166115305760405162461bcd60e51b815260206004820152601b60248201527f50616964206d696e742069736e277420656e61626c65642079657400000000006044820152606401610cac565b6101c061153c60085490565b611547906001613e21565b11156115955760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610cac565b6015543410156115e75760405162461bcd60e51b815260206004820152600f60248201527f4e6f74207061696420656e6f75676800000000000000000000000000000000006044820152606401610cac565b6115f4335b600b54612db6565b611602600b80546001019055565b565b600c54604051632f745c5960e01b81526001600160a01b038381166004830152600060248301819052921690632f745c59906044015b60206040518083038186803b15801561165257600080fd5b505afa158015611666573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c19190613d84565b60006001600160a01b0382166117085760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610cac565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461177e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b6116026000612dd0565b6000805b600e546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b1580156117d157600080fd5b505afa1580156117e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118099190613d84565b811015610b8e57600e54604051632f745c5960e01b81526001600160a01b03858116600483015260248201849052601792600092911690632f745c599060440160206040518083038186803b15801561186157600080fd5b505afa158015611875573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118999190613d84565b815260208101919091526040016000205460ff166118ea57600e54604051632f745c5960e01b81526001600160a01b0385811660048301526024820184905290911690632f745c5990604401610b25565b806118f481613db3565b91505061178c565b600f546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b15801561194257600080fd5b505afa158015611956573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061197a9190613d84565b61198657506000919050565b60005b600f546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b1580156119ce57600080fd5b505afa1580156119e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a069190613d84565b811015610b8e57600f54604051632f745c5960e01b81526001600160a01b03858116600483015260248201849052601892600092911690632f745c599060440160206040518083038186803b158015611a5e57600080fd5b505afa158015611a72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a969190613d84565b815260208101919091526040016000205460ff16611abc57611ab9600183613e21565b91505b80611ac681613db3565b915050611989565b600c546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240161163a565b600a546001600160a01b03163314611b5b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b60195460ff1615611bae5760405162461bcd60e51b815260206004820152601760248201527f4d6574616461746120616c72656164792066726f7a656e0000000000000000006044820152606401610cac565b8051611bc1906011906020840190613999565b5050565b606060018054610ba390613dec565b600a546001600160a01b03163314611c2e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b60195460ff1615611c815760405162461bcd60e51b815260206004820152601760248201527f4d6574616461746120616c72656164792066726f7a656e0000000000000000006044820152606401610cac565b8051611bc1906010906020840190613999565b611bc1338383612e2f565b426013541115611cfd5760405162461bcd60e51b8152602060048201526024808201527f53616c65206d7573742062652061637469766520746f206d696e74206e6577206044820152634e46547360e01b6064820152608401610cac565b6101c081611d0a60085490565b611d149190613e21565b1115611d625760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610cac565b611d6b336111d1565b811115611de05760405162461bcd60e51b815260206004820152602d60248201527f596f7572206d696e747061737320646f65736e277420696e636c75646520746860448201527f6174206d616e79206d696e7473000000000000000000000000000000000000006064820152608401610cac565b600c546001600160a01b031663e985e9c5336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260440160206040518083038186803b158015611e3757600080fd5b505afa158015611e4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e6f9190613e4f565b611ebb5760405162461bcd60e51b815260206004820152601560248201527f636f6e7472616374206e6f7420617070726f76656400000000000000000000006044820152606401610cac565b60005b81811015611bc157611ef2611ed233611604565b611edb33611f04565b611ee433611788565b611eed336109c7565b612efe565b80611efc81613db3565b915050611ebe565b6000805b600d546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b158015611f4d57600080fd5b505afa158015611f61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f859190613d84565b811015610b8e57600d54604051632f745c5960e01b81526001600160a01b03858116600483015260248201849052601692600092911690632f745c599060440160206040518083038186803b158015611fdd57600080fd5b505afa158015611ff1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120159190613d84565b815260208101919091526040016000205460ff1661206657600d54604051632f745c5960e01b81526001600160a01b0385811660048301526024820184905290911690632f745c5990604401610b25565b8061207081613db3565b915050611f08565b6120823383612ac9565b6120f45760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610cac565b61210084848484613168565b50505050565b6000818152600260205260409020546060906001600160a01b03166121935760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610cac565b600061219d6131f1565b905060008151116121bd5760405180602001604052806000815250610b75565b806121c784613200565b6040516020016121d8929190613e6c565b6040516020818303038152906040529392505050565b600a546001600160a01b031633146122485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b6019805460ff191660011790556040517fda0b8b42585e8cd6d16d1f253a7ca4dd4ebeb6741418c1e07e798e0934136e639061228990601090601190613f3b565b60405180910390a1565b600e546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b1580156122d957600080fd5b505afa1580156122ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123119190613d84565b61231d57506000919050565b60005b600e546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b15801561236557600080fd5b505afa158015612379573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061239d9190613d84565b811015610b8e57600e54604051632f745c5960e01b81526001600160a01b03858116600483015260248201849052601792600092911690632f745c599060440160206040518083038186803b1580156123f557600080fd5b505afa158015612409573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061242d9190613d84565b815260208101919091526040016000205460ff1661245357612450600183613e21565b91505b8061245d81613db3565b915050612320565b606060118054610ba390613dec565b600a546001600160a01b031633146124ce5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b6001600160a01b03811661254a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cac565b61133381612dd0565b4260135411156125b15760405162461bcd60e51b8152602060048201526024808201527f53616c65206d7573742062652061637469766520746f206d696e74206e6577206044820152634e46547360e01b6064820152608401610cac565b6101c06125bd60085490565b6125c8906001613e21565b11156126165760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610cac565b33600d546040516331a9108f60e11b8152600481018690526001600160a01b039283169290911690636352211e9060240160206040518083038186803b15801561265f57600080fd5b505afa158015612673573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126979190613f69565b6001600160a01b0316146127135760405162461bcd60e51b815260206004820152602860248201527f53656e646572206973206e6f7420746865206f776e6572206f6620746865204660448201527f61636573204e46540000000000000000000000000000000000000000000000006064820152608401610cac565b33600e546040516331a9108f60e11b8152600481018590526001600160a01b039283169290911690636352211e9060240160206040518083038186803b15801561275c57600080fd5b505afa158015612770573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127949190613f69565b6001600160a01b0316146128105760405162461bcd60e51b815260206004820152602960248201527f53656e646572206973206e6f7420746865206f776e6572206f6620746865204e60448201527f6174757265204e465400000000000000000000000000000000000000000000006064820152608401610cac565b33600f546040516331a9108f60e11b8152600481018490526001600160a01b039283169290911690636352211e9060240160206040518083038186803b15801561285957600080fd5b505afa15801561286d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128919190613f69565b6001600160a01b03161461290d5760405162461bcd60e51b815260206004820152602860248201527f53656e646572206973206e6f7420746865206f776e6572206f6620746865205360448201527f70616365204e46540000000000000000000000000000000000000000000000006064820152608401610cac565b600c546001600160a01b031663e985e9c5336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260440160206040518083038186803b15801561296457600080fd5b505afa158015612978573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061299c9190613e4f565b6129e85760405162461bcd60e51b815260206004820152601560248201527f636f6e7472616374206e6f7420617070726f76656400000000000000000000006044820152606401610cac565b61210084848484612efe565b60405180606001604052806040815260200161404b6040913981565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109c157506109c182613332565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190612a90826113f5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316612b535760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610cac565b6000612b5e836113f5565b9050806001600160a01b0316846001600160a01b03161480612b995750836001600160a01b0316612b8e84610c26565b6001600160a01b0316145b80612bc957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612be4826113f5565b6001600160a01b031614612c605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610cac565b6001600160a01b038216612cdb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610cac565b612ce68383836133cd565b612cf1600082612a4e565b6001600160a01b0383166000908152600360205260408120805460019290612d1a908490613f86565b90915550506001600160a01b0382166000908152600360205260408120805460019290612d48908490613e21565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611bc18282604051806020016040528060008152506133d8565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415612e915760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610cac565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008381526016602052604090205460ff1615612f835760405162461bcd60e51b815260206004820152603460248201527f546869732047414e20466163652068617320616c7265616479206265656e206360448201527f6c61696d656420696e2061206d696e74706173730000000000000000000000006064820152608401610cac565b60008281526017602052604090205460ff16156130085760405162461bcd60e51b815260206004820152603660248201527f546869732047414e204e61747572652068617320616c7265616479206265656e60448201527f20636c61696d656420696e2061206d696e7470617373000000000000000000006064820152608401610cac565b60008181526018602052604090205460ff161561308d5760405162461bcd60e51b815260206004820152603560248201527f546869732047414e2053706163652068617320616c7265616479206265656e2060448201527f636c61696d656420696e2061206d696e747061737300000000000000000000006064820152608401610cac565b613096336115ec565b6130a4600b80546001019055565b600c546001600160a01b03166323b872dd336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015261dead602482015260448101879052606401600060405180830381600087803b15801561310657600080fd5b505af115801561311a573d6000803e3d6000fd5b5050506000938452506016602090815260408085208054600160ff19918216811790925594865260178352818620805486168217905592855260189091529092208054909116909117905550565b613173848484612bd1565b61317f84848484613461565b6121005760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610cac565b606060108054610ba390613dec565b60608161324057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561326a578061325481613db3565b91506132639050600a83613fb3565b9150613244565b60008167ffffffffffffffff81111561328557613285613b88565b6040519080825280601f01601f1916602001820160405280156132af576020820181803683370190505b5090505b8415612bc9576132c4600183613f86565b91506132d1600a86613fc7565b6132dc906030613e21565b60f81b8183815181106132f1576132f1613e39565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061332b600a86613fb3565b94506132b3565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061339557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109c157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146109c1565b610dfe8383836135f6565b6133e283836136ae565b6133ef6000848484613461565b610dfe5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610cac565b60006001600160a01b0384163b156135eb576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906134be903390899088908890600401613fdb565b602060405180830381600087803b1580156134d857600080fd5b505af1925050508015613508575060408051601f3d908101601f1916820190925261350591810190614017565b60015b6135b8573d808015613536576040519150601f19603f3d011682016040523d82523d6000602084013e61353b565b606091505b5080516135b05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610cac565b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050612bc9565b506001949350505050565b6001600160a01b0383166136515761364c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613674565b816001600160a01b0316836001600160a01b031614613674576136748382613809565b6001600160a01b03821661368b57610dfe816138a6565b826001600160a01b0316826001600160a01b031614610dfe57610dfe8282613955565b6001600160a01b0382166137045760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610cac565b6000818152600260205260409020546001600160a01b0316156137695760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610cac565b613775600083836133cd565b6001600160a01b038216600090815260036020526040812080546001929061379e908490613e21565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016138168461168a565b6138209190613f86565b600083815260076020526040902054909150808214613873576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906138b890600190613f86565b600083815260096020526040812054600880549394509092849081106138e0576138e0613e39565b90600052602060002001549050806008838154811061390157613901613e39565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061393957613939614034565b6001900381819060005260206000200160009055905550505050565b60006139608361168a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546139a590613dec565b90600052602060002090601f0160209004810192826139c75760008555613a0d565b82601f106139e057805160ff1916838001178555613a0d565b82800160010185558215613a0d579182015b82811115613a0d5782518255916020019190600101906139f2565b50613a19929150613a1d565b5090565b5b80821115613a195760008155600101613a1e565b6001600160e01b03198116811461133357600080fd5b600060208284031215613a5a57600080fd5b8135610b7581613a32565b6001600160a01b038116811461133357600080fd5b600060208284031215613a8c57600080fd5b8135610b7581613a65565b60005b83811015613ab2578181015183820152602001613a9a565b838111156121005750506000910152565b60008151808452613adb816020860160208601613a97565b601f01601f19169290920160200192915050565b602081526000610b756020830184613ac3565b600060208284031215613b1457600080fd5b5035919050565b60008060408385031215613b2e57600080fd5b8235613b3981613a65565b946020939093013593505050565b600080600060608486031215613b5c57600080fd5b8335613b6781613a65565b92506020840135613b7781613a65565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115613bb957613bb9613b88565b604051601f8501601f19908116603f01168101908282118183101715613be157613be1613b88565b81604052809350858152868686011115613bfa57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215613c2657600080fd5b813567ffffffffffffffff811115613c3d57600080fd5b8201601f81018413613c4e57600080fd5b612bc984823560208401613b9e565b801515811461133357600080fd5b60008060408385031215613c7e57600080fd5b8235613c8981613a65565b91506020830135613c9981613c5d565b809150509250929050565b60008060008060808587031215613cba57600080fd5b8435613cc581613a65565b93506020850135613cd581613a65565b925060408501359150606085013567ffffffffffffffff811115613cf857600080fd5b8501601f81018713613d0957600080fd5b613d1887823560208401613b9e565b91505092959194509250565b60008060408385031215613d3757600080fd5b8235613d4281613a65565b91506020830135613c9981613a65565b60008060008060808587031215613d6857600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215613d9657600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613de557613de5613d9d565b5060010190565b600181811c90821680613e0057607f821691505b60208210811415610b8e57634e487b7160e01b600052602260045260246000fd5b60008219821115613e3457613e34613d9d565b500190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215613e6157600080fd5b8151610b7581613c5d565b60008351613e7e818460208801613a97565b835190830190613e92818360208801613a97565b01949350505050565b8054600090600181811c9080831680613eb557607f831692505b6020808410821415613ed757634e487b7160e01b600052602260045260246000fd5b83885260208801828015613ef25760018114613f0357613f2e565b60ff19871682528282019750613f2e565b60008981526020902060005b87811015613f2857815484820152908601908401613f0f565b83019850505b5050505050505092915050565b604081526000613f4e6040830185613e9b565b8281036020840152613f608185613e9b565b95945050505050565b600060208284031215613f7b57600080fd5b8151610b7581613a65565b600082821015613f9857613f98613d9d565b500390565b634e487b7160e01b600052601260045260246000fd5b600082613fc257613fc2613f9d565b500490565b600082613fd657613fd6613f9d565b500690565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261400d6080830184613ac3565b9695505050505050565b60006020828403121561402957600080fd5b8151610b7581613a32565b634e487b7160e01b600052603160045260246000fdfe32346662323964303833393261343436626530393234323966313661613865396665326638396536346131313430663062633837303337313834663237393465a264697066735822122024d88ba6426c42d7db6b56a6311b45bd18dcfe49cfb8934f78467d715050dca464736f6c63430008090033697066733a2f2f516d5839355342374a78466f3873536546387368716d395676737335477869594453785364644c5a696a504e57642f697066733a2f2f516d5235427a71656776427347574d4a763748613950376476757673544d4b4765554a42336a6d704e5366356376000000000000000000000000bae6f981dc151cfc633212f06a9c5b4e379204540000000000000000000000000d3dcc1d43eadc4c9083bbbdd8bce840e4d08f3e00000000000000000000000086fb9b866c25c54f1f11ec28016308c8a67840b60000000000000000000000001183eec45441c3b4df32e3410e0fb5b7189eb3030000000000000000000000000000000000000000000000000000000061c77840
Deployed Bytecode
0x60806040526004361061033f5760003560e01c806377fcfa74116101b0578063af48b37f116100ec578063e81574bd11610095578063f2fde38b1161006f578063f2fde38b14610941578063f8999e6614610961578063fb6efac714610981578063fde7ac58146109a157600080fd5b8063e81574bd146108c3578063e8a3d485146108e3578063e985e9c5146108f857600080fd5b8063c00ab6b2116100c6578063c00ab6b21461086e578063c87b56dd1461088e578063d111515d146108ae57600080fd5b8063af48b37f1461080e578063b88d4fde1461082e578063b98573b91461084e57600080fd5b8063938e3d7b11610159578063a1fc670511610133578063a1fc67051461079e578063a22cb465146107b8578063ab0bcc41146107d8578063abbb5a55146107ee57600080fd5b8063938e3d7b1461074957806395d89b4114610769578063a0bcfc7f1461077e57600080fd5b80638a500fda1161018a5780638a500fda146106eb5780638da5cb5b1461070b5780638e99d2a81461072957600080fd5b806377fcfa74146106915780637ed0008b146106b15780638529ccad146106d157600080fd5b80632fab51241161027f5780636352211e116102285780636ad1b27e116102025780636ad1b27e1461062657806370a0823114610646578063715018a614610666578063758b4e861461067b57600080fd5b80636352211e146105e85780636817c76c1461060857806369907b9b1461061e57600080fd5b80633ccfd60b116102595780633ccfd60b1461059357806342842e0e146105a85780634f6ccce7146105c857600080fd5b80632fab51241461051357806333e82d8014610543578063394885f01461056357600080fd5b806315b6ba0e116102ec57806324624907116102c6578063246249071461048e578063271cc331146104be5780632f181f54146104d35780632f745c59146104f357600080fd5b806315b6ba0e1461043957806318160ddd1461045957806323b872dd1461046e57600080fd5b806306fdde031161031d57806306fdde03146103d5578063081812fc146103f7578063095ea7b31461041757600080fd5b806301ffc9a714610344578063029fc55f1461037957806303fd2a45146103a7575b600080fd5b34801561035057600080fd5b5061036461035f366004613a48565b6109b6565b60405190151581526020015b60405180910390f35b34801561038557600080fd5b50610399610394366004613a7a565b6109c7565b604051908152602001610370565b3480156103b357600080fd5b506103bd61dead81565b6040516001600160a01b039091168152602001610370565b3480156103e157600080fd5b506103ea610b94565b6040516103709190613aef565b34801561040357600080fd5b506103bd610412366004613b02565b610c26565b34801561042357600080fd5b50610437610432366004613b1b565b610cd1565b005b34801561044557600080fd5b50610399610454366004613a7a565b610e03565b34801561046557600080fd5b50600854610399565b34801561047a57600080fd5b50610437610489366004613b47565b610fd5565b34801561049a57600080fd5b506103646104a9366004613b02565b60166020526000908152604090205460ff1681565b3480156104ca57600080fd5b5061043761105c565b3480156104df57600080fd5b506104376104ee366004613b02565b6110ca565b3480156104ff57600080fd5b5061039961050e366004613b1b565b611129565b34801561051f57600080fd5b5061036461052e366004613b02565b60186020526000908152604090205460ff1681565b34801561054f57600080fd5b5061039961055e366004613a7a565b6111d1565b34801561056f57600080fd5b5061036461057e366004613b02565b60176020526000908152604090205460ff1681565b34801561059f57600080fd5b50610437611290565b3480156105b457600080fd5b506104376105c3366004613b47565b611336565b3480156105d457600080fd5b506103996105e3366004613b02565b611351565b3480156105f457600080fd5b506103bd610603366004613b02565b6113f5565b34801561061457600080fd5b5061039960155481565b610437611480565b34801561063257600080fd5b50610399610641366004613a7a565b611604565b34801561065257600080fd5b50610399610661366004613a7a565b61168a565b34801561067257600080fd5b50610437611724565b34801561068757600080fd5b506103996101c081565b34801561069d57600080fd5b506103996106ac366004613a7a565b611788565b3480156106bd57600080fd5b506103996106cc366004613a7a565b6118fc565b3480156106dd57600080fd5b506019546103649060ff1681565b3480156106f757600080fd5b50610399610706366004613a7a565b611ace565b34801561071757600080fd5b50600a546001600160a01b03166103bd565b34801561073557600080fd5b50600d546103bd906001600160a01b031681565b34801561075557600080fd5b50610437610764366004613c14565b611b01565b34801561077557600080fd5b506103ea611bc5565b34801561078a57600080fd5b50610437610799366004613c14565b611bd4565b3480156107aa57600080fd5b506014546103649060ff1681565b3480156107c457600080fd5b506104376107d3366004613c6b565b611c94565b3480156107e457600080fd5b5061039960135481565b3480156107fa57600080fd5b50610437610809366004613b02565b611c9f565b34801561081a57600080fd5b50610399610829366004613a7a565b611f04565b34801561083a57600080fd5b50610437610849366004613ca4565b612078565b34801561085a57600080fd5b50600e546103bd906001600160a01b031681565b34801561087a57600080fd5b50600c546103bd906001600160a01b031681565b34801561089a57600080fd5b506103ea6108a9366004613b02565b612106565b3480156108ba57600080fd5b506104376121ee565b3480156108cf57600080fd5b506103996108de366004613a7a565b612293565b3480156108ef57600080fd5b506103ea612465565b34801561090457600080fd5b50610364610913366004613d24565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561094d57600080fd5b5061043761095c366004613a7a565b612474565b34801561096d57600080fd5b5061043761097c366004613d52565b612553565b34801561098d57600080fd5b50600f546103bd906001600160a01b031681565b3480156109ad57600080fd5b506103ea6129f4565b60006109c182612a10565b92915050565b6000805b600f546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b158015610a1057600080fd5b505afa158015610a24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a489190613d84565b811015610b8e57600f54604051632f745c5960e01b81526001600160a01b03858116600483015260248201849052601892600092911690632f745c599060440160206040518083038186803b158015610aa057600080fd5b505afa158015610ab4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad89190613d84565b815260208101919091526040016000205460ff16610b7c57600f54604051632f745c5960e01b81526001600160a01b0385811660048301526024820184905290911690632f745c59906044015b60206040518083038186803b158015610b3d57600080fd5b505afa158015610b51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b759190613d84565b9392505050565b80610b8681613db3565b9150506109cb565b50919050565b606060008054610ba390613dec565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcf90613dec565b8015610c1c5780601f10610bf157610100808354040283529160200191610c1c565b820191906000526020600020905b815481529060010190602001808311610bff57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cb55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610cdc826113f5565b9050806001600160a01b0316836001600160a01b03161415610d665760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610cac565b336001600160a01b0382161480610d825750610d828133610913565b610df45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610cac565b610dfe8383612a4e565b505050565b600d546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b158015610e4957600080fd5b505afa158015610e5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e819190613d84565b610e8d57506000919050565b60005b600d546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b158015610ed557600080fd5b505afa158015610ee9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0d9190613d84565b811015610b8e57600d54604051632f745c5960e01b81526001600160a01b03858116600483015260248201849052601692600092911690632f745c599060440160206040518083038186803b158015610f6557600080fd5b505afa158015610f79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9d9190613d84565b815260208101919091526040016000205460ff16610fc357610fc0600183613e21565b91505b80610fcd81613db3565b915050610e90565b610fdf3382612ac9565b6110515760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610cac565b610dfe838383612bd1565b600a546001600160a01b031633146110b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b6014805460ff19811660ff90911615179055565b600a546001600160a01b031633146111245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b601355565b60006111348361168a565b82106111a85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610cac565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60006111dc82612293565b6111e583610e03565b10801561120157506111f6826118fc565b6111ff83610e03565b105b801561121c575061121182611ace565b61121a83610e03565b105b1561122a576109c182610e03565b611233826118fc565b61123c83612293565b108015611258575061124d82611ace565b61125683612293565b105b15611266576109c182612293565b61126f82611ace565b611278836118fc565b1015611287576109c1826118fc565b6109c182611ace565b6012546040516000916001600160a01b03169047908381818185875af1925050503d80600081146112dd576040519150601f19603f3d011682016040523d82523d6000602084013e6112e2565b606091505b50509050806113335760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e000000000000000000000000000000006044820152606401610cac565b50565b610dfe83838360405180602001604052806000815250612078565b600061135c60085490565b82106113d05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610cac565b600882815481106113e3576113e3613e39565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806109c15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610cac565b4260135411156114de5760405162461bcd60e51b8152602060048201526024808201527f53616c65206d7573742062652061637469766520746f206d696e74206e6577206044820152634e46547360e01b6064820152608401610cac565b60145460ff166115305760405162461bcd60e51b815260206004820152601b60248201527f50616964206d696e742069736e277420656e61626c65642079657400000000006044820152606401610cac565b6101c061153c60085490565b611547906001613e21565b11156115955760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610cac565b6015543410156115e75760405162461bcd60e51b815260206004820152600f60248201527f4e6f74207061696420656e6f75676800000000000000000000000000000000006044820152606401610cac565b6115f4335b600b54612db6565b611602600b80546001019055565b565b600c54604051632f745c5960e01b81526001600160a01b038381166004830152600060248301819052921690632f745c59906044015b60206040518083038186803b15801561165257600080fd5b505afa158015611666573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c19190613d84565b60006001600160a01b0382166117085760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610cac565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461177e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b6116026000612dd0565b6000805b600e546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b1580156117d157600080fd5b505afa1580156117e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118099190613d84565b811015610b8e57600e54604051632f745c5960e01b81526001600160a01b03858116600483015260248201849052601792600092911690632f745c599060440160206040518083038186803b15801561186157600080fd5b505afa158015611875573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118999190613d84565b815260208101919091526040016000205460ff166118ea57600e54604051632f745c5960e01b81526001600160a01b0385811660048301526024820184905290911690632f745c5990604401610b25565b806118f481613db3565b91505061178c565b600f546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b15801561194257600080fd5b505afa158015611956573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061197a9190613d84565b61198657506000919050565b60005b600f546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b1580156119ce57600080fd5b505afa1580156119e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a069190613d84565b811015610b8e57600f54604051632f745c5960e01b81526001600160a01b03858116600483015260248201849052601892600092911690632f745c599060440160206040518083038186803b158015611a5e57600080fd5b505afa158015611a72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a969190613d84565b815260208101919091526040016000205460ff16611abc57611ab9600183613e21565b91505b80611ac681613db3565b915050611989565b600c546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240161163a565b600a546001600160a01b03163314611b5b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b60195460ff1615611bae5760405162461bcd60e51b815260206004820152601760248201527f4d6574616461746120616c72656164792066726f7a656e0000000000000000006044820152606401610cac565b8051611bc1906011906020840190613999565b5050565b606060018054610ba390613dec565b600a546001600160a01b03163314611c2e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b60195460ff1615611c815760405162461bcd60e51b815260206004820152601760248201527f4d6574616461746120616c72656164792066726f7a656e0000000000000000006044820152606401610cac565b8051611bc1906010906020840190613999565b611bc1338383612e2f565b426013541115611cfd5760405162461bcd60e51b8152602060048201526024808201527f53616c65206d7573742062652061637469766520746f206d696e74206e6577206044820152634e46547360e01b6064820152608401610cac565b6101c081611d0a60085490565b611d149190613e21565b1115611d625760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610cac565b611d6b336111d1565b811115611de05760405162461bcd60e51b815260206004820152602d60248201527f596f7572206d696e747061737320646f65736e277420696e636c75646520746860448201527f6174206d616e79206d696e7473000000000000000000000000000000000000006064820152608401610cac565b600c546001600160a01b031663e985e9c5336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260440160206040518083038186803b158015611e3757600080fd5b505afa158015611e4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e6f9190613e4f565b611ebb5760405162461bcd60e51b815260206004820152601560248201527f636f6e7472616374206e6f7420617070726f76656400000000000000000000006044820152606401610cac565b60005b81811015611bc157611ef2611ed233611604565b611edb33611f04565b611ee433611788565b611eed336109c7565b612efe565b80611efc81613db3565b915050611ebe565b6000805b600d546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b158015611f4d57600080fd5b505afa158015611f61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f859190613d84565b811015610b8e57600d54604051632f745c5960e01b81526001600160a01b03858116600483015260248201849052601692600092911690632f745c599060440160206040518083038186803b158015611fdd57600080fd5b505afa158015611ff1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120159190613d84565b815260208101919091526040016000205460ff1661206657600d54604051632f745c5960e01b81526001600160a01b0385811660048301526024820184905290911690632f745c5990604401610b25565b8061207081613db3565b915050611f08565b6120823383612ac9565b6120f45760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610cac565b61210084848484613168565b50505050565b6000818152600260205260409020546060906001600160a01b03166121935760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610cac565b600061219d6131f1565b905060008151116121bd5760405180602001604052806000815250610b75565b806121c784613200565b6040516020016121d8929190613e6c565b6040516020818303038152906040529392505050565b600a546001600160a01b031633146122485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b6019805460ff191660011790556040517fda0b8b42585e8cd6d16d1f253a7ca4dd4ebeb6741418c1e07e798e0934136e639061228990601090601190613f3b565b60405180910390a1565b600e546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b1580156122d957600080fd5b505afa1580156122ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123119190613d84565b61231d57506000919050565b60005b600e546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b15801561236557600080fd5b505afa158015612379573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061239d9190613d84565b811015610b8e57600e54604051632f745c5960e01b81526001600160a01b03858116600483015260248201849052601792600092911690632f745c599060440160206040518083038186803b1580156123f557600080fd5b505afa158015612409573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061242d9190613d84565b815260208101919091526040016000205460ff1661245357612450600183613e21565b91505b8061245d81613db3565b915050612320565b606060118054610ba390613dec565b600a546001600160a01b031633146124ce5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cac565b6001600160a01b03811661254a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cac565b61133381612dd0565b4260135411156125b15760405162461bcd60e51b8152602060048201526024808201527f53616c65206d7573742062652061637469766520746f206d696e74206e6577206044820152634e46547360e01b6064820152608401610cac565b6101c06125bd60085490565b6125c8906001613e21565b11156126165760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610cac565b33600d546040516331a9108f60e11b8152600481018690526001600160a01b039283169290911690636352211e9060240160206040518083038186803b15801561265f57600080fd5b505afa158015612673573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126979190613f69565b6001600160a01b0316146127135760405162461bcd60e51b815260206004820152602860248201527f53656e646572206973206e6f7420746865206f776e6572206f6620746865204660448201527f61636573204e46540000000000000000000000000000000000000000000000006064820152608401610cac565b33600e546040516331a9108f60e11b8152600481018590526001600160a01b039283169290911690636352211e9060240160206040518083038186803b15801561275c57600080fd5b505afa158015612770573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127949190613f69565b6001600160a01b0316146128105760405162461bcd60e51b815260206004820152602960248201527f53656e646572206973206e6f7420746865206f776e6572206f6620746865204e60448201527f6174757265204e465400000000000000000000000000000000000000000000006064820152608401610cac565b33600f546040516331a9108f60e11b8152600481018490526001600160a01b039283169290911690636352211e9060240160206040518083038186803b15801561285957600080fd5b505afa15801561286d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128919190613f69565b6001600160a01b03161461290d5760405162461bcd60e51b815260206004820152602860248201527f53656e646572206973206e6f7420746865206f776e6572206f6620746865205360448201527f70616365204e46540000000000000000000000000000000000000000000000006064820152608401610cac565b600c546001600160a01b031663e985e9c5336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260440160206040518083038186803b15801561296457600080fd5b505afa158015612978573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061299c9190613e4f565b6129e85760405162461bcd60e51b815260206004820152601560248201527f636f6e7472616374206e6f7420617070726f76656400000000000000000000006044820152606401610cac565b61210084848484612efe565b60405180606001604052806040815260200161404b6040913981565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109c157506109c182613332565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190612a90826113f5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316612b535760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610cac565b6000612b5e836113f5565b9050806001600160a01b0316846001600160a01b03161480612b995750836001600160a01b0316612b8e84610c26565b6001600160a01b0316145b80612bc957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612be4826113f5565b6001600160a01b031614612c605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610cac565b6001600160a01b038216612cdb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610cac565b612ce68383836133cd565b612cf1600082612a4e565b6001600160a01b0383166000908152600360205260408120805460019290612d1a908490613f86565b90915550506001600160a01b0382166000908152600360205260408120805460019290612d48908490613e21565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611bc18282604051806020016040528060008152506133d8565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415612e915760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610cac565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008381526016602052604090205460ff1615612f835760405162461bcd60e51b815260206004820152603460248201527f546869732047414e20466163652068617320616c7265616479206265656e206360448201527f6c61696d656420696e2061206d696e74706173730000000000000000000000006064820152608401610cac565b60008281526017602052604090205460ff16156130085760405162461bcd60e51b815260206004820152603660248201527f546869732047414e204e61747572652068617320616c7265616479206265656e60448201527f20636c61696d656420696e2061206d696e7470617373000000000000000000006064820152608401610cac565b60008181526018602052604090205460ff161561308d5760405162461bcd60e51b815260206004820152603560248201527f546869732047414e2053706163652068617320616c7265616479206265656e2060448201527f636c61696d656420696e2061206d696e747061737300000000000000000000006064820152608401610cac565b613096336115ec565b6130a4600b80546001019055565b600c546001600160a01b03166323b872dd336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015261dead602482015260448101879052606401600060405180830381600087803b15801561310657600080fd5b505af115801561311a573d6000803e3d6000fd5b5050506000938452506016602090815260408085208054600160ff19918216811790925594865260178352818620805486168217905592855260189091529092208054909116909117905550565b613173848484612bd1565b61317f84848484613461565b6121005760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610cac565b606060108054610ba390613dec565b60608161324057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561326a578061325481613db3565b91506132639050600a83613fb3565b9150613244565b60008167ffffffffffffffff81111561328557613285613b88565b6040519080825280601f01601f1916602001820160405280156132af576020820181803683370190505b5090505b8415612bc9576132c4600183613f86565b91506132d1600a86613fc7565b6132dc906030613e21565b60f81b8183815181106132f1576132f1613e39565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061332b600a86613fb3565b94506132b3565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061339557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109c157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146109c1565b610dfe8383836135f6565b6133e283836136ae565b6133ef6000848484613461565b610dfe5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610cac565b60006001600160a01b0384163b156135eb576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906134be903390899088908890600401613fdb565b602060405180830381600087803b1580156134d857600080fd5b505af1925050508015613508575060408051601f3d908101601f1916820190925261350591810190614017565b60015b6135b8573d808015613536576040519150601f19603f3d011682016040523d82523d6000602084013e61353b565b606091505b5080516135b05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610cac565b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050612bc9565b506001949350505050565b6001600160a01b0383166136515761364c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613674565b816001600160a01b0316836001600160a01b031614613674576136748382613809565b6001600160a01b03821661368b57610dfe816138a6565b826001600160a01b0316826001600160a01b031614610dfe57610dfe8282613955565b6001600160a01b0382166137045760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610cac565b6000818152600260205260409020546001600160a01b0316156137695760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610cac565b613775600083836133cd565b6001600160a01b038216600090815260036020526040812080546001929061379e908490613e21565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016138168461168a565b6138209190613f86565b600083815260076020526040902054909150808214613873576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906138b890600190613f86565b600083815260096020526040812054600880549394509092849081106138e0576138e0613e39565b90600052602060002001549050806008838154811061390157613901613e39565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061393957613939614034565b6001900381819060005260206000200160009055905550505050565b60006139608361168a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546139a590613dec565b90600052602060002090601f0160209004810192826139c75760008555613a0d565b82601f106139e057805160ff1916838001178555613a0d565b82800160010185558215613a0d579182015b82811115613a0d5782518255916020019190600101906139f2565b50613a19929150613a1d565b5090565b5b80821115613a195760008155600101613a1e565b6001600160e01b03198116811461133357600080fd5b600060208284031215613a5a57600080fd5b8135610b7581613a32565b6001600160a01b038116811461133357600080fd5b600060208284031215613a8c57600080fd5b8135610b7581613a65565b60005b83811015613ab2578181015183820152602001613a9a565b838111156121005750506000910152565b60008151808452613adb816020860160208601613a97565b601f01601f19169290920160200192915050565b602081526000610b756020830184613ac3565b600060208284031215613b1457600080fd5b5035919050565b60008060408385031215613b2e57600080fd5b8235613b3981613a65565b946020939093013593505050565b600080600060608486031215613b5c57600080fd5b8335613b6781613a65565b92506020840135613b7781613a65565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115613bb957613bb9613b88565b604051601f8501601f19908116603f01168101908282118183101715613be157613be1613b88565b81604052809350858152868686011115613bfa57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215613c2657600080fd5b813567ffffffffffffffff811115613c3d57600080fd5b8201601f81018413613c4e57600080fd5b612bc984823560208401613b9e565b801515811461133357600080fd5b60008060408385031215613c7e57600080fd5b8235613c8981613a65565b91506020830135613c9981613c5d565b809150509250929050565b60008060008060808587031215613cba57600080fd5b8435613cc581613a65565b93506020850135613cd581613a65565b925060408501359150606085013567ffffffffffffffff811115613cf857600080fd5b8501601f81018713613d0957600080fd5b613d1887823560208401613b9e565b91505092959194509250565b60008060408385031215613d3757600080fd5b8235613d4281613a65565b91506020830135613c9981613a65565b60008060008060808587031215613d6857600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215613d9657600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613de557613de5613d9d565b5060010190565b600181811c90821680613e0057607f821691505b60208210811415610b8e57634e487b7160e01b600052602260045260246000fd5b60008219821115613e3457613e34613d9d565b500190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215613e6157600080fd5b8151610b7581613c5d565b60008351613e7e818460208801613a97565b835190830190613e92818360208801613a97565b01949350505050565b8054600090600181811c9080831680613eb557607f831692505b6020808410821415613ed757634e487b7160e01b600052602260045260246000fd5b83885260208801828015613ef25760018114613f0357613f2e565b60ff19871682528282019750613f2e565b60008981526020902060005b87811015613f2857815484820152908601908401613f0f565b83019850505b5050505050505092915050565b604081526000613f4e6040830185613e9b565b8281036020840152613f608185613e9b565b95945050505050565b600060208284031215613f7b57600080fd5b8151610b7581613a65565b600082821015613f9857613f98613d9d565b500390565b634e487b7160e01b600052601260045260246000fd5b600082613fc257613fc2613f9d565b500490565b600082613fd657613fd6613f9d565b500690565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261400d6080830184613ac3565b9695505050505050565b60006020828403121561402957600080fd5b8151610b7581613a32565b634e487b7160e01b600052603160045260246000fdfe32346662323964303833393261343436626530393234323966313661613865396665326638396536346131313430663062633837303337313834663237393465a264697066735822122024d88ba6426c42d7db6b56a6311b45bd18dcfe49cfb8934f78467d715050dca464736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000BaE6f981dc151CfC633212f06A9c5B4E379204540000000000000000000000000D3dcc1d43eadc4c9083BbBDd8bCe840e4D08F3E00000000000000000000000086FB9B866C25c54F1F11ec28016308c8a67840b60000000000000000000000001183Eec45441c3B4dF32E3410e0FB5B7189EB3030000000000000000000000000000000000000000000000000000000061c77840
-----Decoded View---------------
Arg [0] : _Gape (address): 0xBaE6f981dc151CfC633212f06A9c5B4E37920454
Arg [1] : _Faces (address): 0x0D3dcc1d43eadc4c9083BbBDd8bCe840e4D08F3E
Arg [2] : _Nature (address): 0x86FB9B866C25c54F1F11ec28016308c8a67840b6
Arg [3] : _Space (address): 0x1183Eec45441c3B4dF32E3410e0FB5B7189EB303
Arg [4] : _saleStart (uint256): 1640462400
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000BaE6f981dc151CfC633212f06A9c5B4E37920454
Arg [1] : 0000000000000000000000000D3dcc1d43eadc4c9083BbBDd8bCe840e4D08F3E
Arg [2] : 00000000000000000000000086FB9B866C25c54F1F11ec28016308c8a67840b6
Arg [3] : 0000000000000000000000001183Eec45441c3B4dF32E3410e0FB5B7189EB303
Arg [4] : 0000000000000000000000000000000000000000000000000000000061c77840
Deployed Bytecode Sourcemap
45955:9462:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51968:226;;;;;;;;;;-1:-1:-1;51968:226:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;51968:226:0;;;;;;;;54972:295;;;;;;;;;;-1:-1:-1;54972:295:0;;;;;:::i;:::-;;:::i;:::-;;;1195:25:1;;;1183:2;1168:18;54972:295:0;1049:177:1;46705:73:0;;;;;;;;;;;;46736:42;46705:73;;;;;-1:-1:-1;;;;;1395:55:1;;;1377:74;;1365:2;1350:18;46705:73:0;1231:226:1;27225:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28784:221::-;;;;;;;;;;-1:-1:-1;28784:221:0;;;;;:::i;:::-;;:::i;28307:411::-;;;;;;;;;;-1:-1:-1;28307:411:0;;;;;:::i;:::-;;:::i;:::-;;53204:322;;;;;;;;;;-1:-1:-1;53204:322:0;;;;;:::i;:::-;;:::i;40371:113::-;;;;;;;;;;-1:-1:-1;40459:10:0;:17;40371:113;;29534:339;;;;;;;;;;-1:-1:-1;29534:339:0;;;;;:::i;:::-;;:::i;47362:43::-;;;;;;;;;;-1:-1:-1;47362:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;52322:88;;;;;;;;;;;;;:::i;52206:104::-;;;;;;;;;;-1:-1:-1;52206:104:0;;;;;:::i;:::-;;:::i;40039:256::-;;;;;;;;;;-1:-1:-1;40039:256:0;;;;;:::i;:::-;;:::i;47467:43::-;;;;;;;;;;-1:-1:-1;47467:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;52685:507;;;;;;;;;;-1:-1:-1;52685:507:0;;;;;:::i;:::-;;:::i;47414:44::-;;;;;;;;;;-1:-1:-1;47414:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;52422:251;;;;;;;;;;;;;:::i;29944:185::-;;;;;;;;;;-1:-1:-1;29944:185:0;;;;;:::i;:::-;;:::i;40561:233::-;;;;;;;;;;-1:-1:-1;40561:233:0;;;;;:::i;:::-;;:::i;26919:239::-;;;;;;;;;;-1:-1:-1;26919:239:0;;;;;:::i;:::-;;:::i;47313:36::-;;;;;;;;;;;;;;;;50382:486;;;:::i;55279:133::-;;;;;;;;;;-1:-1:-1;55279:133:0;;;;;:::i;:::-;;:::i;26649:208::-;;;;;;;;;;-1:-1:-1;26649:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;47193:39::-;;;;;;;;;;;;47229:3;47193:39;;54660:300;;;;;;;;;;-1:-1:-1;54660:300:0;;;;;:::i;:::-;;:::i;53877:322::-;;;;;;;;;;-1:-1:-1;53877:322:0;;;;;:::i;:::-;;:::i;47523:26::-;;;;;;;;;;-1:-1:-1;47523:26:0;;;;;;;;54211:126;;;;;;;;;;-1:-1:-1;54211:126:0;;;;;:::i;:::-;;:::i;5544:87::-;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;46586:29;;;;;;;;;;-1:-1:-1;46586:29:0;;;;-1:-1:-1;;;;;46586:29:0;;;48420:184;;;;;;;;;;-1:-1:-1;48420:184:0;;;;;:::i;:::-;;:::i;27394:104::-;;;;;;;;;;;;;:::i;48120:167::-;;;;;;;;;;-1:-1:-1;48120:167:0;;;;;:::i;:::-;;:::i;47282:22::-;;;;;;;;;;-1:-1:-1;47282:22:0;;;;;;;;29077:155;;;;;;;;;;-1:-1:-1;29077:155:0;;;;;:::i;:::-;;:::i;47245:24::-;;;;;;;;;;;;;;;;48770:749;;;;;;;;;;-1:-1:-1;48770:749:0;;;;;:::i;:::-;;:::i;54353:295::-;;;;;;;;;;-1:-1:-1;54353:295:0;;;;;:::i;:::-;;:::i;30200:328::-;;;;;;;;;;-1:-1:-1;30200:328:0;;;;;:::i;:::-;;:::i;46624:30::-;;;;;;;;;;-1:-1:-1;46624:30:0;;;;-1:-1:-1;;;;;46624:30:0;;;46549:28;;;;;;;;;;-1:-1:-1;46549:28:0;;;;-1:-1:-1;;;;;46549:28:0;;;27569:334;;;;;;;;;;-1:-1:-1;27569:334:0;;;;;:::i;:::-;;:::i;48616:142::-;;;;;;;;;;;;;:::i;53538:327::-;;;;;;;;;;-1:-1:-1;53538:327:0;;;;;:::i;:::-;;:::i;48299:109::-;;;;;;;;;;;;;:::i;29303:164::-;;;;;;;;;;-1:-1:-1;29303:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29424:25:0;;;29400:4;29424:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29303:164;6453:201;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;49531:839::-;;;;;;;;;;-1:-1:-1;49531:839:0;;;;;:::i;:::-;;:::i;46663:29::-;;;;;;;;;;-1:-1:-1;46663:29:0;;;;-1:-1:-1;;;;;46663:29:0;;;46979:100;;;;;;;;;;;;;:::i;51968:226::-;52115:4;52148:36;52172:11;52148:23;:36::i;:::-;52141:43;51968:226;-1:-1:-1;;51968:226:0:o;54972:295::-;55029:10;;55054:204;55086:5;;:23;;-1:-1:-1;;;55086:23:0;;-1:-1:-1;;;;;1395:55:1;;;55086:23:0;;;1377:74:1;55086:5:0;;;;:15;;1350:18:1;;55086:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55078:5;:31;55054:204;;;55154:5;;:40;;-1:-1:-1;;;55154:40:0;;-1:-1:-1;;;;;7464:55:1;;;55154:40:0;;;7446:74:1;7536:18;;;7529:34;;;55142:11:0;;:53;;55154:5;;;:25;;7419:18:1;;55154:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55142:53;;;;;;;;;;;-1:-1:-1;55142:53:0;;;;55137:107;;55204:5;;:40;;-1:-1:-1;;;55204:40:0;;-1:-1:-1;;;;;7464:55:1;;;55204:40:0;;;7446:74:1;7536:18;;;7529:34;;;55204:5:0;;;;:25;;7419:18:1;;55204:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55197:47;54972:295;-1:-1:-1;;;54972:295:0:o;55137:107::-;55111:7;;;;:::i;:::-;;;;55054:204;;;;54972:295;;;:::o;27225:100::-;27279:13;27312:5;27305:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27225:100;:::o;28784:221::-;28860:7;32127:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32127:16:0;28880:73;;;;-1:-1:-1;;;28880:73:0;;8607:2:1;28880:73:0;;;8589:21:1;8646:2;8626:18;;;8619:30;8685:34;8665:18;;;8658:62;8756:14;8736:18;;;8729:42;8788:19;;28880:73:0;;;;;;;;;-1:-1:-1;28973:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28973:24:0;;28784:221::o;28307:411::-;28388:13;28404:23;28419:7;28404:14;:23::i;:::-;28388:39;;28452:5;-1:-1:-1;;;;;28446:11:0;:2;-1:-1:-1;;;;;28446:11:0;;;28438:57;;;;-1:-1:-1;;;28438:57:0;;9020:2:1;28438:57:0;;;9002:21:1;9059:2;9039:18;;;9032:30;9098:34;9078:18;;;9071:62;9169:3;9149:18;;;9142:31;9190:19;;28438:57:0;8818:397:1;28438:57:0;4348:10;-1:-1:-1;;;;;28530:21:0;;;;:62;;-1:-1:-1;28555:37:0;28572:5;4348:10;29303:164;:::i;28555:37::-;28508:168;;;;-1:-1:-1;;;28508:168:0;;9422:2:1;28508:168:0;;;9404:21:1;9461:2;9441:18;;;9434:30;9500:34;9480:18;;;9473:62;9571:26;9551:18;;;9544:54;9615:19;;28508:168:0;9220:420:1;28508:168:0;28689:21;28698:2;28702:7;28689:8;:21::i;:::-;28377:341;28307:411;;:::o;53204:322::-;53296:5;;:23;;-1:-1:-1;;;53296:23:0;;-1:-1:-1;;;;;1395:55:1;;;53296:23:0;;;1377:74:1;53261:16:0;;53296:5;;:15;;1350:18:1;;53296:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53292:42;;-1:-1:-1;53333:1:0;;53204:322;-1:-1:-1;53204:322:0:o;53292:42::-;53352:13;53347:170;53379:5;;:23;;-1:-1:-1;;;53379:23:0;;-1:-1:-1;;;;;1395:55:1;;;53379:23:0;;;1377:74:1;53379:5:0;;;;:15;;1350:18:1;;53379:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53371:5;:31;53347:170;;;53447:5;;:40;;-1:-1:-1;;;53447:40:0;;-1:-1:-1;;;;;7464:55:1;;;53447:40:0;;;7446:74:1;7536:18;;;7529:34;;;53435:11:0;;:53;;53447:5;;;:25;;7419:18:1;;53447:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53435:53;;;;;;;;;;;-1:-1:-1;53435:53:0;;;;53430:73;;53490:13;53502:1;53490:13;;:::i;:::-;;;53430:73;53404:7;;;;:::i;:::-;;;;53347:170;;29534:339;29729:41;4348:10;29762:7;29729:18;:41::i;:::-;29721:103;;;;-1:-1:-1;;;29721:103:0;;9980:2:1;29721:103:0;;;9962:21:1;10019:2;9999:18;;;9992:30;10058:34;10038:18;;;10031:62;10129:19;10109:18;;;10102:47;10166:19;;29721:103:0;9778:413:1;29721:103:0;29837:28;29847:4;29853:2;29857:7;29837:9;:28::i;52322:88::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;10398:2:1;5756:68:0;;;10380:21:1;;;10417:18;;;10410:30;10476:34;10456:18;;;10449:62;10528:18;;5756:68:0;10196:356:1;5756:68:0;52390:10:::1;::::0;;-1:-1:-1;;52376:24:0;::::1;52390:10;::::0;;::::1;52389:11;52376:24;::::0;;52322:88::o;52206:104::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;10398:2:1;5756:68:0;;;10380:21:1;;;10417:18;;;10410:30;10476:34;10456:18;;;10449:62;10528:18;;5756:68:0;10196:356:1;5756:68:0;52278:9:::1;:22:::0;52206:104::o;40039:256::-;40136:7;40172:23;40189:5;40172:16;:23::i;:::-;40164:5;:31;40156:87;;;;-1:-1:-1;;;40156:87:0;;10759:2:1;40156:87:0;;;10741:21:1;10798:2;10778:18;;;10771:30;10837:34;10817:18;;;10810:62;10908:13;10888:18;;;10881:41;10939:19;;40156:87:0;10557:407:1;40156:87:0;-1:-1:-1;;;;;;40261:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40039:256::o;52685:507::-;52743:16;52799:20;52812:6;52799:11;:20::i;:::-;52778:18;52789:6;52778:10;:18::i;:::-;:41;:85;;;;;52844:19;52856:6;52844:10;:19::i;:::-;52823:18;52834:6;52823:10;:18::i;:::-;:40;52778:85;:127;;;;;52888:17;52898:6;52888:9;:17::i;:::-;52867:18;52878:6;52867:10;:18::i;:::-;:38;52778:127;52774:158;;;52914:18;52925:6;52914:10;:18::i;52774:158::-;52971:19;52983:6;52971:10;:19::i;:::-;52949;52961:6;52949:11;:19::i;:::-;:41;:84;;;;;53016:17;53026:6;53016:9;:17::i;:::-;52994:19;53006:6;52994:11;:19::i;:::-;:39;52949:84;52945:116;;;53042:19;53054:6;53042:11;:19::i;52945:116::-;53099:18;53110:6;53099:9;:18::i;:::-;53078;53089:6;53078:10;:18::i;:::-;:39;53074:70;;;53126:18;53137:6;53126:10;:18::i;53074:70::-;53164:18;53175:6;53164:9;:18::i;52422:251::-;52565:9;;:49;;52547:12;;-1:-1:-1;;;;;52565:9:0;;52588:21;;52547:12;52565:49;52547:12;52565:49;52588:21;52565:9;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52546:68;;;52635:7;52627:36;;;;-1:-1:-1;;;52627:36:0;;11381:2:1;52627:36:0;;;11363:21:1;11420:2;11400:18;;;11393:30;11459:18;11439;;;11432:46;11495:18;;52627:36:0;11179:340:1;52627:36:0;52451:222;52422:251::o;29944:185::-;30082:39;30099:4;30105:2;30109:7;30082:39;;;;;;;;;;;;:16;:39::i;40561:233::-;40636:7;40672:30;40459:10;:17;;40371:113;40672:30;40664:5;:38;40656:95;;;;-1:-1:-1;;;40656:95:0;;11726:2:1;40656:95:0;;;11708:21:1;11765:2;11745:18;;;11738:30;11804:34;11784:18;;;11777:62;11875:14;11855:18;;;11848:42;11907:19;;40656:95:0;11524:408:1;40656:95:0;40769:10;40780:5;40769:17;;;;;;;;:::i;:::-;;;;;;;;;40762:24;;40561:233;;;:::o;26919:239::-;26991:7;27027:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27027:16:0;27062:19;27054:73;;;;-1:-1:-1;;;27054:73:0;;12328:2:1;27054:73:0;;;12310:21:1;12367:2;12347:18;;;12340:30;12406:34;12386:18;;;12379:62;12477:11;12457:18;;;12450:39;12506:19;;27054:73:0;12126:405:1;50382:486:0;50451:15;50438:9;;:28;;50430:77;;;;-1:-1:-1;;;50430:77:0;;12738:2:1;50430:77:0;;;12720:21:1;12777:2;12757:18;;;12750:30;12816:34;12796:18;;;12789:62;-1:-1:-1;;;12867:18:1;;;12860:34;12911:19;;50430:77:0;12536:400:1;50430:77:0;50528:10;;;;50520:50;;;;-1:-1:-1;;;50520:50:0;;13143:2:1;50520:50:0;;;13125:21:1;13182:2;13162:18;;;13155:30;13221:29;13201:18;;;13194:57;13268:18;;50520:50:0;12941:351:1;50520:50:0;47229:3;50591:13;40459:10;:17;;40371:113;50591:13;:17;;50607:1;50591:17;:::i;:::-;:30;;50583:75;;;;-1:-1:-1;;;50583:75:0;;13499:2:1;50583:75:0;;;13481:21:1;;;13518:18;;;13511:30;13577:34;13557:18;;;13550:62;13629:18;;50583:75:0;13297:356:1;50583:75:0;50692:9;;50679;:22;;50671:50;;;;-1:-1:-1;;;50671:50:0;;13860:2:1;50671:50:0;;;13842:21:1;13899:2;13879:18;;;13872:30;13938:17;13918:18;;;13911:45;13973:18;;50671:50:0;13658:339:1;50671:50:0;50756;4348:10;50766:12;50780:15;964:14;50756:9;:50::i;:::-;50819:27;:15;1083:19;;1101:1;1083:19;;;994:127;50819:27;50382:486::o;55279:133::-;55367:4;;:35;;-1:-1:-1;;;55367:35:0;;-1:-1:-1;;;;;7464:55:1;;;55367:35:0;;;7446:74:1;55335:10:0;7536:18:1;;;7529:34;;;55335:10:0;55367:4;;:24;;7419:18:1;;55367:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;26649:208::-;26721:7;-1:-1:-1;;;;;26749:19:0;;26741:74;;;;-1:-1:-1;;;26741:74:0;;14514:2:1;26741:74:0;;;14496:21:1;14553:2;14533:18;;;14526:30;14592:34;14572:18;;;14565:62;14663:12;14643:18;;;14636:40;14693:19;;26741:74:0;14312:406:1;26741:74:0;-1:-1:-1;;;;;;26833:16:0;;;;;:9;:16;;;;;;;26649:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;10398:2:1;5756:68:0;;;10380:21:1;;;10417:18;;;10410:30;10476:34;10456:18;;;10449:62;10528:18;;5756:68:0;10196:356:1;5756:68:0;6260:30:::1;6287:1;6260:18;:30::i;54660:300::-:0;54718:10;;54743:208;54775:6;;:24;;-1:-1:-1;;;54775:24:0;;-1:-1:-1;;;;;1395:55:1;;;54775:24:0;;;1377:74:1;54775:6:0;;;;:16;;1350:18:1;;54775:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54767:5;:32;54743:208;;;54845:6;;:41;;-1:-1:-1;;;54845:41:0;;-1:-1:-1;;;;;7464:55:1;;;54845:41:0;;;7446:74:1;7536:18;;;7529:34;;;54832:12:0;;:55;;54845:6;;;:26;;7419:18:1;;54845:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54832:55;;;;;;;;;;;-1:-1:-1;54832:55:0;;;;54827:110;;54896:6;;:41;;-1:-1:-1;;;54896:41:0;;-1:-1:-1;;;;;7464:55:1;;;54896:41:0;;;7446:74:1;7536:18;;;7529:34;;;54896:6:0;;;;:26;;7419:18:1;;54896:41:0;7272:297:1;54827:110:0;54801:7;;;;:::i;:::-;;;;54743:208;;53877:322;53969:5;;:23;;-1:-1:-1;;;53969:23:0;;-1:-1:-1;;;;;1395:55:1;;;53969:23:0;;;1377:74:1;53934:16:0;;53969:5;;:15;;1350:18:1;;53969:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53965:42;;-1:-1:-1;54006:1:0;;53877:322;-1:-1:-1;53877:322:0:o;53965:42::-;54025:13;54020:170;54052:5;;:23;;-1:-1:-1;;;54052:23:0;;-1:-1:-1;;;;;1395:55:1;;;54052:23:0;;;1377:74:1;54052:5:0;;;;:15;;1350:18:1;;54052:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54044:5;:31;54020:170;;;54120:5;;:40;;-1:-1:-1;;;54120:40:0;;-1:-1:-1;;;;;7464:55:1;;;54120:40:0;;;7446:74:1;7536:18;;;7529:34;;;54108:11:0;;:53;;54120:5;;;:25;;7419:18:1;;54120:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54108:53;;;;;;;;;;;-1:-1:-1;54108:53:0;;;;54103:73;;54163:13;54175:1;54163:13;;:::i;:::-;;;54103:73;54077:7;;;;:::i;:::-;;;;54020:170;;54211:126;54305:4;;:22;;-1:-1:-1;;;54305:22:0;;-1:-1:-1;;;;;1395:55:1;;;54305:22:0;;;1377:74:1;54267:16:0;;54305:4;;:14;;1350:18:1;;54305:22:0;1231:226:1;48420:184:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;10398:2:1;5756:68:0;;;10380:21:1;;;10417:18;;;10410:30;10476:34;10456:18;;;10449:62;10528:18;;5756:68:0;10196:356:1;5756:68:0;48513:14:::1;::::0;::::1;;48512:15;48504:50;;;::::0;-1:-1:-1;;;48504:50:0;;14925:2:1;48504:50:0::1;::::0;::::1;14907:21:1::0;14964:2;14944:18;;;14937:30;15003:25;14983:18;;;14976:53;15046:18;;48504:50:0::1;14723:347:1::0;48504:50:0::1;48567:27:::0;;::::1;::::0;:12:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48420:184:::0;:::o;27394:104::-;27450:13;27483:7;27476:14;;;;;:::i;48120:167::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;10398:2:1;5756:68:0;;;10380:21:1;;;10417:18;;;10410:30;10476:34;10456:18;;;10449:62;10528:18;;5756:68:0;10196:356:1;5756:68:0;48205:14:::1;::::0;::::1;;48204:15;48196:50;;;::::0;-1:-1:-1;;;48196:50:0;;14925:2:1;48196:50:0::1;::::0;::::1;14907:21:1::0;14964:2;14944:18;;;14937:30;15003:25;14983:18;;;14976:53;15046:18;;48196:50:0::1;14723:347:1::0;48196:50:0::1;48259:18:::0;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;29077:155::-:0;29172:52;4348:10;29205:8;29215;29172:18;:52::i;48770:749::-;48857:15;48844:9;;:28;;48836:77;;;;-1:-1:-1;;;48836:77:0;;12738:2:1;48836:77:0;;;12720:21:1;12777:2;12757:18;;;12750:30;12816:34;12796:18;;;12789:62;-1:-1:-1;;;12867:18:1;;;12860:34;12911:19;;48836:77:0;12536:400:1;48836:77:0;47229:3;48950:14;48934:13;40459:10;:17;;40371:113;48934:13;:30;;;;:::i;:::-;:43;;48926:88;;;;-1:-1:-1;;;48926:88:0;;13499:2:1;48926:88:0;;;13481:21:1;;;13518:18;;;13511:30;13577:34;13557:18;;;13550:62;13629:18;;48926:88:0;13297:356:1;48926:88:0;49053:25;4348:10;52685:507;:::i;49053:25::-;49035:14;:43;;49027:101;;;;-1:-1:-1;;;49027:101:0;;15277:2:1;49027:101:0;;;15259:21:1;15316:2;15296:18;;;15289:30;15355:34;15335:18;;;15328:62;15426:15;15406:18;;;15399:43;15459:19;;49027:101:0;15075:409:1;49027:101:0;49218:4;;-1:-1:-1;;;;;49218:4:0;:21;4348:10;49218:50;;-1:-1:-1;;;;;;49218:50:0;;;;;;;-1:-1:-1;;;;;15742:15:1;;;49218:50:0;;;15724:34:1;49262:4:0;15774:18:1;;;15767:43;15636:18;;49218:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49210:84;;;;-1:-1:-1;;;49210:84:0;;16273:2:1;49210:84:0;;;16255:21:1;16312:2;16292:18;;;16285:30;16351:23;16331:18;;;16324:51;16392:18;;49210:84:0;16071:345:1;49210:84:0;49316:13;49311:199;49343:14;49335:5;:22;49311:199;;;49385:111;49395:23;4348:10;55279:133;:::i;49395:23::-;49420:24;4348:10;54353:295;:::i;49420:24::-;49445:25;4348:10;54660:300;:::i;49445:25::-;49471:24;4348:10;54972:295;:::i;49471:24::-;49385:9;:111::i;:::-;49359:7;;;;:::i;:::-;;;;49311:199;;54353:295;54410:10;;54435:204;54467:5;;:23;;-1:-1:-1;;;54467:23:0;;-1:-1:-1;;;;;1395:55:1;;;54467:23:0;;;1377:74:1;54467:5:0;;;;:15;;1350:18:1;;54467:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54459:5;:31;54435:204;;;54535:5;;:40;;-1:-1:-1;;;54535:40:0;;-1:-1:-1;;;;;7464:55:1;;;54535:40:0;;;7446:74:1;7536:18;;;7529:34;;;54523:11:0;;:53;;54535:5;;;:25;;7419:18:1;;54535:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54523:53;;;;;;;;;;;-1:-1:-1;54523:53:0;;;;54518:107;;54585:5;;:40;;-1:-1:-1;;;54585:40:0;;-1:-1:-1;;;;;7464:55:1;;;54585:40:0;;;7446:74:1;7536:18;;;7529:34;;;54585:5:0;;;;:25;;7419:18:1;;54585:40:0;7272:297:1;54518:107:0;54492:7;;;;:::i;:::-;;;;54435:204;;30200:328;30375:41;4348:10;30408:7;30375:18;:41::i;:::-;30367:103;;;;-1:-1:-1;;;30367:103:0;;9980:2:1;30367:103:0;;;9962:21:1;10019:2;9999:18;;;9992:30;10058:34;10038:18;;;10031:62;10129:19;10109:18;;;10102:47;10166:19;;30367:103:0;9778:413:1;30367:103:0;30481:39;30495:4;30501:2;30505:7;30514:5;30481:13;:39::i;:::-;30200:328;;;;:::o;27569:334::-;32103:4;32127:16;;;:7;:16;;;;;;27642:13;;-1:-1:-1;;;;;32127:16:0;27668:76;;;;-1:-1:-1;;;27668:76:0;;16623:2:1;27668:76:0;;;16605:21:1;16662:2;16642:18;;;16635:30;16701:34;16681:18;;;16674:62;16772:17;16752:18;;;16745:45;16807:19;;27668:76:0;16421:411:1;27668:76:0;27757:21;27781:10;:8;:10::i;:::-;27757:34;;27833:1;27815:7;27809:21;:25;:86;;;;;;;;;;;;;;;;;27861:7;27870:18;:7;:16;:18::i;:::-;27844:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27802:93;27569:334;-1:-1:-1;;;27569:334:0:o;48616:142::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;10398:2:1;5756:68:0;;;10380:21:1;;;10417:18;;;10410:30;10476:34;10456:18;;;10449:62;10528:18;;5756:68:0;10196:356:1;5756:68:0;48674:14:::1;:21:::0;;-1:-1:-1;;48674:21:0::1;48691:4;48674:21;::::0;;48713:35:::1;::::0;::::1;::::0;::::1;::::0;48726:7:::1;::::0;48735:12:::1;::::0;48713:35:::1;:::i;:::-;;;;;;;;48616:142::o:0;53538:327::-;53631:6;;:24;;-1:-1:-1;;;53631:24:0;;-1:-1:-1;;;;;1395:55:1;;;53631:24:0;;;1377:74:1;53596:16:0;;53631:6;;:16;;1350:18:1;;53631:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53627:43;;-1:-1:-1;53669:1:0;;53538:327;-1:-1:-1;53538:327:0:o;53627:43::-;53688:13;53683:173;53715:6;;:24;;-1:-1:-1;;;53715:24:0;;-1:-1:-1;;;;;1395:55:1;;;53715:24:0;;;1377:74:1;53715:6:0;;;;:16;;1350:18:1;;53715:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53707:5;:32;53683:173;;;53785:6;;:41;;-1:-1:-1;;;53785:41:0;;-1:-1:-1;;;;;7464:55:1;;;53785:41:0;;;7446:74:1;7536:18;;;7529:34;;;53772:12:0;;:55;;53785:6;;;:26;;7419:18:1;;53785:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53772:55;;;;;;;;;;;-1:-1:-1;53772:55:0;;;;53767:75;;53829:13;53841:1;53829:13;;:::i;:::-;;;53767:75;53741:7;;;;:::i;:::-;;;;53683:173;;48299:109;48343:13;48386:12;48379:19;;;;;:::i;6453:201::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;10398:2:1;5756:68:0;;;10380:21:1;;;10417:18;;;10410:30;10476:34;10456:18;;;10449:62;10528:18;;5756:68:0;10196:356:1;5756:68:0;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;19200:2:1;6534:73:0::1;::::0;::::1;19182:21:1::0;19239:2;19219:18;;;19212:30;19278:34;19258:18;;;19251:62;19349:8;19329:18;;;19322:36;19375:19;;6534:73:0::1;18998:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;49531:839::-:0;49657:15;49644:9;;:28;;49636:77;;;;-1:-1:-1;;;49636:77:0;;12738:2:1;49636:77:0;;;12720:21:1;12777:2;12757:18;;;12750:30;12816:34;12796:18;;;12789:62;-1:-1:-1;;;12867:18:1;;;12860:34;12911:19;;49636:77:0;12536:400:1;49636:77:0;47229:3;49734:13;40459:10;:17;;40371:113;49734:13;:17;;49750:1;49734:17;:::i;:::-;:30;;49726:75;;;;-1:-1:-1;;;49726:75:0;;13499:2:1;49726:75:0;;;13481:21:1;;;13518:18;;;13511:30;13577:34;13557:18;;;13550:62;13629:18;;49726:75:0;13297:356:1;49726:75:0;4348:10;49826:5;;:22;;-1:-1:-1;;;49826:22:0;;;;;1195:25:1;;;-1:-1:-1;;;;;49826:38:0;;;;:5;;;;:13;;1168:18:1;;49826:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;49826:38:0;;49818:91;;;;-1:-1:-1;;;49818:91:0;;19863:2:1;49818:91:0;;;19845:21:1;19902:2;19882:18;;;19875:30;19941:34;19921:18;;;19914:62;20012:10;19992:18;;;19985:38;20040:19;;49818:91:0;19661:404:1;49818:91:0;4348:10;49930:6;;:24;;-1:-1:-1;;;49930:24:0;;;;;1195:25:1;;;-1:-1:-1;;;;;49930:40:0;;;;:6;;;;:14;;1168:18:1;;49930:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;49930:40:0;;49922:94;;;;-1:-1:-1;;;49922:94:0;;20272:2:1;49922:94:0;;;20254:21:1;20311:2;20291:18;;;20284:30;20350:34;20330:18;;;20323:62;20421:11;20401:18;;;20394:39;20450:19;;49922:94:0;20070:405:1;49922:94:0;4348:10;50037:5;;:22;;-1:-1:-1;;;50037:22:0;;;;;1195:25:1;;;-1:-1:-1;;;;;50037:38:0;;;;:5;;;;:13;;1168:18:1;;50037:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50037:38:0;;50029:91;;;;-1:-1:-1;;;50029:91:0;;20682:2:1;50029:91:0;;;20664:21:1;20721:2;20701:18;;;20694:30;20760:34;20740:18;;;20733:62;20831:10;20811:18;;;20804:38;20859:19;;50029:91:0;20480:404:1;50029:91:0;50210:4;;-1:-1:-1;;;;;50210:4:0;:21;4348:10;50210:50;;-1:-1:-1;;;;;;50210:50:0;;;;;;;-1:-1:-1;;;;;15742:15:1;;;50210:50:0;;;15724:34:1;50254:4:0;15774:18:1;;;15767:43;15636:18;;50210:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50202:84;;;;-1:-1:-1;;;50202:84:0;;16273:2:1;50202:84:0;;;16255:21:1;16312:2;16292:18;;;16285:30;16351:23;16331:18;;;16324:51;16392:18;;50202:84:0;16071:345:1;50202:84:0;50303:45;50313:6;50321:7;50330:8;50340:7;50303:9;:45::i;46979:100::-;;;;;;;;;;;;;;;;;;;:::o;39731:224::-;39833:4;-1:-1:-1;;;;;;39857:50:0;;39872:35;39857:50;;:90;;;39911:36;39935:11;39911:23;:36::i;36020:174::-;36095:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;36095:29:0;-1:-1:-1;;;;;36095:29:0;;;;;;;;:24;;36149:23;36095:24;36149:14;:23::i;:::-;-1:-1:-1;;;;;36140:46:0;;;;;;;;;;;36020:174;;:::o;32332:348::-;32425:4;32127:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32127:16:0;32442:73;;;;-1:-1:-1;;;32442:73:0;;21091:2:1;32442:73:0;;;21073:21:1;21130:2;21110:18;;;21103:30;21169:34;21149:18;;;21142:62;21240:14;21220:18;;;21213:42;21272:19;;32442:73:0;20889:408:1;32442:73:0;32526:13;32542:23;32557:7;32542:14;:23::i;:::-;32526:39;;32595:5;-1:-1:-1;;;;;32584:16:0;:7;-1:-1:-1;;;;;32584:16:0;;:51;;;;32628:7;-1:-1:-1;;;;;32604:31:0;:20;32616:7;32604:11;:20::i;:::-;-1:-1:-1;;;;;32604:31:0;;32584:51;:87;;;-1:-1:-1;;;;;;29424:25:0;;;29400:4;29424:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32639:32;32576:96;32332:348;-1:-1:-1;;;;32332:348:0:o;35324:578::-;35483:4;-1:-1:-1;;;;;35456:31:0;:23;35471:7;35456:14;:23::i;:::-;-1:-1:-1;;;;;35456:31:0;;35448:85;;;;-1:-1:-1;;;35448:85:0;;21504:2:1;35448:85:0;;;21486:21:1;21543:2;21523:18;;;21516:30;21582:34;21562:18;;;21555:62;21653:11;21633:18;;;21626:39;21682:19;;35448:85:0;21302:405:1;35448:85:0;-1:-1:-1;;;;;35552:16:0;;35544:65;;;;-1:-1:-1;;;35544:65:0;;21914:2:1;35544:65:0;;;21896:21:1;21953:2;21933:18;;;21926:30;21992:34;21972:18;;;21965:62;22063:6;22043:18;;;22036:34;22087:19;;35544:65:0;21712:400:1;35544:65:0;35622:39;35643:4;35649:2;35653:7;35622:20;:39::i;:::-;35726:29;35743:1;35747:7;35726:8;:29::i;:::-;-1:-1:-1;;;;;35768:15:0;;;;;;:9;:15;;;;;:20;;35787:1;;35768:15;:20;;35787:1;;35768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35799:13:0;;;;;;:9;:13;;;;;:18;;35816:1;;35799:13;:18;;35816:1;;35799:18;:::i;:::-;;;;-1:-1:-1;;35828:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;35828:21:0;-1:-1:-1;;;;;35828:21:0;;;;;;;;;35867:27;;35828:16;;35867:27;;;;;;;35324:578;;;:::o;33022:110::-;33098:26;33108:2;33112:7;33098:26;;;;;;;;;;;;:9;:26::i;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;36336:315::-;36491:8;-1:-1:-1;;;;;36482:17:0;:5;-1:-1:-1;;;;;36482:17:0;;;36474:55;;;;-1:-1:-1;;;36474:55:0;;22449:2:1;36474:55:0;;;22431:21:1;22488:2;22468:18;;;22461:30;22527:27;22507:18;;;22500:55;22572:18;;36474:55:0;22247:349:1;36474:55:0;-1:-1:-1;;;;;36540:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36540:46:0;;;;;;;;;;36602:41;;586::1;;;36602::0;;559:18:1;36602:41:0;;;;;;;36336:315;;;:::o;50880:772::-;50998:20;;;;:11;:20;;;;;;;;50997:21;50989:86;;;;-1:-1:-1;;;50989:86:0;;22803:2:1;50989:86:0;;;22785:21:1;22842:2;22822:18;;;22815:30;22881:34;22861:18;;;22854:62;22952:22;22932:18;;;22925:50;22992:19;;50989:86:0;22601:416:1;50989:86:0;51097:22;;;;:12;:22;;;;;;;;51096:23;51088:90;;;;-1:-1:-1;;;51088:90:0;;23224:2:1;51088:90:0;;;23206:21:1;23263:2;23243:18;;;23236:30;23302:34;23282:18;;;23275:62;23373:24;23353:18;;;23346:52;23415:19;;51088:90:0;23022:418:1;51088:90:0;51200:20;;;;:11;:20;;;;;;;;51199:21;51191:87;;;;-1:-1:-1;;;51191:87:0;;23647:2:1;51191:87:0;;;23629:21:1;23686:2;23666:18;;;23659:30;23725:34;23705:18;;;23698:62;23796:23;23776:18;;;23769:51;23837:19;;51191:87:0;23445:417:1;51191:87:0;51313:50;4348:10;51323:12;4268:98;51313:50;51376:27;:15;1083:19;;1101:1;1083:19;;;994:127;51376:27;51438:4;;-1:-1:-1;;;;;51438:4:0;:17;4348:10;51438:45;;-1:-1:-1;;;;;;51438:45:0;;;;;;;-1:-1:-1;;;;;24148:15:1;;;51438:45:0;;;24130:34:1;46736:42:0;24180:18:1;;;24173:43;24232:18;;;24225:34;;;24042:18;;51438:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51533:20:0;;;;-1:-1:-1;51533:11:0;:20;;;;;;;;:27;;51556:4;-1:-1:-1;;51533:27:0;;;;;;;;51573:22;;;:12;:22;;;;;:29;;;;;;;;51615:20;;;:11;:20;;;;;;:27;;;;;;;;;;-1:-1:-1;50880:772:0:o;31410:315::-;31567:28;31577:4;31583:2;31587:7;31567:9;:28::i;:::-;31614:48;31637:4;31643:2;31647:7;31656:5;31614:22;:48::i;:::-;31606:111;;;;-1:-1:-1;;;31606:111:0;;24472:2:1;31606:111:0;;;24454:21:1;24511:2;24491:18;;;24484:30;24550:34;24530:18;;;24523:62;24621:20;24601:18;;;24594:48;24659:19;;31606:111:0;24270:414:1;47996:112:0;48048:13;48091:7;48084:14;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;;;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;26280:305;26382:4;-1:-1:-1;;;;;;26419:40:0;;26434:25;26419:40;;:105;;-1:-1:-1;;;;;;;26476:48:0;;26491:33;26476:48;26419:105;:158;;;-1:-1:-1;18100:25:0;-1:-1:-1;;;;;;18085:40:0;;;26541:36;17976:157;51742:214;51901:45;51928:4;51934:2;51938:7;51901:26;:45::i;33359:321::-;33489:18;33495:2;33499:7;33489:5;:18::i;:::-;33540:54;33571:1;33575:2;33579:7;33588:5;33540:22;:54::i;:::-;33518:154;;;;-1:-1:-1;;;33518:154:0;;24472:2:1;33518:154:0;;;24454:21:1;24511:2;24491:18;;;24484:30;24550:34;24530:18;;;24523:62;24621:20;24601:18;;;24594:48;24659:19;;33518:154:0;24270:414:1;37216:799:0;37371:4;-1:-1:-1;;;;;37392:13:0;;8155:20;8203:8;37388:620;;37428:72;;;;;-1:-1:-1;;;;;37428:36:0;;;;;:72;;4348:10;;37479:4;;37485:7;;37494:5;;37428:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37428:72:0;;;;;;;;-1:-1:-1;;37428:72:0;;;;;;;;;;;;:::i;:::-;;;37424:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37670:13:0;;37666:272;;37713:60;;-1:-1:-1;;;37713:60:0;;24472:2:1;37713:60:0;;;24454:21:1;24511:2;24491:18;;;24484:30;24550:34;24530:18;;;24523:62;24621:20;24601:18;;;24594:48;24659:19;;37713:60:0;24270:414:1;37666:272:0;37888:6;37882:13;37873:6;37869:2;37865:15;37858:38;37424:529;-1:-1:-1;;;;;;37551:51:0;37561:41;37551:51;;-1:-1:-1;37544:58:0;;37388:620;-1:-1:-1;37992:4:0;37216:799;;;;;;:::o;41407:589::-;-1:-1:-1;;;;;41613:18:0;;41609:187;;41648:40;41680:7;42823:10;:17;;42796:24;;;;:15;:24;;;;;:44;;;42851:24;;;;;;;;;;;;42719:164;41648:40;41609:187;;;41718:2;-1:-1:-1;;;;;41710:10:0;:4;-1:-1:-1;;;;;41710:10:0;;41706:90;;41737:47;41770:4;41776:7;41737:32;:47::i;:::-;-1:-1:-1;;;;;41810:16:0;;41806:183;;41843:45;41880:7;41843:36;:45::i;41806:183::-;41916:4;-1:-1:-1;;;;;41910:10:0;:2;-1:-1:-1;;;;;41910:10:0;;41906:83;;41937:40;41965:2;41969:7;41937:27;:40::i;34016:382::-;-1:-1:-1;;;;;34096:16:0;;34088:61;;;;-1:-1:-1;;;34088:61:0;;26093:2:1;34088:61:0;;;26075:21:1;;;26112:18;;;26105:30;26171:34;26151:18;;;26144:62;26223:18;;34088:61:0;25891:356:1;34088:61:0;32103:4;32127:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32127:16:0;:30;34160:58;;;;-1:-1:-1;;;34160:58:0;;26454:2:1;34160:58:0;;;26436:21:1;26493:2;26473:18;;;26466:30;26532;26512:18;;;26505:58;26580:18;;34160:58:0;26252:352:1;34160:58:0;34231:45;34260:1;34264:2;34268:7;34231:20;:45::i;:::-;-1:-1:-1;;;;;34289:13:0;;;;;;:9;:13;;;;;:18;;34306:1;;34289:13;:18;;34306:1;;34289:18;:::i;:::-;;;;-1:-1:-1;;34318:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;34318:21:0;-1:-1:-1;;;;;34318:21:0;;;;;;;;34357:33;;34318:16;;;34357:33;;34318:16;;34357:33;34016:382;;:::o;43510:988::-;43776:22;43826:1;43801:22;43818:4;43801:16;:22::i;:::-;:26;;;;:::i;:::-;43838:18;43859:26;;;:17;:26;;;;;;43776:51;;-1:-1:-1;43992:28:0;;;43988:328;;-1:-1:-1;;;;;44059:18:0;;44037:19;44059:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44110:30;;;;;;:44;;;44227:30;;:17;:30;;;;;:43;;;43988:328;-1:-1:-1;44412:26:0;;;;:17;:26;;;;;;;;44405:33;;;-1:-1:-1;;;;;44456:18:0;;;;;:12;:18;;;;;:34;;;;;;;44449:41;43510:988::o;44793:1079::-;45071:10;:17;45046:22;;45071:21;;45091:1;;45071:21;:::i;:::-;45103:18;45124:24;;;:15;:24;;;;;;45497:10;:26;;45046:46;;-1:-1:-1;45124:24:0;;45046:46;;45497:26;;;;;;:::i;:::-;;;;;;;;;45475:48;;45561:11;45536:10;45547;45536:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45641:28;;;:15;:28;;;;;;;:41;;;45813:24;;;;;45806:31;45848:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44864:1008;;;44793:1079;:::o;42297:221::-;42382:14;42399:20;42416:2;42399:16;:20::i;:::-;-1:-1:-1;;;;;42430:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42475:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42297:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:154::-;-1:-1:-1;;;;;717:5:1;713:54;706:5;703:65;693:93;;782:1;779;772:12;797:247;856:6;909:2;897:9;888:7;884:23;880:32;877:52;;;925:1;922;915:12;877:52;964:9;951:23;983:31;1008:5;983:31;:::i;1617:258::-;1689:1;1699:113;1713:6;1710:1;1707:13;1699:113;;;1789:11;;;1783:18;1770:11;;;1763:39;1735:2;1728:10;1699:113;;;1830:6;1827:1;1824:13;1821:48;;;-1:-1:-1;;1865:1:1;1847:16;;1840:27;1617:258::o;1880:317::-;1922:3;1960:5;1954:12;1987:6;1982:3;1975:19;2003:63;2059:6;2052:4;2047:3;2043:14;2036:4;2029:5;2025:16;2003:63;:::i;:::-;2111:2;2099:15;-1:-1:-1;;2095:88:1;2086:98;;;;2186:4;2082:109;;1880:317;-1:-1:-1;;1880:317:1:o;2202:220::-;2351:2;2340:9;2333:21;2314:4;2371:45;2412:2;2401:9;2397:18;2389:6;2371:45;:::i;2427:180::-;2486:6;2539:2;2527:9;2518:7;2514:23;2510:32;2507:52;;;2555:1;2552;2545:12;2507:52;-1:-1:-1;2578:23:1;;2427:180;-1:-1:-1;2427:180:1:o;2612:315::-;2680:6;2688;2741:2;2729:9;2720:7;2716:23;2712:32;2709:52;;;2757:1;2754;2747:12;2709:52;2796:9;2783:23;2815:31;2840:5;2815:31;:::i;:::-;2865:5;2917:2;2902:18;;;;2889:32;;-1:-1:-1;;;2612:315:1:o;2932:456::-;3009:6;3017;3025;3078:2;3066:9;3057:7;3053:23;3049:32;3046:52;;;3094:1;3091;3084:12;3046:52;3133:9;3120:23;3152:31;3177:5;3152:31;:::i;:::-;3202:5;-1:-1:-1;3259:2:1;3244:18;;3231:32;3272:33;3231:32;3272:33;:::i;:::-;2932:456;;3324:7;;-1:-1:-1;;;3378:2:1;3363:18;;;;3350:32;;2932:456::o;3649:184::-;-1:-1:-1;;;3698:1:1;3691:88;3798:4;3795:1;3788:15;3822:4;3819:1;3812:15;3838:691;3903:5;3933:18;3974:2;3966:6;3963:14;3960:40;;;3980:18;;:::i;:::-;4114:2;4108:9;4180:2;4168:15;;-1:-1:-1;;4164:24:1;;;4190:2;4160:33;4156:42;4144:55;;;4214:18;;;4234:22;;;4211:46;4208:72;;;4260:18;;:::i;:::-;4300:10;4296:2;4289:22;4329:6;4320:15;;4359:6;4351;4344:22;4399:3;4390:6;4385:3;4381:16;4378:25;4375:45;;;4416:1;4413;4406:12;4375:45;4466:6;4461:3;4454:4;4446:6;4442:17;4429:44;4521:1;4514:4;4505:6;4497;4493:19;4489:30;4482:41;;;;3838:691;;;;;:::o;4534:451::-;4603:6;4656:2;4644:9;4635:7;4631:23;4627:32;4624:52;;;4672:1;4669;4662:12;4624:52;4712:9;4699:23;4745:18;4737:6;4734:30;4731:50;;;4777:1;4774;4767:12;4731:50;4800:22;;4853:4;4845:13;;4841:27;-1:-1:-1;4831:55:1;;4882:1;4879;4872:12;4831:55;4905:74;4971:7;4966:2;4953:16;4948:2;4944;4940:11;4905:74;:::i;4990:118::-;5076:5;5069:13;5062:21;5055:5;5052:32;5042:60;;5098:1;5095;5088:12;5113:382;5178:6;5186;5239:2;5227:9;5218:7;5214:23;5210:32;5207:52;;;5255:1;5252;5245:12;5207:52;5294:9;5281:23;5313:31;5338:5;5313:31;:::i;:::-;5363:5;-1:-1:-1;5420:2:1;5405:18;;5392:32;5433:30;5392:32;5433:30;:::i;:::-;5482:7;5472:17;;;5113:382;;;;;:::o;5500:795::-;5595:6;5603;5611;5619;5672:3;5660:9;5651:7;5647:23;5643:33;5640:53;;;5689:1;5686;5679:12;5640:53;5728:9;5715:23;5747:31;5772:5;5747:31;:::i;:::-;5797:5;-1:-1:-1;5854:2:1;5839:18;;5826:32;5867:33;5826:32;5867:33;:::i;:::-;5919:7;-1:-1:-1;5973:2:1;5958:18;;5945:32;;-1:-1:-1;6028:2:1;6013:18;;6000:32;6055:18;6044:30;;6041:50;;;6087:1;6084;6077:12;6041:50;6110:22;;6163:4;6155:13;;6151:27;-1:-1:-1;6141:55:1;;6192:1;6189;6182:12;6141:55;6215:74;6281:7;6276:2;6263:16;6258:2;6254;6250:11;6215:74;:::i;:::-;6205:84;;;5500:795;;;;;;;:::o;6300:388::-;6368:6;6376;6429:2;6417:9;6408:7;6404:23;6400:32;6397:52;;;6445:1;6442;6435:12;6397:52;6484:9;6471:23;6503:31;6528:5;6503:31;:::i;:::-;6553:5;-1:-1:-1;6610:2:1;6595:18;;6582:32;6623:33;6582:32;6623:33;:::i;6693:385::-;6779:6;6787;6795;6803;6856:3;6844:9;6835:7;6831:23;6827:33;6824:53;;;6873:1;6870;6863:12;6824:53;-1:-1:-1;;6896:23:1;;;6966:2;6951:18;;6938:32;;-1:-1:-1;7017:2:1;7002:18;;6989:32;;7068:2;7053:18;7040:32;;-1:-1:-1;6693:385:1;-1:-1:-1;6693:385:1:o;7083:184::-;7153:6;7206:2;7194:9;7185:7;7181:23;7177:32;7174:52;;;7222:1;7219;7212:12;7174:52;-1:-1:-1;7245:16:1;;7083:184;-1:-1:-1;7083:184:1:o;7574:::-;-1:-1:-1;;;7623:1:1;7616:88;7723:4;7720:1;7713:15;7747:4;7744:1;7737:15;7763:195;7802:3;7833:66;7826:5;7823:77;7820:103;;;7903:18;;:::i;:::-;-1:-1:-1;7950:1:1;7939:13;;7763:195::o;7963:437::-;8042:1;8038:12;;;;8085;;;8106:61;;8160:4;8152:6;8148:17;8138:27;;8106:61;8213:2;8205:6;8202:14;8182:18;8179:38;8176:218;;;-1:-1:-1;;;8247:1:1;8240:88;8351:4;8348:1;8341:15;8379:4;8376:1;8369:15;9645:128;9685:3;9716:1;9712:6;9709:1;9706:13;9703:39;;;9722:18;;:::i;:::-;-1:-1:-1;9758:9:1;;9645:128::o;11937:184::-;-1:-1:-1;;;11986:1:1;11979:88;12086:4;12083:1;12076:15;12110:4;12107:1;12100:15;15821:245;15888:6;15941:2;15929:9;15920:7;15916:23;15912:32;15909:52;;;15957:1;15954;15947:12;15909:52;15989:9;15983:16;16008:28;16030:5;16008:28;:::i;16837:470::-;17016:3;17054:6;17048:13;17070:53;17116:6;17111:3;17104:4;17096:6;17092:17;17070:53;:::i;:::-;17186:13;;17145:16;;;;17208:57;17186:13;17145:16;17242:4;17230:17;;17208:57;:::i;:::-;17281:20;;16837:470;-1:-1:-1;;;;16837:470:1:o;17438:1157::-;17523:12;;17488:3;;17578:1;17598:18;;;;17651;;;;17678:61;;17732:4;17724:6;17720:17;17710:27;;17678:61;17758:2;17806;17798:6;17795:14;17775:18;17772:38;17769:218;;;-1:-1:-1;;;17840:1:1;17833:88;17944:4;17941:1;17934:15;17972:4;17969:1;17962:15;17769:218;1549:19;;;1601:4;1592:14;;18073:18;18100:162;;;;18276:1;18271:318;;;;18066:523;;18100:162;-1:-1:-1;;18139:9:1;18135:82;18128:5;18121:97;18249:2;18242:5;18238:14;18231:21;;18100:162;;18271:318;17385:1;17378:14;;;17422:4;17409:18;;18365:1;18379:167;18393:6;18390:1;18387:13;18379:167;;;18473:14;;18458:13;;;18451:37;18516:16;;;;18408:10;;18379:167;;;18566:13;;;-1:-1:-1;;18066:523:1;;;;;;;;17438:1157;;;;:::o;18600:393::-;18791:2;18780:9;18773:21;18754:4;18817:53;18866:2;18855:9;18851:18;18843:6;18817:53;:::i;:::-;18918:9;18910:6;18906:22;18901:2;18890:9;18886:18;18879:50;18946:41;18980:6;18972;18946:41;:::i;:::-;18938:49;18600:393;-1:-1:-1;;;;;18600:393:1:o;19405:251::-;19475:6;19528:2;19516:9;19507:7;19503:23;19499:32;19496:52;;;19544:1;19541;19534:12;19496:52;19576:9;19570:16;19595:31;19620:5;19595:31;:::i;22117:125::-;22157:4;22185:1;22182;22179:8;22176:34;;;22190:18;;:::i;:::-;-1:-1:-1;22227:9:1;;22117:125::o;24689:184::-;-1:-1:-1;;;24738:1:1;24731:88;24838:4;24835:1;24828:15;24862:4;24859:1;24852:15;24878:120;24918:1;24944;24934:35;;24949:18;;:::i;:::-;-1:-1:-1;24983:9:1;;24878:120::o;25003:112::-;25035:1;25061;25051:35;;25066:18;;:::i;:::-;-1:-1:-1;25100:9:1;;25003:112::o;25120:512::-;25314:4;-1:-1:-1;;;;;25424:2:1;25416:6;25412:15;25401:9;25394:34;25476:2;25468:6;25464:15;25459:2;25448:9;25444:18;25437:43;;25516:6;25511:2;25500:9;25496:18;25489:34;25559:3;25554:2;25543:9;25539:18;25532:31;25580:46;25621:3;25610:9;25606:19;25598:6;25580:46;:::i;:::-;25572:54;25120:512;-1:-1:-1;;;;;;25120:512:1:o;25637:249::-;25706:6;25759:2;25747:9;25738:7;25734:23;25730:32;25727:52;;;25775:1;25772;25765:12;25727:52;25807:9;25801:16;25826:30;25850:5;25826:30;:::i;26609:184::-;-1:-1:-1;;;26658:1:1;26651:88;26758:4;26755:1;26748:15;26782:4;26779:1;26772:15
Swarm Source
ipfs://24d88ba6426c42d7db6b56a6311b45bd18dcfe49cfb8934f78467d715050dca4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.