Contract Overview
Balance:
0 ETH
ETH Value:
$0.00
My Name Tag:
Not Available
TokenTracker:
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
Harness
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Arbiscan on 2022-05-09 */ // Sources flattened with hardhat v2.8.3 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts 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/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts 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/[email protected] // 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/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/utils/math/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a / b + (a % b == 0 ? 0 : 1); } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File contracts/ClansClasses/Control.sol pragma solidity 0.8.7; abstract contract Control is AccessControl { bytes32 public constant SHOGUN_OWNER_ROLE = keccak256("SHOGUN_OWNER_ROLE"); modifier onlyOwner() { require(hasRole(SHOGUN_OWNER_ROLE, _msgSender()), "MinterControl: not a SHOGUN_OWNER_ROLE"); _; } constructor() { _setRoleAdmin(SHOGUN_OWNER_ROLE, SHOGUN_OWNER_ROLE); _setupRole(SHOGUN_OWNER_ROLE, _msgSender()); } function grantOwner(address _owner) external { grantRole(SHOGUN_OWNER_ROLE, _owner); } function isOwner(address _owner) public view returns (bool) { return hasRole(SHOGUN_OWNER_ROLE, _owner); } } // File contracts/Harnesses/Harness.sol pragma solidity 0.8.7; contract Harness is Control, ERC721Enumerable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; string public baseURI; uint256 public harnessesMinted; event HarnessMint(address to, uint256 tokenId); constructor() ERC721("Shogun War Harness", "Harness") { _tokenIdCounter._value = 1; } function supportsInterface(bytes4 interfaceId) public view override(ERC721Enumerable, AccessControl) returns (bool) { return ERC721Enumerable.supportsInterface(interfaceId) || AccessControl.supportsInterface(interfaceId); } function safeMint(address to) public onlyOwner { _mint(to); } function tokenURI(uint256 _tokenId) public view override returns (string memory) { // set up api URL to return golden ticket metadata require(_exists(_tokenId), "URI query for nonexistent token"); return bytes(baseURI).length > 0 ? string(abi.encodePacked( baseURI, _tokenId.toString() )) : ""; } function _mint(address _to) internal { uint256 _tokenId; _tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); harnessesMinted++; emit HarnessMint(_to, _tokenId); _safeMint(_to, _tokenId); } function _baseURI() internal view override returns (string memory) { return baseURI; } function burn(uint256 tokenId) external { require(msg.sender == ownerOf(tokenId), "You do not own this harness"); _burn(tokenId); } // ADMIN function setBaseURI(string memory _baseURItoSet) external onlyOwner { baseURI = _baseURItoSet; } }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"HarnessMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHOGUN_OWNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"grantOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harnessesMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURItoSet","type":"string"}],"name":"setBaseURI","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601281526020017153686f67756e20576172204861726e65737360701b815250604051806040016040528060078152602001664861726e65737360c81b8152506200007e6000805160206200259b83398151915280620000d260201b60201c565b620000996000805160206200259b833981519152336200011d565b8151620000ae906001906020850190620001cd565b508051620000c4906002906020840190620001cd565b50506001600b5550620002b0565b600082815260208190526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b6200012982826200012d565b5050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1662000129576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620001893390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b828054620001db9062000273565b90600052602060002090601f016020900481019282620001ff57600085556200024a565b82601f106200021a57805160ff19168380011785556200024a565b828001600101855582156200024a579182015b828111156200024a5782518255916020019190600101906200022d565b50620002589291506200025c565b5090565b5b808211156200025857600081556001016200025d565b600181811c908216806200028857607f821691505b60208210811415620002aa57634e487b7160e01b600052602260045260246000fd5b50919050565b6122db80620002c06000396000f3fe608060405234801561001057600080fd5b506004361061019a5760003560e01c806349c3f8dc116100e457806395d89b411161009257806395d89b411461036e578063a217fddf14610376578063a22cb4651461037e578063b88d4fde14610391578063c87b56dd146103a4578063d547741f146103b7578063dc978059146103ca578063e985e9c5146103dd57600080fd5b806349c3f8dc146102fe5780634f6ccce71461030757806355f804b31461031a5780636352211e1461032d5780636c0360eb1461034057806370a082311461034857806391d148541461035b57600080fd5b80632f2ff15d1161014c5780632f2ff15d146102645780632f54bf6e146102775780632f745c591461028a57806336568abe1461029d57806340d097c3146102b057806342842e0e146102c357806342966c68146102d657806349ab216c146102e957600080fd5b806301ffc9a71461019f57806306fdde03146101c7578063081812fc146101dc578063095ea7b31461020757806318160ddd1461021c57806323b872dd1461022e578063248a9ca314610241575b600080fd5b6101b26101ad366004611db8565b6103f0565b60405190151581526020015b60405180910390f35b6101cf610410565b6040516101be9190611fd6565b6101ef6101ea366004611d7c565b6104a2565b6040516001600160a01b0390911681526020016101be565b61021a610215366004611d52565b61052f565b005b6009545b6040519081526020016101be565b61021a61023c366004611c5e565b610640565b61022061024f366004611d7c565b60009081526020819052604090206001015490565b61021a610272366004611d95565b610671565b6101b2610285366004611c10565b610697565b610220610298366004611d52565b6106b1565b61021a6102ab366004611d95565b610747565b61021a6102be366004611c10565b6107c5565b61021a6102d1366004611c5e565b610805565b61021a6102e4366004611d7c565b610820565b61022060008051602061228683398151915281565b610220600d5481565b610220610315366004611d7c565b610892565b61021a610328366004611df2565b610925565b6101ef61033b366004611d7c565b61096c565b6101cf6109e3565b610220610356366004611c10565b610a71565b6101b2610369366004611d95565b610af8565b6101cf610b21565b610220600081565b61021a61038c366004611d16565b610b30565b61021a61039f366004611c9a565b610b3b565b6101cf6103b2366004611d7c565b610b73565b61021a6103c5366004611d95565b610c26565b61021a6103d8366004611c10565b610c4c565b6101b26103eb366004611c2b565b610c64565b60006103fb82610c92565b8061040a575061040a82610cb7565b92915050565b60606001805461041f90612177565b80601f016020809104026020016040519081016040528092919081815260200182805461044b90612177565b80156104985780601f1061046d57610100808354040283529160200191610498565b820191906000526020600020905b81548152906001019060200180831161047b57829003601f168201915b5050505050905090565b60006104ad82610cec565b6105135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061053a8261096c565b9050806001600160a01b0316836001600160a01b031614156105a85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161050a565b336001600160a01b03821614806105c457506105c48133610c64565b6106315760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b606482015260840161050a565b61063b8383610d09565b505050565b61064a3382610d77565b6106665760405162461bcd60e51b815260040161050a90612081565b61063b838383610e41565b60008281526020819052604090206001015461068d8133610fda565b61063b838361103e565b600061040a60008051602061228683398151915283610af8565b60006106bc83610a71565b821061071e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161050a565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6001600160a01b03811633146107b75760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161050a565b6107c182826110c2565b5050565b6107dd60008051602061228683398151915233610af8565b6107f95760405162461bcd60e51b815260040161050a9061203b565b61080281611127565b50565b61063b83838360405180602001604052806000815250610b3b565b6108298161096c565b6001600160a01b0316336001600160a01b0316146108895760405162461bcd60e51b815260206004820152601b60248201527f596f7520646f206e6f74206f776e2074686973206861726e6573730000000000604482015260640161050a565b610802816111a3565b600061089d60095490565b82106109005760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161050a565b6009828154811061091357610913612223565b90600052602060002001549050919050565b61093d60008051602061228683398151915233610af8565b6109595760405162461bcd60e51b815260040161050a9061203b565b80516107c190600c906020840190611ae5565b6000818152600360205260408120546001600160a01b03168061040a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161050a565b600c80546109f090612177565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1c90612177565b8015610a695780601f10610a3e57610100808354040283529160200191610a69565b820191906000526020600020905b815481529060010190602001808311610a4c57829003601f168201915b505050505081565b60006001600160a01b038216610adc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161050a565b506001600160a01b031660009081526004602052604090205490565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60606002805461041f90612177565b6107c1338383611238565b610b453383610d77565b610b615760405162461bcd60e51b815260040161050a90612081565b610b6d84848484611303565b50505050565b6060610b7e82610cec565b610bca5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604482015260640161050a565b6000600c8054610bd990612177565b905011610bf5576040518060200160405280600081525061040a565b600c610c0083611336565b604051602001610c11929190611e83565b60405160208183030381529060405292915050565b600082815260208190526040902060010154610c428133610fda565b61063b83836110c2565b61080260008051602061228683398151915282610671565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60006001600160e01b0319821663780e9d6360e01b148061040a575061040a82611434565b60006001600160e01b03198216637965db0b60e01b148061040a57506301ffc9a760e01b6001600160e01b031983161461040a565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d3e8261096c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610d8282610cec565b610de35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161050a565b6000610dee8361096c565b9050806001600160a01b0316846001600160a01b03161480610e295750836001600160a01b0316610e1e846104a2565b6001600160a01b0316145b80610e395750610e398185610c64565b949350505050565b826001600160a01b0316610e548261096c565b6001600160a01b031614610ebc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161050a565b6001600160a01b038216610f1e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161050a565b610f29838383611473565b610f34600082610d09565b6001600160a01b0383166000908152600460205260408120805460019290610f5d90849061211d565b90915550506001600160a01b0382166000908152600460205260408120805460019290610f8b9084906120d2565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03868116918217909255915184939187169160008051602061226683398151915291a4505050565b610fe48282610af8565b6107c157610ffc816001600160a01b0316601461152b565b61100783602061152b565b604051602001611018929190611f2a565b60408051601f198184030181529082905262461bcd60e51b825261050a91600401611fd6565b6110488282610af8565b6107c1576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905561107e3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6110cc8282610af8565b156107c1576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000611132600b5490565b9050611142600b80546001019055565b600d8054906000611152836121b2565b9091555050604080516001600160a01b0384168152602081018390527f96bae2a11194cfeeb36f08a4fa1f2d09a1abeab64227a0319289f864229f4db9910160405180910390a16107c182826116ce565b60006111ae8261096c565b90506111bc81600084611473565b6111c7600083610d09565b6001600160a01b03811660009081526004602052604081208054600192906111f090849061211d565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020612266833981519152908390a45050565b816001600160a01b0316836001600160a01b031614156112965760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b604482015260640161050a565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61130e848484610e41565b61131a848484846116e8565b610b6d5760405162461bcd60e51b815260040161050a90611fe9565b60608161135a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611384578061136e816121b2565b915061137d9050600a836120ea565b915061135e565b60008167ffffffffffffffff81111561139f5761139f612239565b6040519080825280601f01601f1916602001820160405280156113c9576020820181803683370190505b5090505b8415610e39576113de60018361211d565b91506113eb600a866121cd565b6113f69060306120d2565b60f81b81838151811061140b5761140b612223565b60200101906001600160f81b031916908160001a90535061142d600a866120ea565b94506113cd565b60006001600160e01b031982166380ac58cd60e01b14806103fb57506001600160e01b03198216635b5e139f60e01b148061040a575061040a82610cb7565b6001600160a01b0383166114ce576114c981600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6114f1565b816001600160a01b0316836001600160a01b0316146114f1576114f183826117f5565b6001600160a01b0382166115085761063b81611892565b826001600160a01b0316826001600160a01b03161461063b5761063b8282611941565b6060600061153a8360026120fe565b6115459060026120d2565b67ffffffffffffffff81111561155d5761155d612239565b6040519080825280601f01601f191660200182016040528015611587576020820181803683370190505b509050600360fc1b816000815181106115a2576115a2612223565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106115d1576115d1612223565b60200101906001600160f81b031916908160001a90535060006115f58460026120fe565b6116009060016120d2565b90505b6001811115611678576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061163457611634612223565b1a60f81b82828151811061164a5761164a612223565b60200101906001600160f81b031916908160001a90535060049490941c9361167181612160565b9050611603565b5083156116c75760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161050a565b9392505050565b6107c1828260405180602001604052806000815250611985565b60006001600160a01b0384163b156117ea57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061172c903390899088908890600401611f99565b602060405180830381600087803b15801561174657600080fd5b505af1925050508015611776575060408051601f3d908101601f1916820190925261177391810190611dd5565b60015b6117d0573d8080156117a4576040519150601f19603f3d011682016040523d82523d6000602084013e6117a9565b606091505b5080516117c85760405162461bcd60e51b815260040161050a90611fe9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e39565b506001949350505050565b6000600161180284610a71565b61180c919061211d565b60008381526008602052604090205490915080821461185f576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906118a49060019061211d565b6000838152600a6020526040812054600980549394509092849081106118cc576118cc612223565b9060005260206000200154905080600983815481106118ed576118ed612223565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806119255761192561220d565b6001900381819060005260206000200160009055905550505050565b600061194c83610a71565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b61198f83836119b8565b61199c60008484846116e8565b61063b5760405162461bcd60e51b815260040161050a90611fe9565b6001600160a01b038216611a0e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161050a565b611a1781610cec565b15611a645760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161050a565b611a7060008383611473565b6001600160a01b0382166000908152600460205260408120805460019290611a999084906120d2565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020612266833981519152908290a45050565b828054611af190612177565b90600052602060002090601f016020900481019282611b135760008555611b59565b82601f10611b2c57805160ff1916838001178555611b59565b82800160010185558215611b59579182015b82811115611b59578251825591602001919060010190611b3e565b50611b65929150611b69565b5090565b5b80821115611b655760008155600101611b6a565b600067ffffffffffffffff80841115611b9957611b99612239565b604051601f8501601f19908116603f01168101908282118183101715611bc157611bc1612239565b81604052809350858152868686011115611bda57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c0b57600080fd5b919050565b600060208284031215611c2257600080fd5b6116c782611bf4565b60008060408385031215611c3e57600080fd5b611c4783611bf4565b9150611c5560208401611bf4565b90509250929050565b600080600060608486031215611c7357600080fd5b611c7c84611bf4565b9250611c8a60208501611bf4565b9150604084013590509250925092565b60008060008060808587031215611cb057600080fd5b611cb985611bf4565b9350611cc760208601611bf4565b925060408501359150606085013567ffffffffffffffff811115611cea57600080fd5b8501601f81018713611cfb57600080fd5b611d0a87823560208401611b7e565b91505092959194509250565b60008060408385031215611d2957600080fd5b611d3283611bf4565b915060208301358015158114611d4757600080fd5b809150509250929050565b60008060408385031215611d6557600080fd5b611d6e83611bf4565b946020939093013593505050565b600060208284031215611d8e57600080fd5b5035919050565b60008060408385031215611da857600080fd5b82359150611c5560208401611bf4565b600060208284031215611dca57600080fd5b81356116c78161224f565b600060208284031215611de757600080fd5b81516116c78161224f565b600060208284031215611e0457600080fd5b813567ffffffffffffffff811115611e1b57600080fd5b8201601f81018413611e2c57600080fd5b610e3984823560208401611b7e565b60008151808452611e53816020860160208601612134565b601f01601f19169290920160200192915050565b60008151611e79818560208601612134565b9290920192915050565b600080845481600182811c915080831680611e9f57607f831692505b6020808410821415611ebf57634e487b7160e01b86526022600452602486fd5b818015611ed35760018114611ee457611f11565b60ff19861689528489019650611f11565b60008b81526020902060005b86811015611f095781548b820152908501908301611ef0565b505084890196505b505050505050611f218185611e67565b95945050505050565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260008351611f5c816017850160208801612134565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611f8d816028840160208801612134565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fcc90830184611e3b565b9695505050505050565b6020815260006116c76020830184611e3b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4d696e746572436f6e74726f6c3a206e6f7420612053484f47554e5f4f574e45604082015265525f524f4c4560d01b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120e5576120e56121e1565b500190565b6000826120f9576120f96121f7565b500490565b6000816000190483118215151615612118576121186121e1565b500290565b60008282101561212f5761212f6121e1565b500390565b60005b8381101561214f578181015183820152602001612137565b83811115610b6d5750506000910152565b60008161216f5761216f6121e1565b506000190190565b600181811c9082168061218b57607f821691505b602082108114156121ac57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121c6576121c66121e1565b5060010190565b6000826121dc576121dc6121f7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461080257600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3eff786c657c1afc7b60c0316a9881b42c6c8b080b437e91b362ae43d19e14911b5a264697066735822122043ba734cbcbbb81c0d6a7c575a220cd0663ace800287e95a3893829c2d3414fe64736f6c63430008070033f786c657c1afc7b60c0316a9881b42c6c8b080b437e91b362ae43d19e14911b5
Deployed ByteCode Sourcemap
59136:1800:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59539:237;;;;;;:::i;:::-;;:::i;:::-;;;8054:14:1;;8047:22;8029:41;;8017:2;8002:18;59539:237:0;;;;;;;;22314:100;;;:::i;:::-;;;;;;;:::i;23873:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7073:32:1;;;7055:51;;7043:2;7028:18;23873:221:0;6909:203:1;23396:411:0;;;;;;:::i;:::-;;:::i;:::-;;36545:113;36633:10;:17;36545:113;;;8227:25:1;;;8215:2;8200:18;36545:113:0;8081:177:1;24623:339:0;;;;;;:::i;:::-;;:::i;54762:123::-;;;;;;:::i;:::-;54828:7;54855:12;;;;;;;;;;:22;;;;54762:123;55147:147;;;;;;:::i;:::-;;:::i;58926:120::-;;;;;;:::i;:::-;;:::i;36213:256::-;;;;;;:::i;:::-;;:::i;56195:218::-;;;;;;:::i;:::-;;:::i;59784:75::-;;;;;;:::i;:::-;;:::i;25033:185::-;;;;;;:::i;:::-;;:::i;60647:154::-;;;;;;:::i;:::-;;:::i;58438:74::-;;-1:-1:-1;;;;;;;;;;;58438:74:0;;59340:30;;;;;;36735:233;;;;;;:::i;:::-;;:::i;60823:110::-;;;;;;:::i;:::-;;:::i;22008:239::-;;;;;;:::i;:::-;;:::i;59312:21::-;;;:::i;21738:208::-;;;;;;:::i;:::-;;:::i;53647:139::-;;;;;;:::i;:::-;;:::i;22483:104::-;;;:::i;52738:49::-;;52783:4;52738:49;;24166:155;;;;;;:::i;:::-;;:::i;25289:328::-;;;;;;:::i;:::-;;:::i;59867:392::-;;;;;;:::i;:::-;;:::i;55539:149::-;;;;;;:::i;:::-;;:::i;58818:100::-;;;;;;:::i;:::-;;:::i;24392:164::-;;;;;;:::i;:::-;;:::i;59539:237::-;59649:4;59673:47;59708:11;59673:34;:47::i;:::-;:95;;;;59724:44;59756:11;59724:31;:44::i;:::-;59666:102;59539:237;-1:-1:-1;;59539:237:0:o;22314:100::-;22368:13;22401:5;22394:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22314:100;:::o;23873:221::-;23949:7;23977:16;23985:7;23977;:16::i;:::-;23969:73;;;;-1:-1:-1;;;23969:73:0;;13784:2:1;23969:73:0;;;13766:21:1;13823:2;13803:18;;;13796:30;13862:34;13842:18;;;13835:62;-1:-1:-1;;;13913:18:1;;;13906:42;13965:19;;23969:73:0;;;;;;;;;-1:-1:-1;24062:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24062:24:0;;23873:221::o;23396:411::-;23477:13;23493:23;23508:7;23493:14;:23::i;:::-;23477:39;;23541:5;-1:-1:-1;;;;;23535:11:0;:2;-1:-1:-1;;;;;23535:11:0;;;23527:57;;;;-1:-1:-1;;;23527:57:0;;14963:2:1;23527:57:0;;;14945:21:1;15002:2;14982:18;;;14975:30;15041:34;15021:18;;;15014:62;-1:-1:-1;;;15092:18:1;;;15085:31;15133:19;;23527:57:0;14761:397:1;23527:57:0;16670:10;-1:-1:-1;;;;;23619:21:0;;;;:62;;-1:-1:-1;23644:37:0;23661:5;16670:10;24392:164;:::i;23644:37::-;23597:168;;;;-1:-1:-1;;;23597:168:0;;11770:2:1;23597:168:0;;;11752:21:1;11809:2;11789:18;;;11782:30;11848:34;11828:18;;;11821:62;-1:-1:-1;;;11899:18:1;;;11892:54;11963:19;;23597:168:0;11568:420:1;23597:168:0;23778:21;23787:2;23791:7;23778:8;:21::i;:::-;23466:341;23396:411;;:::o;24623:339::-;24818:41;16670:10;24851:7;24818:18;:41::i;:::-;24810:103;;;;-1:-1:-1;;;24810:103:0;;;;;;;:::i;:::-;24926:28;24936:4;24942:2;24946:7;24926:9;:28::i;55147:147::-;54828:7;54855:12;;;;;;;;;;:22;;;53229:30;53240:4;16670:10;53229;:30::i;:::-;55261:25:::1;55272:4;55278:7;55261:10;:25::i;58926:120::-:0;58980:4;59004:34;-1:-1:-1;;;;;;;;;;;59031:6:0;59004:7;:34::i;36213:256::-;36310:7;36346:23;36363:5;36346:16;:23::i;:::-;36338:5;:31;36330:87;;;;-1:-1:-1;;;36330:87:0;;9410:2:1;36330:87:0;;;9392:21:1;9449:2;9429:18;;;9422:30;9488:34;9468:18;;;9461:62;-1:-1:-1;;;9539:18:1;;;9532:41;9590:19;;36330:87:0;9208:407:1;36330:87:0;-1:-1:-1;;;;;;36435:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36213:256::o;56195:218::-;-1:-1:-1;;;;;56291:23:0;;16670:10;56291:23;56283:83;;;;-1:-1:-1;;;56283:83:0;;16196:2:1;56283:83:0;;;16178:21:1;16235:2;16215:18;;;16208:30;16274:34;16254:18;;;16247:62;-1:-1:-1;;;16325:18:1;;;16318:45;16380:19;;56283:83:0;15994:411:1;56283:83:0;56379:26;56391:4;56397:7;56379:11;:26::i;:::-;56195:218;;:::o;59784:75::-;58561:40;-1:-1:-1;;;;;;;;;;;16670:10:0;53647:139;:::i;58561:40::-;58553:91;;;;-1:-1:-1;;;58553:91:0;;;;;;;:::i;:::-;59842:9:::1;59848:2;59842:5;:9::i;:::-;59784:75:::0;:::o;25033:185::-;25171:39;25188:4;25194:2;25198:7;25171:39;;;;;;;;;;;;:16;:39::i;60647:154::-;60720:16;60728:7;60720;:16::i;:::-;-1:-1:-1;;;;;60706:30:0;:10;-1:-1:-1;;;;;60706:30:0;;60698:70;;;;-1:-1:-1;;;60698:70:0;;14197:2:1;60698:70:0;;;14179:21:1;14236:2;14216:18;;;14209:30;14275:29;14255:18;;;14248:57;14322:18;;60698:70:0;13995:351:1;60698:70:0;60779:14;60785:7;60779:5;:14::i;36735:233::-;36810:7;36846:30;36633:10;:17;;36545:113;36846:30;36838:5;:38;36830:95;;;;-1:-1:-1;;;36830:95:0;;15783:2:1;36830:95:0;;;15765:21:1;15822:2;15802:18;;;15795:30;15861:34;15841:18;;;15834:62;-1:-1:-1;;;15912:18:1;;;15905:42;15964:19;;36830:95:0;15581:408:1;36830:95:0;36943:10;36954:5;36943:17;;;;;;;;:::i;:::-;;;;;;;;;36936:24;;36735:233;;;:::o;60823:110::-;58561:40;-1:-1:-1;;;;;;;;;;;16670:10:0;53647:139;:::i;58561:40::-;58553:91;;;;-1:-1:-1;;;58553:91:0;;;;;;;:::i;:::-;60902:23;;::::1;::::0;:7:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;22008:239::-:0;22080:7;22116:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22116:16:0;22151:19;22143:73;;;;-1:-1:-1;;;22143:73:0;;12606:2:1;22143:73:0;;;12588:21:1;12645:2;12625:18;;;12618:30;12684:34;12664:18;;;12657:62;-1:-1:-1;;;12735:18:1;;;12728:39;12784:19;;22143:73:0;12404:405:1;59312:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21738:208::-;21810:7;-1:-1:-1;;;;;21838:19:0;;21830:74;;;;-1:-1:-1;;;21830:74:0;;12195:2:1;21830:74:0;;;12177:21:1;12234:2;12214:18;;;12207:30;12273:34;12253:18;;;12246:62;-1:-1:-1;;;12324:18:1;;;12317:40;12374:19;;21830:74:0;11993:406:1;21830:74:0;-1:-1:-1;;;;;;21922:16:0;;;;;:9;:16;;;;;;;21738:208::o;53647:139::-;53725:4;53749:12;;;;;;;;;;;-1:-1:-1;;;;;53749:29:0;;;;;;;;;;;;;;;53647:139::o;22483:104::-;22539:13;22572:7;22565:14;;;;;:::i;24166:155::-;24261:52;16670:10;24294:8;24304;24261:18;:52::i;25289:328::-;25464:41;16670:10;25497:7;25464:18;:41::i;:::-;25456:103;;;;-1:-1:-1;;;25456:103:0;;;;;;;:::i;:::-;25570:39;25584:4;25590:2;25594:7;25603:5;25570:13;:39::i;:::-;25289:328;;;;:::o;59867:392::-;59933:13;60018:17;60026:8;60018:7;:17::i;:::-;60010:61;;;;-1:-1:-1;;;60010:61:0;;9050:2:1;60010:61:0;;;9032:21:1;9089:2;9069:18;;;9062:30;9128:33;9108:18;;;9101:61;9179:18;;60010:61:0;8848:355:1;60010:61:0;60113:1;60095:7;60089:21;;;;;:::i;:::-;;;:25;:162;;;;;;;;;;;;;;;;;60172:7;60198:19;:8;:17;:19::i;:::-;60137:95;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60082:169;59867:392;-1:-1:-1;;59867:392:0:o;55539:149::-;54828:7;54855:12;;;;;;;;;;:22;;;53229:30;53240:4;16670:10;53229;:30::i;:::-;55654:26:::1;55666:4;55672:7;55654:11;:26::i;58818:100::-:0;58874:36;-1:-1:-1;;;;;;;;;;;58903:6:0;58874:9;:36::i;24392:164::-;-1:-1:-1;;;;;24513:25:0;;;24489:4;24513:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24392:164::o;35905:224::-;36007:4;-1:-1:-1;;;;;;36031:50:0;;-1:-1:-1;;;36031:50:0;;:90;;;36085:36;36109:11;36085:23;:36::i;53351:204::-;53436:4;-1:-1:-1;;;;;;53460:47:0;;-1:-1:-1;;;53460:47:0;;:87;;-1:-1:-1;;;;;;;;;;19916:40:0;;;53511:36;19807:157;27127:127;27192:4;27216:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27216:16:0;:30;;;27127:127::o;31109:174::-;31184:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31184:29:0;-1:-1:-1;;;;;31184:29:0;;;;;;;;:24;;31238:23;31184:24;31238:14;:23::i;:::-;-1:-1:-1;;;;;31229:46:0;;;;;;;;;;;31109:174;;:::o;27421:348::-;27514:4;27539:16;27547:7;27539;:16::i;:::-;27531:73;;;;-1:-1:-1;;;27531:73:0;;11357:2:1;27531:73:0;;;11339:21:1;11396:2;11376:18;;;11369:30;11435:34;11415:18;;;11408:62;-1:-1:-1;;;11486:18:1;;;11479:42;11538:19;;27531:73:0;11155:408:1;27531:73:0;27615:13;27631:23;27646:7;27631:14;:23::i;:::-;27615:39;;27684:5;-1:-1:-1;;;;;27673:16:0;:7;-1:-1:-1;;;;;27673:16:0;;:51;;;;27717:7;-1:-1:-1;;;;;27693:31:0;:20;27705:7;27693:11;:20::i;:::-;-1:-1:-1;;;;;27693:31:0;;27673:51;:87;;;;27728:32;27745:5;27752:7;27728:16;:32::i;:::-;27665:96;27421:348;-1:-1:-1;;;;27421:348:0:o;30413:578::-;30572:4;-1:-1:-1;;;;;30545:31:0;:23;30560:7;30545:14;:23::i;:::-;-1:-1:-1;;;;;30545:31:0;;30537:85;;;;-1:-1:-1;;;30537:85:0;;14553:2:1;30537:85:0;;;14535:21:1;14592:2;14572:18;;;14565:30;14631:34;14611:18;;;14604:62;-1:-1:-1;;;14682:18:1;;;14675:39;14731:19;;30537:85:0;14351:405:1;30537:85:0;-1:-1:-1;;;;;30641:16:0;;30633:65;;;;-1:-1:-1;;;30633:65:0;;10598:2:1;30633:65:0;;;10580:21:1;10637:2;10617:18;;;10610:30;10676:34;10656:18;;;10649:62;-1:-1:-1;;;10727:18:1;;;10720:34;10771:19;;30633:65:0;10396:400:1;30633:65:0;30711:39;30732:4;30738:2;30742:7;30711:20;:39::i;:::-;30815:29;30832:1;30836:7;30815:8;:29::i;:::-;-1:-1:-1;;;;;30857:15:0;;;;;;:9;:15;;;;;:20;;30876:1;;30857:15;:20;;30876:1;;30857:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30888:13:0;;;;;;:9;:13;;;;;:18;;30905:1;;30888:13;:18;;30905:1;;30888:18;:::i;:::-;;;;-1:-1:-1;;30917:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30917:21:0;-1:-1:-1;;;;;30917:21:0;;;;;;;;;30956:27;;30917:16;;30956:27;;;;-1:-1:-1;;;;;;;;;;;30956:27:0;;30413:578;;;:::o;54076:497::-;54157:22;54165:4;54171:7;54157;:22::i;:::-;54152:414;;54345:41;54373:7;-1:-1:-1;;;;;54345:41:0;54383:2;54345:19;:41::i;:::-;54459:38;54487:4;54494:2;54459:19;:38::i;:::-;54250:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;54250:270:0;;;;;;;;;;-1:-1:-1;;;54196:358:0;;;;;;;:::i;57696:238::-;57780:22;57788:4;57794:7;57780;:22::i;:::-;57775:152;;57819:6;:12;;;;;;;;;;;-1:-1:-1;;;;;57819:29:0;;;;;;;;;:36;;-1:-1:-1;;57819:36:0;57851:4;57819:36;;;57902:12;16670:10;;16590:98;57902:12;-1:-1:-1;;;;;57875:40:0;57893:7;-1:-1:-1;;;;;57875:40:0;57887:4;57875:40;;;;;;;;;;57696:238;;:::o;58066:239::-;58150:22;58158:4;58164:7;58150;:22::i;:::-;58146:152;;;58221:5;58189:12;;;;;;;;;;;-1:-1:-1;;;;;58189:29:0;;;;;;;;;;:37;;-1:-1:-1;;58189:37:0;;;58246:40;16670:10;;58189:12;;58246:40;;58221:5;58246:40;58066:239;;:::o;60267:262::-;60315:16;60353:25;:15;47219:14;;47127:114;60353:25;60342:36;;60389:27;:15;47338:19;;47356:1;47338:19;;;47249:127;60389:27;60427:15;:17;;;:15;:17;;;:::i;:::-;;;;-1:-1:-1;;60460:26:0;;;-1:-1:-1;;;;;7802:32:1;;7784:51;;7866:2;7851:18;;7844:34;;;60460:26:0;;7757:18:1;60460:26:0;;;;;;;60497:24;60507:3;60512:8;60497:9;:24::i;29716:360::-;29776:13;29792:23;29807:7;29792:14;:23::i;:::-;29776:39;;29828:48;29849:5;29864:1;29868:7;29828:20;:48::i;:::-;29917:29;29934:1;29938:7;29917:8;:29::i;:::-;-1:-1:-1;;;;;29959:16:0;;;;;;:9;:16;;;;;:21;;29979:1;;29959:16;:21;;29979:1;;29959:21;:::i;:::-;;;;-1:-1:-1;;29998:16:0;;;;:7;:16;;;;;;29991:23;;-1:-1:-1;;;;;;29991:23:0;;;30032:36;30006:7;;29998:16;-1:-1:-1;;;;;30032:36:0;;;-1:-1:-1;;;;;;;;;;;30032:36:0;29998:16;;30032:36;29765:311;29716:360;:::o;31425:315::-;31580:8;-1:-1:-1;;;;;31571:17:0;:5;-1:-1:-1;;;;;31571:17:0;;;31563:55;;;;-1:-1:-1;;;31563:55:0;;11003:2:1;31563:55:0;;;10985:21:1;11042:2;11022:18;;;11015:30;-1:-1:-1;;;11061:18:1;;;11054:55;11126:18;;31563:55:0;10801:349:1;31563:55:0;-1:-1:-1;;;;;31629:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31629:46:0;;;;;;;;;;31691:41;;8029::1;;;31691::0;;8002:18:1;31691:41:0;;;;;;;31425:315;;;:::o;26499:::-;26656:28;26666:4;26672:2;26676:7;26656:9;:28::i;:::-;26703:48;26726:4;26732:2;26736:7;26745:5;26703:22;:48::i;:::-;26695:111;;;;-1:-1:-1;;;26695:111:0;;;;;;;:::i;17177:723::-;17233:13;17454:10;17450:53;;-1:-1:-1;;17481:10:0;;;;;;;;;;;;-1:-1:-1;;;17481:10:0;;;;;17177:723::o;17450:53::-;17528:5;17513:12;17569:78;17576:9;;17569:78;;17602:8;;;;:::i;:::-;;-1:-1:-1;17625:10:0;;-1:-1:-1;17633:2:0;17625:10;;:::i;:::-;;;17569:78;;;17657:19;17689:6;17679:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17679:17:0;;17657:39;;17707:154;17714:10;;17707:154;;17741:11;17751:1;17741:11;;:::i;:::-;;-1:-1:-1;17810:10:0;17818:2;17810:5;:10;:::i;:::-;17797:24;;:2;:24;:::i;:::-;17784:39;;17767:6;17774;17767:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17767:56:0;;;;;;;;-1:-1:-1;17838:11:0;17847:2;17838:11;;:::i;:::-;;;17707:154;;21369:305;21471:4;-1:-1:-1;;;;;;21508:40:0;;-1:-1:-1;;;21508:40:0;;:105;;-1:-1:-1;;;;;;;21565:48:0;;-1:-1:-1;;;21565:48:0;21508:158;;;;21630:36;21654:11;21630:23;:36::i;37581:589::-;-1:-1:-1;;;;;37787:18:0;;37783:187;;37822:40;37854:7;38997:10;:17;;38970:24;;;;:15;:24;;;;;:44;;;39025:24;;;;;;;;;;;;38893:164;37822:40;37783:187;;;37892:2;-1:-1:-1;;;;;37884:10:0;:4;-1:-1:-1;;;;;37884:10:0;;37880:90;;37911:47;37944:4;37950:7;37911:32;:47::i;:::-;-1:-1:-1;;;;;37984:16:0;;37980:183;;38017:45;38054:7;38017:36;:45::i;37980:183::-;38090:4;-1:-1:-1;;;;;38084:10:0;:2;-1:-1:-1;;;;;38084:10:0;;38080:83;;38111:40;38139:2;38143:7;38111:27;:40::i;18478:451::-;18553:13;18579:19;18611:10;18615:6;18611:1;:10;:::i;:::-;:14;;18624:1;18611:14;:::i;:::-;18601:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18601:25:0;;18579:47;;-1:-1:-1;;;18637:6:0;18644:1;18637:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;18637:15:0;;;;;;;;;-1:-1:-1;;;18663:6:0;18670:1;18663:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;18663:15:0;;;;;;;;-1:-1:-1;18694:9:0;18706:10;18710:6;18706:1;:10;:::i;:::-;:14;;18719:1;18706:14;:::i;:::-;18694:26;;18689:135;18726:1;18722;:5;18689:135;;;-1:-1:-1;;;18774:5:0;18782:3;18774:11;18761:25;;;;;;;:::i;:::-;;;;18749:6;18756:1;18749:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;18749:37:0;;;;;;;;-1:-1:-1;18811:1:0;18801:11;;;;;18729:3;;;:::i;:::-;;;18689:135;;;-1:-1:-1;18842:10:0;;18834:55;;;;-1:-1:-1;;;18834:55:0;;8689:2:1;18834:55:0;;;8671:21:1;;;8708:18;;;8701:30;8767:34;8747:18;;;8740:62;8819:18;;18834:55:0;8487:356:1;18834:55:0;18914:6;18478:451;-1:-1:-1;;;18478:451:0:o;28111:110::-;28187:26;28197:2;28201:7;28187:26;;;;;;;;;;;;:9;:26::i;32305:799::-;32460:4;-1:-1:-1;;;;;32481:13:0;;8895:20;8943:8;32477:620;;32517:72;;-1:-1:-1;;;32517:72:0;;-1:-1:-1;;;;;32517:36:0;;;;;:72;;16670:10;;32568:4;;32574:7;;32583:5;;32517:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32517:72:0;;;;;;;;-1:-1:-1;;32517:72:0;;;;;;;;;;;;:::i;:::-;;;32513:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32759:13:0;;32755:272;;32802:60;;-1:-1:-1;;;32802:60:0;;;;;;;:::i;32755:272::-;32977:6;32971:13;32962:6;32958:2;32954:15;32947:38;32513:529;-1:-1:-1;;;;;;32640:51:0;-1:-1:-1;;;32640:51:0;;-1:-1:-1;32633:58:0;;32477:620;-1:-1:-1;33081:4:0;32305:799;;;;;;:::o;39684:988::-;39950:22;40000:1;39975:22;39992:4;39975:16;:22::i;:::-;:26;;;;:::i;:::-;40012:18;40033:26;;;:17;:26;;;;;;39950:51;;-1:-1:-1;40166:28:0;;;40162:328;;-1:-1:-1;;;;;40233:18:0;;40211:19;40233:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40284:30;;;;;;:44;;;40401:30;;:17;:30;;;;;:43;;;40162:328;-1:-1:-1;40586:26:0;;;;:17;:26;;;;;;;;40579:33;;;-1:-1:-1;;;;;40630:18:0;;;;;:12;:18;;;;;:34;;;;;;;40623:41;39684:988::o;40967:1079::-;41245:10;:17;41220:22;;41245:21;;41265:1;;41245:21;:::i;:::-;41277:18;41298:24;;;:15;:24;;;;;;41671:10;:26;;41220:46;;-1:-1:-1;41298:24:0;;41220:46;;41671:26;;;;;;:::i;:::-;;;;;;;;;41649:48;;41735:11;41710:10;41721;41710:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41815:28;;;:15;:28;;;;;;;:41;;;41987:24;;;;;41980:31;42022:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41038:1008;;;40967:1079;:::o;38471:221::-;38556:14;38573:20;38590:2;38573:16;:20::i;:::-;-1:-1:-1;;;;;38604:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38649:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38471:221:0:o;28448:321::-;28578:18;28584:2;28588:7;28578:5;:18::i;:::-;28629:54;28660:1;28664:2;28668:7;28677:5;28629:22;:54::i;:::-;28607:154;;;;-1:-1:-1;;;28607:154:0;;;;;;;:::i;29105:382::-;-1:-1:-1;;;;;29185:16:0;;29177:61;;;;-1:-1:-1;;;29177:61:0;;13423:2:1;29177:61:0;;;13405:21:1;;;13442:18;;;13435:30;13501:34;13481:18;;;13474:62;13553:18;;29177:61:0;13221:356:1;29177:61:0;29258:16;29266:7;29258;:16::i;:::-;29257:17;29249:58;;;;-1:-1:-1;;;29249:58:0;;10241:2:1;29249:58:0;;;10223:21:1;10280:2;10260:18;;;10253:30;10319;10299:18;;;10292:58;10367:18;;29249:58:0;10039:352:1;29249:58:0;29320:45;29349:1;29353:2;29357:7;29320:20;:45::i;:::-;-1:-1:-1;;;;;29378:13:0;;;;;;:9;:13;;;;;:18;;29395:1;;29378:13;:18;;29395:1;;29378:18;:::i;:::-;;;;-1:-1:-1;;29407:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29407:21:0;-1:-1:-1;;;;;29407:21:0;;;;;;;;29446:33;;29407:16;;;-1:-1:-1;;;;;;;;;;;29446:33:0;29407:16;;29446:33;29105:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:180::-;2958:6;3011:2;2999:9;2990:7;2986:23;2982:32;2979:52;;;3027:1;3024;3017:12;2979:52;-1:-1:-1;3050:23:1;;2899:180;-1:-1:-1;2899:180:1:o;3084:254::-;3152:6;3160;3213:2;3201:9;3192:7;3188:23;3184:32;3181:52;;;3229:1;3226;3219:12;3181:52;3265:9;3252:23;3242:33;;3294:38;3328:2;3317:9;3313:18;3294:38;:::i;3343:245::-;3401:6;3454:2;3442:9;3433:7;3429:23;3425:32;3422:52;;;3470:1;3467;3460:12;3422:52;3509:9;3496:23;3528:30;3552:5;3528:30;:::i;3593:249::-;3662:6;3715:2;3703:9;3694:7;3690:23;3686:32;3683:52;;;3731:1;3728;3721:12;3683:52;3763:9;3757:16;3782:30;3806:5;3782:30;:::i;3847:450::-;3916:6;3969:2;3957:9;3948:7;3944:23;3940:32;3937:52;;;3985:1;3982;3975:12;3937:52;4025:9;4012:23;4058:18;4050:6;4047:30;4044:50;;;4090:1;4087;4080:12;4044:50;4113:22;;4166:4;4158:13;;4154:27;-1:-1:-1;4144:55:1;;4195:1;4192;4185:12;4144:55;4218:73;4283:7;4278:2;4265:16;4260:2;4256;4252:11;4218:73;:::i;4487:257::-;4528:3;4566:5;4560:12;4593:6;4588:3;4581:19;4609:63;4665:6;4658:4;4653:3;4649:14;4642:4;4635:5;4631:16;4609:63;:::i;:::-;4726:2;4705:15;-1:-1:-1;;4701:29:1;4692:39;;;;4733:4;4688:50;;4487:257;-1:-1:-1;;4487:257:1:o;4749:185::-;4791:3;4829:5;4823:12;4844:52;4889:6;4884:3;4877:4;4870:5;4866:16;4844:52;:::i;:::-;4912:16;;;;;4749:185;-1:-1:-1;;4749:185:1:o;4939:1174::-;5115:3;5144:1;5177:6;5171:13;5207:3;5229:1;5257:9;5253:2;5249:18;5239:28;;5317:2;5306:9;5302:18;5339;5329:61;;5383:4;5375:6;5371:17;5361:27;;5329:61;5409:2;5457;5449:6;5446:14;5426:18;5423:38;5420:165;;;-1:-1:-1;;;5484:33:1;;5540:4;5537:1;5530:15;5570:4;5491:3;5558:17;5420:165;5601:18;5628:104;;;;5746:1;5741:320;;;;5594:467;;5628:104;-1:-1:-1;;5661:24:1;;5649:37;;5706:16;;;;-1:-1:-1;5628:104:1;;5741:320;16665:1;16658:14;;;16702:4;16689:18;;5836:1;5850:165;5864:6;5861:1;5858:13;5850:165;;;5942:14;;5929:11;;;5922:35;5985:16;;;;5879:10;;5850:165;;;5854:3;;6044:6;6039:3;6035:16;6028:23;;5594:467;;;;;;;6077:30;6103:3;6095:6;6077:30;:::i;:::-;6070:37;4939:1174;-1:-1:-1;;;;;4939:1174:1:o;6118:786::-;-1:-1:-1;;;6524:3:1;6517:38;6499:3;6584:6;6578:13;6600:62;6655:6;6650:2;6645:3;6641:12;6634:4;6626:6;6622:17;6600:62;:::i;:::-;-1:-1:-1;;;6721:2:1;6681:16;;;6713:11;;;6706:40;6771:13;;6793:63;6771:13;6842:2;6834:11;;6827:4;6815:17;;6793:63;:::i;:::-;6876:17;6895:2;6872:26;;6118:786;-1:-1:-1;;;;6118:786:1:o;7117:488::-;-1:-1:-1;;;;;7386:15:1;;;7368:34;;7438:15;;7433:2;7418:18;;7411:43;7485:2;7470:18;;7463:34;;;7533:3;7528:2;7513:18;;7506:31;;;7311:4;;7554:45;;7579:19;;7571:6;7554:45;:::i;:::-;7546:53;7117:488;-1:-1:-1;;;;;;7117:488:1:o;8263:219::-;8412:2;8401:9;8394:21;8375:4;8432:44;8472:2;8461:9;8457:18;8449:6;8432:44;:::i;9620:414::-;9822:2;9804:21;;;9861:2;9841:18;;;9834:30;9900:34;9895:2;9880:18;;9873:62;-1:-1:-1;;;9966:2:1;9951:18;;9944:48;10024:3;10009:19;;9620:414::o;12814:402::-;13016:2;12998:21;;;13055:2;13035:18;;;13028:30;13094:34;13089:2;13074:18;;13067:62;-1:-1:-1;;;13160:2:1;13145:18;;13138:36;13206:3;13191:19;;12814:402::o;15163:413::-;15365:2;15347:21;;;15404:2;15384:18;;;15377:30;15443:34;15438:2;15423:18;;15416:62;-1:-1:-1;;;15509:2:1;15494:18;;15487:47;15566:3;15551:19;;15163:413::o;16718:128::-;16758:3;16789:1;16785:6;16782:1;16779:13;16776:39;;;16795:18;;:::i;:::-;-1:-1:-1;16831:9:1;;16718:128::o;16851:120::-;16891:1;16917;16907:35;;16922:18;;:::i;:::-;-1:-1:-1;16956:9:1;;16851:120::o;16976:168::-;17016:7;17082:1;17078;17074:6;17070:14;17067:1;17064:21;17059:1;17052:9;17045:17;17041:45;17038:71;;;17089:18;;:::i;:::-;-1:-1:-1;17129:9:1;;16976:168::o;17149:125::-;17189:4;17217:1;17214;17211:8;17208:34;;;17222:18;;:::i;:::-;-1:-1:-1;17259:9:1;;17149:125::o;17279:258::-;17351:1;17361:113;17375:6;17372:1;17369:13;17361:113;;;17451:11;;;17445:18;17432:11;;;17425:39;17397:2;17390:10;17361:113;;;17492:6;17489:1;17486:13;17483:48;;;-1:-1:-1;;17527:1:1;17509:16;;17502:27;17279:258::o;17542:136::-;17581:3;17609:5;17599:39;;17618:18;;:::i;:::-;-1:-1:-1;;;17654:18:1;;17542:136::o;17683:380::-;17762:1;17758:12;;;;17805;;;17826:61;;17880:4;17872:6;17868:17;17858:27;;17826:61;17933:2;17925:6;17922:14;17902:18;17899:38;17896:161;;;17979:10;17974:3;17970:20;17967:1;17960:31;18014:4;18011:1;18004:15;18042:4;18039:1;18032:15;17896:161;;17683:380;;;:::o;18068:135::-;18107:3;-1:-1:-1;;18128:17:1;;18125:43;;;18148:18;;:::i;:::-;-1:-1:-1;18195:1:1;18184:13;;18068:135::o;18208:112::-;18240:1;18266;18256:35;;18271:18;;:::i;:::-;-1:-1:-1;18305:9:1;;18208:112::o;18325:127::-;18386:10;18381:3;18377:20;18374:1;18367:31;18417:4;18414:1;18407:15;18441:4;18438:1;18431:15;18457:127;18518:10;18513:3;18509:20;18506:1;18499:31;18549:4;18546:1;18539:15;18573:4;18570:1;18563:15;18589:127;18650:10;18645:3;18641:20;18638:1;18631:31;18681:4;18678:1;18671:15;18705:4;18702:1;18695:15;18721:127;18782:10;18777:3;18773:20;18770:1;18763:31;18813:4;18810:1;18803:15;18837:4;18834:1;18827:15;18853:127;18914:10;18909:3;18905:20;18902:1;18895:31;18945:4;18942:1;18935:15;18969:4;18966:1;18959:15;18985:131;-1:-1:-1;;;;;;19059:32:1;;19049:43;;19039:71;;19106:1;19103;19096:12
Metadata Hash
43ba734cbcbbb81c0d6a7c575a220cd0663ace800287e95a3893829c2d3414fe
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.