Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
18 ASH
Holders
18
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 ASHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ARCStellarsHonoraryMembers
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; contract ARCStellarsHonoraryMembers is ERC721, ERC2981, Ownable { using Counters for Counters.Counter; string public baseURI = ""; Counters.Counter private tokenId; uint96 private constant _royaltyFeesInBips = 880; // 8.8% string public contractURI; constructor() ERC721("ARC Stellars Honorary Members", "ASH") { setRoyaltyInfo(owner()); } function setBaseURI(string memory uri) external onlyOwner { baseURI = uri; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function totalSupply() public view returns (uint256) { return tokenId.current(); } function airdropHonorary(address to) public onlyOwner { tokenId.increment(); _safeMint(to, tokenId.current()); } function setContractURI(string calldata URI) public onlyOwner { contractURI = URI; } function setRoyaltyInfo(address _receiver) public onlyOwner { super._setDefaultRoyalty(_receiver, _royaltyFeesInBips); } /** * ERC2981 * The following functions are overrides */ function _beforeTokenTransfer(address from, address to, uint256 _tokenId) internal override(ERC721) { super._beforeTokenTransfer(from, to, _tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC2981) returns (bool) { return interfaceId == 0x2a55205a || super.supportsInterface(interfaceId); } }
// 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT // 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); } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `tokenId` must be already minted. * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @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 overridden 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"address","name":"to","type":"address"}],"name":"airdropHonorary","outputs":[],"stateMutability":"nonpayable","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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060200160405280600081525060099081620000249190620006d5565b503480156200003257600080fd5b506040518060400160405280601d81526020017f415243205374656c6c61727320486f6e6f72617279204d656d626572730000008152506040518060400160405280600381526020017f41534800000000000000000000000000000000000000000000000000000000008152508160009081620000b09190620006d5565b508060019081620000c29190620006d5565b505050620000e5620000d96200010b60201b60201c565b6200011360201b60201c565b62000105620000f9620001d960201b60201c565b6200020360201b60201c565b62000949565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620002136200010b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000239620001d960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000289906200081d565b60405180910390fd5b620002ab81610370620002ae60201b620012291760201c565b50565b620002be6200045160201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156200031f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031690620008b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000391576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003889062000927565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600660008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004dd57607f821691505b602082108103620004f357620004f262000495565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200055d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200051e565b6200056986836200051e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005b6620005b0620005aa8462000581565b6200058b565b62000581565b9050919050565b6000819050919050565b620005d28362000595565b620005ea620005e182620005bd565b8484546200052b565b825550505050565b600090565b62000601620005f2565b6200060e818484620005c7565b505050565b5b8181101562000636576200062a600082620005f7565b60018101905062000614565b5050565b601f82111562000685576200064f81620004f9565b6200065a846200050e565b810160208510156200066a578190505b6200068262000679856200050e565b83018262000613565b50505b505050565b600082821c905092915050565b6000620006aa600019846008026200068a565b1980831691505092915050565b6000620006c5838362000697565b9150826002028217905092915050565b620006e0826200045b565b67ffffffffffffffff811115620006fc57620006fb62000466565b5b620007088254620004c4565b620007158282856200063a565b600060209050601f8311600181146200074d576000841562000738578287015190505b620007448582620006b7565b865550620007b4565b601f1984166200075d86620004f9565b60005b82811015620007875784890151825560018201915060208501945060208101905062000760565b86831015620007a75784890151620007a3601f89168262000697565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000805602083620007bc565b91506200081282620007cd565b602082019050919050565b600060208201905081810360008301526200083881620007f6565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006200089d602a83620007bc565b9150620008aa826200083f565b604082019050919050565b60006020820190508181036000830152620008d0816200088e565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006200090f601983620007bc565b91506200091c82620008d7565b602082019050919050565b60006020820190508181036000830152620009428162000900565b9050919050565b613b2480620009596000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063ac8810801161007c578063ac881080146103b2578063b88d4fde146103ce578063c87b56dd146103ea578063e8a3d4851461041a578063e985e9c514610438578063f2fde38b1461046857610158565b806370a0823114610304578063715018a6146103345780638da5cb5b1461033e578063938e3d7b1461035c57806395d89b4114610378578063a22cb4651461039657610158565b806323b872dd1161011557806323b872dd146102315780632a55205a1461024d57806342842e0e1461027e57806355f804b31461029a5780636352211e146102b65780636c0360eb146102e657610158565b806301ffc9a71461015d57806306fdde031461018d57806307eb382c146101ab578063081812fc146101c7578063095ea7b3146101f757806318160ddd14610213575b600080fd5b61017760048036038101906101729190612325565b610484565b604051610184919061236d565b60405180910390f35b6101956104c6565b6040516101a29190612418565b60405180910390f35b6101c560048036038101906101c09190612498565b610558565b005b6101e160048036038101906101dc91906124fb565b6105f4565b6040516101ee9190612537565b60405180910390f35b610211600480360381019061020c9190612552565b610679565b005b61021b610790565b60405161022891906125a1565b60405180910390f35b61024b600480360381019061024691906125bc565b6107a1565b005b6102676004803603810190610262919061260f565b610801565b60405161027592919061264f565b60405180910390f35b610298600480360381019061029391906125bc565b6109eb565b005b6102b460048036038101906102af91906127ad565b610a0b565b005b6102d060048036038101906102cb91906124fb565b610a9a565b6040516102dd9190612537565b60405180910390f35b6102ee610b4b565b6040516102fb9190612418565b60405180910390f35b61031e60048036038101906103199190612498565b610bd9565b60405161032b91906125a1565b60405180910390f35b61033c610c90565b005b610346610d18565b6040516103539190612537565b60405180910390f35b61037660048036038101906103719190612856565b610d42565b005b610380610dd4565b60405161038d9190612418565b60405180910390f35b6103b060048036038101906103ab91906128cf565b610e66565b005b6103cc60048036038101906103c79190612498565b610e7c565b005b6103e860048036038101906103e391906129b0565b610f07565b005b61040460048036038101906103ff91906124fb565b610f69565b6040516104119190612418565b60405180910390f35b610422611010565b60405161042f9190612418565b60405180910390f35b610452600480360381019061044d9190612a33565b61109e565b60405161045f919061236d565b60405180910390f35b610482600480360381019061047d9190612498565b611132565b005b6000632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104bf57506104be826113be565b5b9050919050565b6060600080546104d590612aa2565b80601f016020809104026020016040519081016040528092919081815260200182805461050190612aa2565b801561054e5780601f106105235761010080835404028352916020019161054e565b820191906000526020600020905b81548152906001019060200180831161053157829003601f168201915b5050505050905090565b610560611438565b73ffffffffffffffffffffffffffffffffffffffff1661057e610d18565b73ffffffffffffffffffffffffffffffffffffffff16146105d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105cb90612b1f565b60405180910390fd5b6105de600a611440565b6105f1816105ec600a611456565b611464565b50565b60006105ff82611482565b61063e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063590612bb1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061068482610a9a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106eb90612c43565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610713611438565b73ffffffffffffffffffffffffffffffffffffffff16148061074257506107418161073c611438565b61109e565b5b610781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077890612cd5565b60405180910390fd5b61078b83836114ee565b505050565b600061079c600a611456565b905090565b6107b26107ac611438565b826115a7565b6107f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e890612d67565b60405180910390fd5b6107fc838383611685565b505050565b6000806000600760008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036109965760066040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006109a06118eb565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866109cc9190612db6565b6109d69190612e3f565b90508160000151819350935050509250929050565b610a0683838360405180602001604052806000815250610f07565b505050565b610a13611438565b73ffffffffffffffffffffffffffffffffffffffff16610a31610d18565b73ffffffffffffffffffffffffffffffffffffffff1614610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90612b1f565b60405180910390fd5b8060099081610a96919061301c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990613160565b60405180910390fd5b80915050919050565b60098054610b5890612aa2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8490612aa2565b8015610bd15780601f10610ba657610100808354040283529160200191610bd1565b820191906000526020600020905b815481529060010190602001808311610bb457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c40906131f2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c98611438565b73ffffffffffffffffffffffffffffffffffffffff16610cb6610d18565b73ffffffffffffffffffffffffffffffffffffffff1614610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390612b1f565b60405180910390fd5b610d1660006118f5565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d4a611438565b73ffffffffffffffffffffffffffffffffffffffff16610d68610d18565b73ffffffffffffffffffffffffffffffffffffffff1614610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db590612b1f565b60405180910390fd5b8181600b9182610dcf92919061321d565b505050565b606060018054610de390612aa2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0f90612aa2565b8015610e5c5780601f10610e3157610100808354040283529160200191610e5c565b820191906000526020600020905b815481529060010190602001808311610e3f57829003601f168201915b5050505050905090565b610e78610e71611438565b83836119bb565b5050565b610e84611438565b73ffffffffffffffffffffffffffffffffffffffff16610ea2610d18565b73ffffffffffffffffffffffffffffffffffffffff1614610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90612b1f565b60405180910390fd5b610f0481610370611229565b50565b610f18610f12611438565b836115a7565b610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90612d67565b60405180910390fd5b610f6384848484611b27565b50505050565b6060610f7482611482565b610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa9061335f565b60405180910390fd5b6000610fbd611b83565b90506000815111610fdd5760405180602001604052806000815250611008565b80610fe784611c15565b604051602001610ff89291906133bb565b6040516020818303038152906040525b915050919050565b600b805461101d90612aa2565b80601f016020809104026020016040519081016040528092919081815260200182805461104990612aa2565b80156110965780601f1061106b57610100808354040283529160200191611096565b820191906000526020600020905b81548152906001019060200180831161107957829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61113a611438565b73ffffffffffffffffffffffffffffffffffffffff16611158610d18565b73ffffffffffffffffffffffffffffffffffffffff16146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590612b1f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490613451565b60405180910390fd5b611226816118f5565b50565b6112316118eb565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561128f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611286906134e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f59061354f565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600660008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611431575061143082611d75565b5b9050919050565b600033905090565b6001816000016000828254019250508190555050565b600081600001549050919050565b61147e828260405180602001604052806000815250611e57565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661156183610a9a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115b282611482565b6115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e8906135e1565b60405180910390fd5b60006115fc83610a9a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061163e575061163d818561109e565b5b8061167c57508373ffffffffffffffffffffffffffffffffffffffff16611664846105f4565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166116a582610a9a565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290613673565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190613705565b60405180910390fd5b611775838383611eb2565b6117806000826114ee565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117d09190613725565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118279190613759565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118e6838383611ec2565b505050565b6000612710905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a20906137d9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b1a919061236d565b60405180910390a3505050565b611b32848484611685565b611b3e84848484611ec7565b611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b749061386b565b60405180910390fd5b50505050565b606060098054611b9290612aa2565b80601f0160208091040260200160405190810160405280929190818152602001828054611bbe90612aa2565b8015611c0b5780601f10611be057610100808354040283529160200191611c0b565b820191906000526020600020905b815481529060010190602001808311611bee57829003601f168201915b5050505050905090565b606060008203611c5c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d70565b600082905060005b60008214611c8e578080611c779061388b565b915050600a82611c879190612e3f565b9150611c64565b60008167ffffffffffffffff811115611caa57611ca9612682565b5b6040519080825280601f01601f191660200182016040528015611cdc5781602001600182028036833780820191505090505b5090505b60008514611d6957600182611cf59190613725565b9150600a85611d0491906138d3565b6030611d109190613759565b60f81b818381518110611d2657611d25613904565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d629190612e3f565b9450611ce0565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e4057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e505750611e4f8261204e565b5b9050919050565b611e6183836120b8565b611e6e6000848484611ec7565b611ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea49061386b565b60405180910390fd5b505050565b611ebd838383612291565b505050565b505050565b6000611ee88473ffffffffffffffffffffffffffffffffffffffff16612296565b15612041578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f11611438565b8786866040518563ffffffff1660e01b8152600401611f339493929190613988565b6020604051808303816000875af1925050508015611f6f57506040513d601f19601f82011682018060405250810190611f6c91906139e9565b60015b611ff1573d8060008114611f9f576040519150601f19603f3d011682016040523d82523d6000602084013e611fa4565b606091505b506000815103611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe09061386b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612046565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90613a62565b60405180910390fd5b61213081611482565b15612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790613ace565b60405180910390fd5b61217c60008383611eb2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121cc9190613759565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461228d60008383611ec2565b5050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612302816122cd565b811461230d57600080fd5b50565b60008135905061231f816122f9565b92915050565b60006020828403121561233b5761233a6122c3565b5b600061234984828501612310565b91505092915050565b60008115159050919050565b61236781612352565b82525050565b6000602082019050612382600083018461235e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123c25780820151818401526020810190506123a7565b60008484015250505050565b6000601f19601f8301169050919050565b60006123ea82612388565b6123f48185612393565b93506124048185602086016123a4565b61240d816123ce565b840191505092915050565b6000602082019050818103600083015261243281846123df565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124658261243a565b9050919050565b6124758161245a565b811461248057600080fd5b50565b6000813590506124928161246c565b92915050565b6000602082840312156124ae576124ad6122c3565b5b60006124bc84828501612483565b91505092915050565b6000819050919050565b6124d8816124c5565b81146124e357600080fd5b50565b6000813590506124f5816124cf565b92915050565b600060208284031215612511576125106122c3565b5b600061251f848285016124e6565b91505092915050565b6125318161245a565b82525050565b600060208201905061254c6000830184612528565b92915050565b60008060408385031215612569576125686122c3565b5b600061257785828601612483565b9250506020612588858286016124e6565b9150509250929050565b61259b816124c5565b82525050565b60006020820190506125b66000830184612592565b92915050565b6000806000606084860312156125d5576125d46122c3565b5b60006125e386828701612483565b93505060206125f486828701612483565b9250506040612605868287016124e6565b9150509250925092565b60008060408385031215612626576126256122c3565b5b6000612634858286016124e6565b9250506020612645858286016124e6565b9150509250929050565b60006040820190506126646000830185612528565b6126716020830184612592565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126ba826123ce565b810181811067ffffffffffffffff821117156126d9576126d8612682565b5b80604052505050565b60006126ec6122b9565b90506126f882826126b1565b919050565b600067ffffffffffffffff82111561271857612717612682565b5b612721826123ce565b9050602081019050919050565b82818337600083830152505050565b600061275061274b846126fd565b6126e2565b90508281526020810184848401111561276c5761276b61267d565b5b61277784828561272e565b509392505050565b600082601f83011261279457612793612678565b5b81356127a484826020860161273d565b91505092915050565b6000602082840312156127c3576127c26122c3565b5b600082013567ffffffffffffffff8111156127e1576127e06122c8565b5b6127ed8482850161277f565b91505092915050565b600080fd5b600080fd5b60008083601f84011261281657612815612678565b5b8235905067ffffffffffffffff811115612833576128326127f6565b5b60208301915083600182028301111561284f5761284e6127fb565b5b9250929050565b6000806020838503121561286d5761286c6122c3565b5b600083013567ffffffffffffffff81111561288b5761288a6122c8565b5b61289785828601612800565b92509250509250929050565b6128ac81612352565b81146128b757600080fd5b50565b6000813590506128c9816128a3565b92915050565b600080604083850312156128e6576128e56122c3565b5b60006128f485828601612483565b9250506020612905858286016128ba565b9150509250929050565b600067ffffffffffffffff82111561292a57612929612682565b5b612933826123ce565b9050602081019050919050565b600061295361294e8461290f565b6126e2565b90508281526020810184848401111561296f5761296e61267d565b5b61297a84828561272e565b509392505050565b600082601f83011261299757612996612678565b5b81356129a7848260208601612940565b91505092915050565b600080600080608085870312156129ca576129c96122c3565b5b60006129d887828801612483565b94505060206129e987828801612483565b93505060406129fa878288016124e6565b925050606085013567ffffffffffffffff811115612a1b57612a1a6122c8565b5b612a2787828801612982565b91505092959194509250565b60008060408385031215612a4a57612a496122c3565b5b6000612a5885828601612483565b9250506020612a6985828601612483565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612aba57607f821691505b602082108103612acd57612acc612a73565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b09602083612393565b9150612b1482612ad3565b602082019050919050565b60006020820190508181036000830152612b3881612afc565b9050919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612b9b602c83612393565b9150612ba682612b3f565b604082019050919050565b60006020820190508181036000830152612bca81612b8e565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c2d602183612393565b9150612c3882612bd1565b604082019050919050565b60006020820190508181036000830152612c5c81612c20565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612cbf603883612393565b9150612cca82612c63565b604082019050919050565b60006020820190508181036000830152612cee81612cb2565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612d51603183612393565b9150612d5c82612cf5565b604082019050919050565b60006020820190508181036000830152612d8081612d44565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dc1826124c5565b9150612dcc836124c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e0557612e04612d87565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e4a826124c5565b9150612e55836124c5565b925082612e6557612e64612e10565b5b828204905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ed27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e95565b612edc8683612e95565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612f19612f14612f0f846124c5565b612ef4565b6124c5565b9050919050565b6000819050919050565b612f3383612efe565b612f47612f3f82612f20565b848454612ea2565b825550505050565b600090565b612f5c612f4f565b612f67818484612f2a565b505050565b5b81811015612f8b57612f80600082612f54565b600181019050612f6d565b5050565b601f821115612fd057612fa181612e70565b612faa84612e85565b81016020851015612fb9578190505b612fcd612fc585612e85565b830182612f6c565b50505b505050565b600082821c905092915050565b6000612ff360001984600802612fd5565b1980831691505092915050565b600061300c8383612fe2565b9150826002028217905092915050565b61302582612388565b67ffffffffffffffff81111561303e5761303d612682565b5b6130488254612aa2565b613053828285612f8f565b600060209050601f8311600181146130865760008415613074578287015190505b61307e8582613000565b8655506130e6565b601f19841661309486612e70565b60005b828110156130bc57848901518255600182019150602085019450602081019050613097565b868310156130d957848901516130d5601f891682612fe2565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061314a602983612393565b9150613155826130ee565b604082019050919050565b600060208201905081810360008301526131798161313d565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006131dc602a83612393565b91506131e782613180565b604082019050919050565b6000602082019050818103600083015261320b816131cf565b9050919050565b600082905092915050565b6132278383613212565b67ffffffffffffffff8111156132405761323f612682565b5b61324a8254612aa2565b613255828285612f8f565b6000601f8311600181146132845760008415613272578287013590505b61327c8582613000565b8655506132e4565b601f19841661329286612e70565b60005b828110156132ba57848901358255600182019150602085019450602081019050613295565b868310156132d757848901356132d3601f891682612fe2565b8355505b6001600288020188555050505b50505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613349602f83612393565b9150613354826132ed565b604082019050919050565b600060208201905081810360008301526133788161333c565b9050919050565b600081905092915050565b600061339582612388565b61339f818561337f565b93506133af8185602086016123a4565b80840191505092915050565b60006133c7828561338a565b91506133d3828461338a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061343b602683612393565b9150613446826133df565b604082019050919050565b6000602082019050818103600083015261346a8161342e565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006134cd602a83612393565b91506134d882613471565b604082019050919050565b600060208201905081810360008301526134fc816134c0565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000613539601983612393565b915061354482613503565b602082019050919050565b600060208201905081810360008301526135688161352c565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006135cb602c83612393565b91506135d68261356f565b604082019050919050565b600060208201905081810360008301526135fa816135be565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061365d602583612393565b915061366882613601565b604082019050919050565b6000602082019050818103600083015261368c81613650565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136ef602483612393565b91506136fa82613693565b604082019050919050565b6000602082019050818103600083015261371e816136e2565b9050919050565b6000613730826124c5565b915061373b836124c5565b925082820390508181111561375357613752612d87565b5b92915050565b6000613764826124c5565b915061376f836124c5565b925082820190508082111561378757613786612d87565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006137c3601983612393565b91506137ce8261378d565b602082019050919050565b600060208201905081810360008301526137f2816137b6565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613855603283612393565b9150613860826137f9565b604082019050919050565b6000602082019050818103600083015261388481613848565b9050919050565b6000613896826124c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138c8576138c7612d87565b5b600182019050919050565b60006138de826124c5565b91506138e9836124c5565b9250826138f9576138f8612e10565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061395a82613933565b613964818561393e565b93506139748185602086016123a4565b61397d816123ce565b840191505092915050565b600060808201905061399d6000830187612528565b6139aa6020830186612528565b6139b76040830185612592565b81810360608301526139c9818461394f565b905095945050505050565b6000815190506139e3816122f9565b92915050565b6000602082840312156139ff576139fe6122c3565b5b6000613a0d848285016139d4565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613a4c602083612393565b9150613a5782613a16565b602082019050919050565b60006020820190508181036000830152613a7b81613a3f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613ab8601c83612393565b9150613ac382613a82565b602082019050919050565b60006020820190508181036000830152613ae781613aab565b905091905056fea2646970667358221220ae7f20d51f88bd816e5d425e59c2cd16256cbfb38dcb08caa56c306844d8a66c64736f6c63430008100033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063ac8810801161007c578063ac881080146103b2578063b88d4fde146103ce578063c87b56dd146103ea578063e8a3d4851461041a578063e985e9c514610438578063f2fde38b1461046857610158565b806370a0823114610304578063715018a6146103345780638da5cb5b1461033e578063938e3d7b1461035c57806395d89b4114610378578063a22cb4651461039657610158565b806323b872dd1161011557806323b872dd146102315780632a55205a1461024d57806342842e0e1461027e57806355f804b31461029a5780636352211e146102b65780636c0360eb146102e657610158565b806301ffc9a71461015d57806306fdde031461018d57806307eb382c146101ab578063081812fc146101c7578063095ea7b3146101f757806318160ddd14610213575b600080fd5b61017760048036038101906101729190612325565b610484565b604051610184919061236d565b60405180910390f35b6101956104c6565b6040516101a29190612418565b60405180910390f35b6101c560048036038101906101c09190612498565b610558565b005b6101e160048036038101906101dc91906124fb565b6105f4565b6040516101ee9190612537565b60405180910390f35b610211600480360381019061020c9190612552565b610679565b005b61021b610790565b60405161022891906125a1565b60405180910390f35b61024b600480360381019061024691906125bc565b6107a1565b005b6102676004803603810190610262919061260f565b610801565b60405161027592919061264f565b60405180910390f35b610298600480360381019061029391906125bc565b6109eb565b005b6102b460048036038101906102af91906127ad565b610a0b565b005b6102d060048036038101906102cb91906124fb565b610a9a565b6040516102dd9190612537565b60405180910390f35b6102ee610b4b565b6040516102fb9190612418565b60405180910390f35b61031e60048036038101906103199190612498565b610bd9565b60405161032b91906125a1565b60405180910390f35b61033c610c90565b005b610346610d18565b6040516103539190612537565b60405180910390f35b61037660048036038101906103719190612856565b610d42565b005b610380610dd4565b60405161038d9190612418565b60405180910390f35b6103b060048036038101906103ab91906128cf565b610e66565b005b6103cc60048036038101906103c79190612498565b610e7c565b005b6103e860048036038101906103e391906129b0565b610f07565b005b61040460048036038101906103ff91906124fb565b610f69565b6040516104119190612418565b60405180910390f35b610422611010565b60405161042f9190612418565b60405180910390f35b610452600480360381019061044d9190612a33565b61109e565b60405161045f919061236d565b60405180910390f35b610482600480360381019061047d9190612498565b611132565b005b6000632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104bf57506104be826113be565b5b9050919050565b6060600080546104d590612aa2565b80601f016020809104026020016040519081016040528092919081815260200182805461050190612aa2565b801561054e5780601f106105235761010080835404028352916020019161054e565b820191906000526020600020905b81548152906001019060200180831161053157829003601f168201915b5050505050905090565b610560611438565b73ffffffffffffffffffffffffffffffffffffffff1661057e610d18565b73ffffffffffffffffffffffffffffffffffffffff16146105d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105cb90612b1f565b60405180910390fd5b6105de600a611440565b6105f1816105ec600a611456565b611464565b50565b60006105ff82611482565b61063e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063590612bb1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061068482610a9a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106eb90612c43565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610713611438565b73ffffffffffffffffffffffffffffffffffffffff16148061074257506107418161073c611438565b61109e565b5b610781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077890612cd5565b60405180910390fd5b61078b83836114ee565b505050565b600061079c600a611456565b905090565b6107b26107ac611438565b826115a7565b6107f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e890612d67565b60405180910390fd5b6107fc838383611685565b505050565b6000806000600760008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036109965760066040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006109a06118eb565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866109cc9190612db6565b6109d69190612e3f565b90508160000151819350935050509250929050565b610a0683838360405180602001604052806000815250610f07565b505050565b610a13611438565b73ffffffffffffffffffffffffffffffffffffffff16610a31610d18565b73ffffffffffffffffffffffffffffffffffffffff1614610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90612b1f565b60405180910390fd5b8060099081610a96919061301c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990613160565b60405180910390fd5b80915050919050565b60098054610b5890612aa2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8490612aa2565b8015610bd15780601f10610ba657610100808354040283529160200191610bd1565b820191906000526020600020905b815481529060010190602001808311610bb457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c40906131f2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c98611438565b73ffffffffffffffffffffffffffffffffffffffff16610cb6610d18565b73ffffffffffffffffffffffffffffffffffffffff1614610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390612b1f565b60405180910390fd5b610d1660006118f5565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d4a611438565b73ffffffffffffffffffffffffffffffffffffffff16610d68610d18565b73ffffffffffffffffffffffffffffffffffffffff1614610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db590612b1f565b60405180910390fd5b8181600b9182610dcf92919061321d565b505050565b606060018054610de390612aa2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0f90612aa2565b8015610e5c5780601f10610e3157610100808354040283529160200191610e5c565b820191906000526020600020905b815481529060010190602001808311610e3f57829003601f168201915b5050505050905090565b610e78610e71611438565b83836119bb565b5050565b610e84611438565b73ffffffffffffffffffffffffffffffffffffffff16610ea2610d18565b73ffffffffffffffffffffffffffffffffffffffff1614610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90612b1f565b60405180910390fd5b610f0481610370611229565b50565b610f18610f12611438565b836115a7565b610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90612d67565b60405180910390fd5b610f6384848484611b27565b50505050565b6060610f7482611482565b610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa9061335f565b60405180910390fd5b6000610fbd611b83565b90506000815111610fdd5760405180602001604052806000815250611008565b80610fe784611c15565b604051602001610ff89291906133bb565b6040516020818303038152906040525b915050919050565b600b805461101d90612aa2565b80601f016020809104026020016040519081016040528092919081815260200182805461104990612aa2565b80156110965780601f1061106b57610100808354040283529160200191611096565b820191906000526020600020905b81548152906001019060200180831161107957829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61113a611438565b73ffffffffffffffffffffffffffffffffffffffff16611158610d18565b73ffffffffffffffffffffffffffffffffffffffff16146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590612b1f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490613451565b60405180910390fd5b611226816118f5565b50565b6112316118eb565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561128f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611286906134e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f59061354f565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600660008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611431575061143082611d75565b5b9050919050565b600033905090565b6001816000016000828254019250508190555050565b600081600001549050919050565b61147e828260405180602001604052806000815250611e57565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661156183610a9a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115b282611482565b6115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e8906135e1565b60405180910390fd5b60006115fc83610a9a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061163e575061163d818561109e565b5b8061167c57508373ffffffffffffffffffffffffffffffffffffffff16611664846105f4565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166116a582610a9a565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290613673565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190613705565b60405180910390fd5b611775838383611eb2565b6117806000826114ee565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117d09190613725565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118279190613759565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118e6838383611ec2565b505050565b6000612710905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a20906137d9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b1a919061236d565b60405180910390a3505050565b611b32848484611685565b611b3e84848484611ec7565b611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b749061386b565b60405180910390fd5b50505050565b606060098054611b9290612aa2565b80601f0160208091040260200160405190810160405280929190818152602001828054611bbe90612aa2565b8015611c0b5780601f10611be057610100808354040283529160200191611c0b565b820191906000526020600020905b815481529060010190602001808311611bee57829003601f168201915b5050505050905090565b606060008203611c5c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d70565b600082905060005b60008214611c8e578080611c779061388b565b915050600a82611c879190612e3f565b9150611c64565b60008167ffffffffffffffff811115611caa57611ca9612682565b5b6040519080825280601f01601f191660200182016040528015611cdc5781602001600182028036833780820191505090505b5090505b60008514611d6957600182611cf59190613725565b9150600a85611d0491906138d3565b6030611d109190613759565b60f81b818381518110611d2657611d25613904565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d629190612e3f565b9450611ce0565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e4057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e505750611e4f8261204e565b5b9050919050565b611e6183836120b8565b611e6e6000848484611ec7565b611ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea49061386b565b60405180910390fd5b505050565b611ebd838383612291565b505050565b505050565b6000611ee88473ffffffffffffffffffffffffffffffffffffffff16612296565b15612041578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f11611438565b8786866040518563ffffffff1660e01b8152600401611f339493929190613988565b6020604051808303816000875af1925050508015611f6f57506040513d601f19601f82011682018060405250810190611f6c91906139e9565b60015b611ff1573d8060008114611f9f576040519150601f19603f3d011682016040523d82523d6000602084013e611fa4565b606091505b506000815103611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe09061386b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612046565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90613a62565b60405180910390fd5b61213081611482565b15612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790613ace565b60405180910390fd5b61217c60008383611eb2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121cc9190613759565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461228d60008383611ec2565b5050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612302816122cd565b811461230d57600080fd5b50565b60008135905061231f816122f9565b92915050565b60006020828403121561233b5761233a6122c3565b5b600061234984828501612310565b91505092915050565b60008115159050919050565b61236781612352565b82525050565b6000602082019050612382600083018461235e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123c25780820151818401526020810190506123a7565b60008484015250505050565b6000601f19601f8301169050919050565b60006123ea82612388565b6123f48185612393565b93506124048185602086016123a4565b61240d816123ce565b840191505092915050565b6000602082019050818103600083015261243281846123df565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124658261243a565b9050919050565b6124758161245a565b811461248057600080fd5b50565b6000813590506124928161246c565b92915050565b6000602082840312156124ae576124ad6122c3565b5b60006124bc84828501612483565b91505092915050565b6000819050919050565b6124d8816124c5565b81146124e357600080fd5b50565b6000813590506124f5816124cf565b92915050565b600060208284031215612511576125106122c3565b5b600061251f848285016124e6565b91505092915050565b6125318161245a565b82525050565b600060208201905061254c6000830184612528565b92915050565b60008060408385031215612569576125686122c3565b5b600061257785828601612483565b9250506020612588858286016124e6565b9150509250929050565b61259b816124c5565b82525050565b60006020820190506125b66000830184612592565b92915050565b6000806000606084860312156125d5576125d46122c3565b5b60006125e386828701612483565b93505060206125f486828701612483565b9250506040612605868287016124e6565b9150509250925092565b60008060408385031215612626576126256122c3565b5b6000612634858286016124e6565b9250506020612645858286016124e6565b9150509250929050565b60006040820190506126646000830185612528565b6126716020830184612592565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126ba826123ce565b810181811067ffffffffffffffff821117156126d9576126d8612682565b5b80604052505050565b60006126ec6122b9565b90506126f882826126b1565b919050565b600067ffffffffffffffff82111561271857612717612682565b5b612721826123ce565b9050602081019050919050565b82818337600083830152505050565b600061275061274b846126fd565b6126e2565b90508281526020810184848401111561276c5761276b61267d565b5b61277784828561272e565b509392505050565b600082601f83011261279457612793612678565b5b81356127a484826020860161273d565b91505092915050565b6000602082840312156127c3576127c26122c3565b5b600082013567ffffffffffffffff8111156127e1576127e06122c8565b5b6127ed8482850161277f565b91505092915050565b600080fd5b600080fd5b60008083601f84011261281657612815612678565b5b8235905067ffffffffffffffff811115612833576128326127f6565b5b60208301915083600182028301111561284f5761284e6127fb565b5b9250929050565b6000806020838503121561286d5761286c6122c3565b5b600083013567ffffffffffffffff81111561288b5761288a6122c8565b5b61289785828601612800565b92509250509250929050565b6128ac81612352565b81146128b757600080fd5b50565b6000813590506128c9816128a3565b92915050565b600080604083850312156128e6576128e56122c3565b5b60006128f485828601612483565b9250506020612905858286016128ba565b9150509250929050565b600067ffffffffffffffff82111561292a57612929612682565b5b612933826123ce565b9050602081019050919050565b600061295361294e8461290f565b6126e2565b90508281526020810184848401111561296f5761296e61267d565b5b61297a84828561272e565b509392505050565b600082601f83011261299757612996612678565b5b81356129a7848260208601612940565b91505092915050565b600080600080608085870312156129ca576129c96122c3565b5b60006129d887828801612483565b94505060206129e987828801612483565b93505060406129fa878288016124e6565b925050606085013567ffffffffffffffff811115612a1b57612a1a6122c8565b5b612a2787828801612982565b91505092959194509250565b60008060408385031215612a4a57612a496122c3565b5b6000612a5885828601612483565b9250506020612a6985828601612483565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612aba57607f821691505b602082108103612acd57612acc612a73565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b09602083612393565b9150612b1482612ad3565b602082019050919050565b60006020820190508181036000830152612b3881612afc565b9050919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612b9b602c83612393565b9150612ba682612b3f565b604082019050919050565b60006020820190508181036000830152612bca81612b8e565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c2d602183612393565b9150612c3882612bd1565b604082019050919050565b60006020820190508181036000830152612c5c81612c20565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612cbf603883612393565b9150612cca82612c63565b604082019050919050565b60006020820190508181036000830152612cee81612cb2565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612d51603183612393565b9150612d5c82612cf5565b604082019050919050565b60006020820190508181036000830152612d8081612d44565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dc1826124c5565b9150612dcc836124c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e0557612e04612d87565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e4a826124c5565b9150612e55836124c5565b925082612e6557612e64612e10565b5b828204905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ed27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e95565b612edc8683612e95565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612f19612f14612f0f846124c5565b612ef4565b6124c5565b9050919050565b6000819050919050565b612f3383612efe565b612f47612f3f82612f20565b848454612ea2565b825550505050565b600090565b612f5c612f4f565b612f67818484612f2a565b505050565b5b81811015612f8b57612f80600082612f54565b600181019050612f6d565b5050565b601f821115612fd057612fa181612e70565b612faa84612e85565b81016020851015612fb9578190505b612fcd612fc585612e85565b830182612f6c565b50505b505050565b600082821c905092915050565b6000612ff360001984600802612fd5565b1980831691505092915050565b600061300c8383612fe2565b9150826002028217905092915050565b61302582612388565b67ffffffffffffffff81111561303e5761303d612682565b5b6130488254612aa2565b613053828285612f8f565b600060209050601f8311600181146130865760008415613074578287015190505b61307e8582613000565b8655506130e6565b601f19841661309486612e70565b60005b828110156130bc57848901518255600182019150602085019450602081019050613097565b868310156130d957848901516130d5601f891682612fe2565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061314a602983612393565b9150613155826130ee565b604082019050919050565b600060208201905081810360008301526131798161313d565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006131dc602a83612393565b91506131e782613180565b604082019050919050565b6000602082019050818103600083015261320b816131cf565b9050919050565b600082905092915050565b6132278383613212565b67ffffffffffffffff8111156132405761323f612682565b5b61324a8254612aa2565b613255828285612f8f565b6000601f8311600181146132845760008415613272578287013590505b61327c8582613000565b8655506132e4565b601f19841661329286612e70565b60005b828110156132ba57848901358255600182019150602085019450602081019050613295565b868310156132d757848901356132d3601f891682612fe2565b8355505b6001600288020188555050505b50505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613349602f83612393565b9150613354826132ed565b604082019050919050565b600060208201905081810360008301526133788161333c565b9050919050565b600081905092915050565b600061339582612388565b61339f818561337f565b93506133af8185602086016123a4565b80840191505092915050565b60006133c7828561338a565b91506133d3828461338a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061343b602683612393565b9150613446826133df565b604082019050919050565b6000602082019050818103600083015261346a8161342e565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006134cd602a83612393565b91506134d882613471565b604082019050919050565b600060208201905081810360008301526134fc816134c0565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000613539601983612393565b915061354482613503565b602082019050919050565b600060208201905081810360008301526135688161352c565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006135cb602c83612393565b91506135d68261356f565b604082019050919050565b600060208201905081810360008301526135fa816135be565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061365d602583612393565b915061366882613601565b604082019050919050565b6000602082019050818103600083015261368c81613650565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136ef602483612393565b91506136fa82613693565b604082019050919050565b6000602082019050818103600083015261371e816136e2565b9050919050565b6000613730826124c5565b915061373b836124c5565b925082820390508181111561375357613752612d87565b5b92915050565b6000613764826124c5565b915061376f836124c5565b925082820190508082111561378757613786612d87565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006137c3601983612393565b91506137ce8261378d565b602082019050919050565b600060208201905081810360008301526137f2816137b6565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613855603283612393565b9150613860826137f9565b604082019050919050565b6000602082019050818103600083015261388481613848565b9050919050565b6000613896826124c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138c8576138c7612d87565b5b600182019050919050565b60006138de826124c5565b91506138e9836124c5565b9250826138f9576138f8612e10565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061395a82613933565b613964818561393e565b93506139748185602086016123a4565b61397d816123ce565b840191505092915050565b600060808201905061399d6000830187612528565b6139aa6020830186612528565b6139b76040830185612592565b81810360608301526139c9818461394f565b905095945050505050565b6000815190506139e3816122f9565b92915050565b6000602082840312156139ff576139fe6122c3565b5b6000613a0d848285016139d4565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613a4c602083612393565b9150613a5782613a16565b602082019050919050565b60006020820190508181036000830152613a7b81613a3f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613ab8601c83612393565b9150613ac382613a82565b602082019050919050565b60006020820190508181036000830152613ae781613aab565b905091905056fea2646970667358221220ae7f20d51f88bd816e5d425e59c2cd16256cbfb38dcb08caa56c306844d8a66c64736f6c63430008100033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.