More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 142 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 14032272 | 1156 days ago | IN | 0.004 ETH | 0.00254978 | ||||
Transfer | 14032264 | 1156 days ago | IN | 0.004 ETH | 0.00317229 | ||||
Transfer | 13916514 | 1174 days ago | IN | 0.00151963 ETH | 0.001817 | ||||
Transfer | 13892130 | 1178 days ago | IN | 0.004 ETH | 0.00155362 | ||||
Transfer | 13891594 | 1178 days ago | IN | 0.00042069 ETH | 0.00184693 | ||||
Transfer | 13839394 | 1186 days ago | IN | 0.0042069 ETH | 0.00104511 | ||||
Approve | 13819453 | 1189 days ago | IN | 0 ETH | 0.00167839 | ||||
Transfer | 13769970 | 1197 days ago | IN | 0.002 ETH | 0.00151725 | ||||
Transfer | 13761942 | 1198 days ago | IN | 0.00001 ETH | 0.00177059 | ||||
Transfer | 13760316 | 1198 days ago | IN | 0.001 ETH | 0.0019131 | ||||
Transfer | 13760277 | 1198 days ago | IN | 0.001 ETH | 0.00233797 | ||||
Transfer | 13741753 | 1201 days ago | IN | 0.004 ETH | 0.00227439 | ||||
Transfer | 13724307 | 1204 days ago | IN | 0.007 ETH | 0.00261833 | ||||
Transfer | 13604034 | 1223 days ago | IN | 0.00215008 ETH | 0.00454881 | ||||
Transfer | 13598808 | 1224 days ago | IN | 0.00313872 ETH | 0.00331041 | ||||
Transfer | 13598780 | 1224 days ago | IN | 0.00417221 ETH | 0.00348268 | ||||
Transfer | 13598740 | 1224 days ago | IN | 0.00417214 ETH | 0.00384481 | ||||
Transfer | 13598137 | 1224 days ago | IN | 0.00422431 ETH | 0.002356 | ||||
Transfer | 13598025 | 1224 days ago | IN | 0.00142537 ETH | 0.00320223 | ||||
Transfer | 13597264 | 1224 days ago | IN | 0.0107 ETH | 0.00438962 | ||||
Transfer | 13596528 | 1224 days ago | IN | 0.012 ETH | 0.00397234 | ||||
Transfer | 13596498 | 1224 days ago | IN | 0.01 ETH | 0.00385889 | ||||
Transfer | 13547590 | 1232 days ago | IN | 0.0004 ETH | 0.00317128 | ||||
Transfer | 13547586 | 1232 days ago | IN | 0.0003 ETH | 0.00298419 | ||||
Transfer | 13516328 | 1237 days ago | IN | 0.000741 ETH | 0.00262055 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
- | 12501493 | 1395 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
Gamestop
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-05-25 */ /* ##### ####### # # # ## # # ###### # # # # # # # # #### # # # # # ## ## # # # ## # # # ## # # # ## # # #### # # # ## # ##### # # # # # # # # # # # # # # # # # ###### # # # # # # # # ####### # # # # # # # # # # # # # # # # # # ## # # # ## # # # ## ##### # # # # ###### ####### # # # # # # #### # # nft.gamestop.com */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/introspection/IERC165.sol /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.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); } // File: @openzeppelin/contracts/utils/Address.sol /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/Context.sol /* * @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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/utils/Strings.sol /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/introspection/ERC165.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; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.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}. Empty by default, can be overriden * in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly 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` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } // File: contracts/Gamestop.sol contract Gamestop is ERC721 { address public owner = 0x10B16eEDe03cF73CbF44e4BFFFa3e6BFf36F1Fad; string public ipfsLocation = "ipfs://QmaLEchFaE7FWhc4MCvYMqoTdK8rV1yfjEC5Bz4jzQRbjS"; uint public launchDate = 1626261600; event Mint(address indexed owner, uint indexed _punkId); constructor() payable ERC721("Gamestop", "GME") { _mint(owner, 0); // The one and only emit Mint(owner, 0); } /** * @dev Returns a URI for a given token ID's metadata */ function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_tokenId == 0); return ipfsLocation; } modifier onlyOwner() { require(owner == msg.sender); _; } function setIPFSLocation(string memory _ipfsLocation) public onlyOwner { ipfsLocation = _ipfsLocation; } function setLaunchDate(uint _launchDate) public onlyOwner { launchDate = _launchDate; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"payable","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":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"_punkId","type":"uint256"}],"name":"Mint","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"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ipfsLocation","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"_ipfsLocation","type":"string"}],"name":"setIPFSLocation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_launchDate","type":"uint256"}],"name":"setLaunchDate","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040527310b16eede03cf73cbf44e4bfffa3e6bff36f1fad600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180606001604052806035815260200162002ad360359139600790805190602001906200008a9291906200042c565b506360eec8606008556040518060400160405280600881526020017f47616d6573746f700000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f474d4500000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001179291906200042c565b508060019080519060200190620001309291906200042c565b50505062000168600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000620001d560201b60201c565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688560405160405180910390a3620006cc565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000248576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023f906200054c565b60405180910390fd5b6200025981620003bb60201b60201c565b156200029c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000293906200052a565b60405180910390fd5b620002b0600083836200042760201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200030291906200057f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b8280546200043a90620005e6565b90600052602060002090601f0160209004810192826200045e5760008555620004aa565b82601f106200047957805160ff1916838001178555620004aa565b82800160010185558215620004aa579182015b82811115620004a95782518255916020019190600101906200048c565b5b509050620004b99190620004bd565b5090565b5b80821115620004d8576000816000905550600101620004be565b5090565b6000620004eb601c836200056e565b9150620004f8826200067a565b602082019050919050565b6000620005126020836200056e565b91506200051f82620006a3565b602082019050919050565b600060208201905081810360008301526200054581620004dc565b9050919050565b60006020820190508181036000830152620005678162000503565b9050919050565b600082825260208201905092915050565b60006200058c82620005dc565b91506200059983620005dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005d157620005d06200061c565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620005ff57607f821691505b602082108114156200061657620006156200064b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6123f780620006dc6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063b574413411610071578063b5744134146102df578063b88d4fde146102fb578063c87b56dd14610317578063e985e9c514610347578063f8eeed621461037757610116565b806370a08231146102575780638da5cb5b1461028757806395d89b41146102a5578063a22cb465146102c357610116565b806312871900116100e957806312871900146101b557806323b872dd146101d157806342842e0e146101ed578063594c92fb146102095780636352211e1461022757610116565b806301ffc9a71461011b57806306fdde031461014b578063081812fc14610169578063095ea7b314610199575b600080fd5b6101356004803603810190610130919061182b565b610395565b6040516101429190611b6e565b60405180910390f35b610153610477565b6040516101609190611b89565b60405180910390f35b610183600480360381019061017e91906118be565b610509565b6040516101909190611b07565b60405180910390f35b6101b360048036038101906101ae91906117ef565b61058e565b005b6101cf60048036038101906101ca919061187d565b6106a6565b005b6101eb60048036038101906101e691906116e9565b61071a565b005b610207600480360381019061020291906116e9565b61077a565b005b61021161079a565b60405161021e9190611b89565b60405180910390f35b610241600480360381019061023c91906118be565b610828565b60405161024e9190611b07565b60405180910390f35b610271600480360381019061026c9190611684565b6108da565b60405161027e9190611d0b565b60405180910390f35b61028f610992565b60405161029c9190611b07565b60405180910390f35b6102ad6109b8565b6040516102ba9190611b89565b60405180910390f35b6102dd60048036038101906102d891906117b3565b610a4a565b005b6102f960048036038101906102f491906118be565b610bcb565b005b61031560048036038101906103109190611738565b610c2f565b005b610331600480360381019061032c91906118be565b610c91565b60405161033e9190611b89565b60405180910390f35b610361600480360381019061035c91906116ad565b610d32565b60405161036e9190611b6e565b60405180910390f35b61037f610dc6565b60405161038c9190611d0b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061046057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610470575061046f82610dcc565b5b9050919050565b60606000805461048690611f25565b80601f01602080910402602001604051908101604052809291908181526020018280546104b290611f25565b80156104ff5780601f106104d4576101008083540402835291602001916104ff565b820191906000526020600020905b8154815290600101906020018083116104e257829003601f168201915b5050505050905090565b600061051482610e36565b610553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054a90611c8b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061059982610828565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561060a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060190611ccb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610629610ea2565b73ffffffffffffffffffffffffffffffffffffffff161480610658575061065781610652610ea2565b610d32565b5b610697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068e90611c2b565b60405180910390fd5b6106a18383610eaa565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461070057600080fd5b80600790805190602001906107169291906114a8565b5050565b61072b610725610ea2565b82610f63565b61076a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076190611ceb565b60405180910390fd5b610775838383611041565b505050565b61079583838360405180602001604052806000815250610c2f565b505050565b600780546107a790611f25565b80601f01602080910402602001604051908101604052809291908181526020018280546107d390611f25565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c890611c6b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561094b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094290611c4b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600180546109c790611f25565b80601f01602080910402602001604051908101604052809291908181526020018280546109f390611f25565b8015610a405780601f10610a1557610100808354040283529160200191610a40565b820191906000526020600020905b815481529060010190602001808311610a2357829003601f168201915b5050505050905090565b610a52610ea2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab790611beb565b60405180910390fd5b8060056000610acd610ea2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610b7a610ea2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610bbf9190611b6e565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c2557600080fd5b8060088190555050565b610c40610c3a610ea2565b83610f63565b610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690611ceb565b60405180910390fd5b610c8b8484848461129d565b50505050565b606060008214610ca057600080fd5b60078054610cad90611f25565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd990611f25565b8015610d265780601f10610cfb57610100808354040283529160200191610d26565b820191906000526020600020905b815481529060010190602001808311610d0957829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60085481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610f1d83610828565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f6e82610e36565b610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490611c0b565b60405180910390fd5b6000610fb883610828565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061102757508373ffffffffffffffffffffffffffffffffffffffff1661100f84610509565b73ffffffffffffffffffffffffffffffffffffffff16145b8061103857506110378185610d32565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661106182610828565b73ffffffffffffffffffffffffffffffffffffffff16146110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae90611cab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90611bcb565b60405180910390fd5b6111328383836112f9565b61113d600082610eaa565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461118d9190611e3b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111e49190611de5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6112a8848484611041565b6112b4848484846112fe565b6112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90611bab565b60405180910390fd5b50505050565b505050565b600061131f8473ffffffffffffffffffffffffffffffffffffffff16611495565b15611488578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611348610ea2565b8786866040518563ffffffff1660e01b815260040161136a9493929190611b22565b602060405180830381600087803b15801561138457600080fd5b505af19250505080156113b557506040513d601f19601f820116820180604052508101906113b29190611854565b60015b611438573d80600081146113e5576040519150601f19603f3d011682016040523d82523d6000602084013e6113ea565b606091505b50600081511415611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790611bab565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061148d565b600190505b949350505050565b600080823b905060008111915050919050565b8280546114b490611f25565b90600052602060002090601f0160209004810192826114d6576000855561151d565b82601f106114ef57805160ff191683800117855561151d565b8280016001018555821561151d579182015b8281111561151c578251825591602001919060010190611501565b5b50905061152a919061152e565b5090565b5b8082111561154757600081600090555060010161152f565b5090565b600061155e61155984611d4b565b611d26565b90508281526020810184848401111561157657600080fd5b611581848285611ee3565b509392505050565b600061159c61159784611d7c565b611d26565b9050828152602081018484840111156115b457600080fd5b6115bf848285611ee3565b509392505050565b6000813590506115d681612365565b92915050565b6000813590506115eb8161237c565b92915050565b60008135905061160081612393565b92915050565b60008151905061161581612393565b92915050565b600082601f83011261162c57600080fd5b813561163c84826020860161154b565b91505092915050565b600082601f83011261165657600080fd5b8135611666848260208601611589565b91505092915050565b60008135905061167e816123aa565b92915050565b60006020828403121561169657600080fd5b60006116a4848285016115c7565b91505092915050565b600080604083850312156116c057600080fd5b60006116ce858286016115c7565b92505060206116df858286016115c7565b9150509250929050565b6000806000606084860312156116fe57600080fd5b600061170c868287016115c7565b935050602061171d868287016115c7565b925050604061172e8682870161166f565b9150509250925092565b6000806000806080858703121561174e57600080fd5b600061175c878288016115c7565b945050602061176d878288016115c7565b935050604061177e8782880161166f565b925050606085013567ffffffffffffffff81111561179b57600080fd5b6117a78782880161161b565b91505092959194509250565b600080604083850312156117c657600080fd5b60006117d4858286016115c7565b92505060206117e5858286016115dc565b9150509250929050565b6000806040838503121561180257600080fd5b6000611810858286016115c7565b92505060206118218582860161166f565b9150509250929050565b60006020828403121561183d57600080fd5b600061184b848285016115f1565b91505092915050565b60006020828403121561186657600080fd5b600061187484828501611606565b91505092915050565b60006020828403121561188f57600080fd5b600082013567ffffffffffffffff8111156118a957600080fd5b6118b584828501611645565b91505092915050565b6000602082840312156118d057600080fd5b60006118de8482850161166f565b91505092915050565b6118f081611e6f565b82525050565b6118ff81611e81565b82525050565b600061191082611dad565b61191a8185611dc3565b935061192a818560208601611ef2565b61193381612015565b840191505092915050565b600061194982611db8565b6119538185611dd4565b9350611963818560208601611ef2565b61196c81612015565b840191505092915050565b6000611984603283611dd4565b915061198f82612026565b604082019050919050565b60006119a7602483611dd4565b91506119b282612075565b604082019050919050565b60006119ca601983611dd4565b91506119d5826120c4565b602082019050919050565b60006119ed602c83611dd4565b91506119f8826120ed565b604082019050919050565b6000611a10603883611dd4565b9150611a1b8261213c565b604082019050919050565b6000611a33602a83611dd4565b9150611a3e8261218b565b604082019050919050565b6000611a56602983611dd4565b9150611a61826121da565b604082019050919050565b6000611a79602c83611dd4565b9150611a8482612229565b604082019050919050565b6000611a9c602983611dd4565b9150611aa782612278565b604082019050919050565b6000611abf602183611dd4565b9150611aca826122c7565b604082019050919050565b6000611ae2603183611dd4565b9150611aed82612316565b604082019050919050565b611b0181611ed9565b82525050565b6000602082019050611b1c60008301846118e7565b92915050565b6000608082019050611b3760008301876118e7565b611b4460208301866118e7565b611b516040830185611af8565b8181036060830152611b638184611905565b905095945050505050565b6000602082019050611b8360008301846118f6565b92915050565b60006020820190508181036000830152611ba3818461193e565b905092915050565b60006020820190508181036000830152611bc481611977565b9050919050565b60006020820190508181036000830152611be48161199a565b9050919050565b60006020820190508181036000830152611c04816119bd565b9050919050565b60006020820190508181036000830152611c24816119e0565b9050919050565b60006020820190508181036000830152611c4481611a03565b9050919050565b60006020820190508181036000830152611c6481611a26565b9050919050565b60006020820190508181036000830152611c8481611a49565b9050919050565b60006020820190508181036000830152611ca481611a6c565b9050919050565b60006020820190508181036000830152611cc481611a8f565b9050919050565b60006020820190508181036000830152611ce481611ab2565b9050919050565b60006020820190508181036000830152611d0481611ad5565b9050919050565b6000602082019050611d206000830184611af8565b92915050565b6000611d30611d41565b9050611d3c8282611f57565b919050565b6000604051905090565b600067ffffffffffffffff821115611d6657611d65611fe6565b5b611d6f82612015565b9050602081019050919050565b600067ffffffffffffffff821115611d9757611d96611fe6565b5b611da082612015565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000611df082611ed9565b9150611dfb83611ed9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e3057611e2f611f88565b5b828201905092915050565b6000611e4682611ed9565b9150611e5183611ed9565b925082821015611e6457611e63611f88565b5b828203905092915050565b6000611e7a82611eb9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015611f10578082015181840152602081019050611ef5565b83811115611f1f576000848401525b50505050565b60006002820490506001821680611f3d57607f821691505b60208210811415611f5157611f50611fb7565b5b50919050565b611f6082612015565b810181811067ffffffffffffffff82111715611f7f57611f7e611fe6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61236e81611e6f565b811461237957600080fd5b50565b61238581611e81565b811461239057600080fd5b50565b61239c81611e8d565b81146123a757600080fd5b50565b6123b381611ed9565b81146123be57600080fd5b5056fea26469706673582212208ae2a21de8c862457e1644a5f811bfee27acdef94ffdad3d3ce5eb71bb7b007264736f6c63430008040033697066733a2f2f516d614c4563684661453746576863344d4376594d716f54644b3872563179666a454335427a346a7a5152626a53
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063b574413411610071578063b5744134146102df578063b88d4fde146102fb578063c87b56dd14610317578063e985e9c514610347578063f8eeed621461037757610116565b806370a08231146102575780638da5cb5b1461028757806395d89b41146102a5578063a22cb465146102c357610116565b806312871900116100e957806312871900146101b557806323b872dd146101d157806342842e0e146101ed578063594c92fb146102095780636352211e1461022757610116565b806301ffc9a71461011b57806306fdde031461014b578063081812fc14610169578063095ea7b314610199575b600080fd5b6101356004803603810190610130919061182b565b610395565b6040516101429190611b6e565b60405180910390f35b610153610477565b6040516101609190611b89565b60405180910390f35b610183600480360381019061017e91906118be565b610509565b6040516101909190611b07565b60405180910390f35b6101b360048036038101906101ae91906117ef565b61058e565b005b6101cf60048036038101906101ca919061187d565b6106a6565b005b6101eb60048036038101906101e691906116e9565b61071a565b005b610207600480360381019061020291906116e9565b61077a565b005b61021161079a565b60405161021e9190611b89565b60405180910390f35b610241600480360381019061023c91906118be565b610828565b60405161024e9190611b07565b60405180910390f35b610271600480360381019061026c9190611684565b6108da565b60405161027e9190611d0b565b60405180910390f35b61028f610992565b60405161029c9190611b07565b60405180910390f35b6102ad6109b8565b6040516102ba9190611b89565b60405180910390f35b6102dd60048036038101906102d891906117b3565b610a4a565b005b6102f960048036038101906102f491906118be565b610bcb565b005b61031560048036038101906103109190611738565b610c2f565b005b610331600480360381019061032c91906118be565b610c91565b60405161033e9190611b89565b60405180910390f35b610361600480360381019061035c91906116ad565b610d32565b60405161036e9190611b6e565b60405180910390f35b61037f610dc6565b60405161038c9190611d0b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061046057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610470575061046f82610dcc565b5b9050919050565b60606000805461048690611f25565b80601f01602080910402602001604051908101604052809291908181526020018280546104b290611f25565b80156104ff5780601f106104d4576101008083540402835291602001916104ff565b820191906000526020600020905b8154815290600101906020018083116104e257829003601f168201915b5050505050905090565b600061051482610e36565b610553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054a90611c8b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061059982610828565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561060a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060190611ccb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610629610ea2565b73ffffffffffffffffffffffffffffffffffffffff161480610658575061065781610652610ea2565b610d32565b5b610697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068e90611c2b565b60405180910390fd5b6106a18383610eaa565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461070057600080fd5b80600790805190602001906107169291906114a8565b5050565b61072b610725610ea2565b82610f63565b61076a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076190611ceb565b60405180910390fd5b610775838383611041565b505050565b61079583838360405180602001604052806000815250610c2f565b505050565b600780546107a790611f25565b80601f01602080910402602001604051908101604052809291908181526020018280546107d390611f25565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c890611c6b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561094b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094290611c4b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600180546109c790611f25565b80601f01602080910402602001604051908101604052809291908181526020018280546109f390611f25565b8015610a405780601f10610a1557610100808354040283529160200191610a40565b820191906000526020600020905b815481529060010190602001808311610a2357829003601f168201915b5050505050905090565b610a52610ea2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab790611beb565b60405180910390fd5b8060056000610acd610ea2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610b7a610ea2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610bbf9190611b6e565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c2557600080fd5b8060088190555050565b610c40610c3a610ea2565b83610f63565b610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690611ceb565b60405180910390fd5b610c8b8484848461129d565b50505050565b606060008214610ca057600080fd5b60078054610cad90611f25565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd990611f25565b8015610d265780601f10610cfb57610100808354040283529160200191610d26565b820191906000526020600020905b815481529060010190602001808311610d0957829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60085481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610f1d83610828565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f6e82610e36565b610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490611c0b565b60405180910390fd5b6000610fb883610828565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061102757508373ffffffffffffffffffffffffffffffffffffffff1661100f84610509565b73ffffffffffffffffffffffffffffffffffffffff16145b8061103857506110378185610d32565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661106182610828565b73ffffffffffffffffffffffffffffffffffffffff16146110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae90611cab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90611bcb565b60405180910390fd5b6111328383836112f9565b61113d600082610eaa565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461118d9190611e3b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111e49190611de5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6112a8848484611041565b6112b4848484846112fe565b6112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90611bab565b60405180910390fd5b50505050565b505050565b600061131f8473ffffffffffffffffffffffffffffffffffffffff16611495565b15611488578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611348610ea2565b8786866040518563ffffffff1660e01b815260040161136a9493929190611b22565b602060405180830381600087803b15801561138457600080fd5b505af19250505080156113b557506040513d601f19601f820116820180604052508101906113b29190611854565b60015b611438573d80600081146113e5576040519150601f19603f3d011682016040523d82523d6000602084013e6113ea565b606091505b50600081511415611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790611bab565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061148d565b600190505b949350505050565b600080823b905060008111915050919050565b8280546114b490611f25565b90600052602060002090601f0160209004810192826114d6576000855561151d565b82601f106114ef57805160ff191683800117855561151d565b8280016001018555821561151d579182015b8281111561151c578251825591602001919060010190611501565b5b50905061152a919061152e565b5090565b5b8082111561154757600081600090555060010161152f565b5090565b600061155e61155984611d4b565b611d26565b90508281526020810184848401111561157657600080fd5b611581848285611ee3565b509392505050565b600061159c61159784611d7c565b611d26565b9050828152602081018484840111156115b457600080fd5b6115bf848285611ee3565b509392505050565b6000813590506115d681612365565b92915050565b6000813590506115eb8161237c565b92915050565b60008135905061160081612393565b92915050565b60008151905061161581612393565b92915050565b600082601f83011261162c57600080fd5b813561163c84826020860161154b565b91505092915050565b600082601f83011261165657600080fd5b8135611666848260208601611589565b91505092915050565b60008135905061167e816123aa565b92915050565b60006020828403121561169657600080fd5b60006116a4848285016115c7565b91505092915050565b600080604083850312156116c057600080fd5b60006116ce858286016115c7565b92505060206116df858286016115c7565b9150509250929050565b6000806000606084860312156116fe57600080fd5b600061170c868287016115c7565b935050602061171d868287016115c7565b925050604061172e8682870161166f565b9150509250925092565b6000806000806080858703121561174e57600080fd5b600061175c878288016115c7565b945050602061176d878288016115c7565b935050604061177e8782880161166f565b925050606085013567ffffffffffffffff81111561179b57600080fd5b6117a78782880161161b565b91505092959194509250565b600080604083850312156117c657600080fd5b60006117d4858286016115c7565b92505060206117e5858286016115dc565b9150509250929050565b6000806040838503121561180257600080fd5b6000611810858286016115c7565b92505060206118218582860161166f565b9150509250929050565b60006020828403121561183d57600080fd5b600061184b848285016115f1565b91505092915050565b60006020828403121561186657600080fd5b600061187484828501611606565b91505092915050565b60006020828403121561188f57600080fd5b600082013567ffffffffffffffff8111156118a957600080fd5b6118b584828501611645565b91505092915050565b6000602082840312156118d057600080fd5b60006118de8482850161166f565b91505092915050565b6118f081611e6f565b82525050565b6118ff81611e81565b82525050565b600061191082611dad565b61191a8185611dc3565b935061192a818560208601611ef2565b61193381612015565b840191505092915050565b600061194982611db8565b6119538185611dd4565b9350611963818560208601611ef2565b61196c81612015565b840191505092915050565b6000611984603283611dd4565b915061198f82612026565b604082019050919050565b60006119a7602483611dd4565b91506119b282612075565b604082019050919050565b60006119ca601983611dd4565b91506119d5826120c4565b602082019050919050565b60006119ed602c83611dd4565b91506119f8826120ed565b604082019050919050565b6000611a10603883611dd4565b9150611a1b8261213c565b604082019050919050565b6000611a33602a83611dd4565b9150611a3e8261218b565b604082019050919050565b6000611a56602983611dd4565b9150611a61826121da565b604082019050919050565b6000611a79602c83611dd4565b9150611a8482612229565b604082019050919050565b6000611a9c602983611dd4565b9150611aa782612278565b604082019050919050565b6000611abf602183611dd4565b9150611aca826122c7565b604082019050919050565b6000611ae2603183611dd4565b9150611aed82612316565b604082019050919050565b611b0181611ed9565b82525050565b6000602082019050611b1c60008301846118e7565b92915050565b6000608082019050611b3760008301876118e7565b611b4460208301866118e7565b611b516040830185611af8565b8181036060830152611b638184611905565b905095945050505050565b6000602082019050611b8360008301846118f6565b92915050565b60006020820190508181036000830152611ba3818461193e565b905092915050565b60006020820190508181036000830152611bc481611977565b9050919050565b60006020820190508181036000830152611be48161199a565b9050919050565b60006020820190508181036000830152611c04816119bd565b9050919050565b60006020820190508181036000830152611c24816119e0565b9050919050565b60006020820190508181036000830152611c4481611a03565b9050919050565b60006020820190508181036000830152611c6481611a26565b9050919050565b60006020820190508181036000830152611c8481611a49565b9050919050565b60006020820190508181036000830152611ca481611a6c565b9050919050565b60006020820190508181036000830152611cc481611a8f565b9050919050565b60006020820190508181036000830152611ce481611ab2565b9050919050565b60006020820190508181036000830152611d0481611ad5565b9050919050565b6000602082019050611d206000830184611af8565b92915050565b6000611d30611d41565b9050611d3c8282611f57565b919050565b6000604051905090565b600067ffffffffffffffff821115611d6657611d65611fe6565b5b611d6f82612015565b9050602081019050919050565b600067ffffffffffffffff821115611d9757611d96611fe6565b5b611da082612015565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000611df082611ed9565b9150611dfb83611ed9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e3057611e2f611f88565b5b828201905092915050565b6000611e4682611ed9565b9150611e5183611ed9565b925082821015611e6457611e63611f88565b5b828203905092915050565b6000611e7a82611eb9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015611f10578082015181840152602081019050611ef5565b83811115611f1f576000848401525b50505050565b60006002820490506001821680611f3d57607f821691505b60208210811415611f5157611f50611fb7565b5b50919050565b611f6082612015565b810181811067ffffffffffffffff82111715611f7f57611f7e611fe6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61236e81611e6f565b811461237957600080fd5b50565b61238581611e81565b811461239057600080fd5b50565b61239c81611e8d565b81146123a757600080fd5b50565b6123b381611ed9565b81146123be57600080fd5b5056fea26469706673582212208ae2a21de8c862457e1644a5f811bfee27acdef94ffdad3d3ce5eb71bb7b007264736f6c63430008040033
Deployed Bytecode Sourcemap
32828:989:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20983:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21915:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23375:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22912:397;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33589:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24265:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24641:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32937:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21609:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21339:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32865:65;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22084:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23668:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33713:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24863:285;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33349:148;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24034:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33028:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20983:292;21085:4;21124:25;21109:40;;;:11;:40;;;;:105;;;;21181:33;21166:48;;;:11;:48;;;;21109:105;:158;;;;21231:36;21255:11;21231:23;:36::i;:::-;21109:158;21102:165;;20983:292;;;:::o;21915:100::-;21969:13;22002:5;21995:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21915:100;:::o;23375:221::-;23451:7;23479:16;23487:7;23479;:16::i;:::-;23471:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23564:15;:24;23580:7;23564:24;;;;;;;;;;;;;;;;;;;;;23557:31;;23375:221;;;:::o;22912:397::-;22993:13;23009:23;23024:7;23009:14;:23::i;:::-;22993:39;;23057:5;23051:11;;:2;:11;;;;23043:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23137:5;23121:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23146:37;23163:5;23170:12;:10;:12::i;:::-;23146:16;:37::i;:::-;23121:62;23113:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;23280:21;23289:2;23293:7;23280:8;:21::i;:::-;22912:397;;;:::o;33589:116::-;33552:10;33543:19;;:5;;;;;;;;;;;:19;;;33535:28;;;;;;33684:13:::1;33669:12;:28;;;;;;;;;;;;:::i;:::-;;33589:116:::0;:::o;24265:305::-;24426:41;24445:12;:10;:12::i;:::-;24459:7;24426:18;:41::i;:::-;24418:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24534:28;24544:4;24550:2;24554:7;24534:9;:28::i;:::-;24265:305;;;:::o;24641:151::-;24745:39;24762:4;24768:2;24772:7;24745:39;;;;;;;;;;;;:16;:39::i;:::-;24641:151;;;:::o;32937:84::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21609:239::-;21681:7;21701:13;21717:7;:16;21725:7;21717:16;;;;;;;;;;;;;;;;;;;;;21701:32;;21769:1;21752:19;;:5;:19;;;;21744:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21835:5;21828:12;;;21609:239;;;:::o;21339:208::-;21411:7;21456:1;21439:19;;:5;:19;;;;21431:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21523:9;:16;21533:5;21523:16;;;;;;;;;;;;;;;;21516:23;;21339:208;;;:::o;32865:65::-;;;;;;;;;;;;;:::o;22084:104::-;22140:13;22173:7;22166:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22084:104;:::o;23668:295::-;23783:12;:10;:12::i;:::-;23771:24;;:8;:24;;;;23763:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23883:8;23838:18;:32;23857:12;:10;:12::i;:::-;23838:32;;;;;;;;;;;;;;;:42;23871:8;23838:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23936:8;23907:48;;23922:12;:10;:12::i;:::-;23907:48;;;23946:8;23907:48;;;;;;:::i;:::-;;;;;;;;23668:295;;:::o;33713:99::-;33552:10;33543:19;;:5;;;;;;;;;;;:19;;;33535:28;;;;;;33793:11:::1;33780:10;:24;;;;33713:99:::0;:::o;24863:285::-;24995:41;25014:12;:10;:12::i;:::-;25028:7;24995:18;:41::i;:::-;24987:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25101:39;25115:4;25121:2;25125:7;25134:5;25101:13;:39::i;:::-;24863:285;;;;:::o;33349:148::-;33415:13;33459:1;33447:8;:13;33439:22;;;;;;33477:12;33470:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33349:148;;;:::o;24034:164::-;24131:4;24155:18;:25;24174:5;24155:25;;;;;;;;;;;;;;;:35;24181:8;24155:35;;;;;;;;;;;;;;;;;;;;;;;;;24148:42;;24034:164;;;;:::o;33028:35::-;;;;:::o;19504:157::-;19589:4;19628:25;19613:40;;;:11;:40;;;;19606:47;;19504:157;;;:::o;26615:127::-;26680:4;26732:1;26704:30;;:7;:16;26712:7;26704:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26697:37;;26615:127;;;:::o;16340:98::-;16393:7;16420:10;16413:17;;16340:98;:::o;30492:174::-;30594:2;30567:15;:24;30583:7;30567:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30650:7;30646:2;30612:46;;30621:23;30636:7;30621:14;:23::i;:::-;30612:46;;;;;;;;;;;;30492:174;;:::o;26909:348::-;27002:4;27027:16;27035:7;27027;:16::i;:::-;27019:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27103:13;27119:23;27134:7;27119:14;:23::i;:::-;27103:39;;27172:5;27161:16;;:7;:16;;;:51;;;;27205:7;27181:31;;:20;27193:7;27181:11;:20::i;:::-;:31;;;27161:51;:87;;;;27216:32;27233:5;27240:7;27216:16;:32::i;:::-;27161:87;27153:96;;;26909:348;;;;:::o;29830:544::-;29955:4;29928:31;;:23;29943:7;29928:14;:23::i;:::-;:31;;;29920:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30038:1;30024:16;;:2;:16;;;;30016:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30094:39;30115:4;30121:2;30125:7;30094:20;:39::i;:::-;30198:29;30215:1;30219:7;30198:8;:29::i;:::-;30259:1;30240:9;:15;30250:4;30240:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30288:1;30271:9;:13;30281:2;30271:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30319:2;30300:7;:16;30308:7;30300:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30358:7;30354:2;30339:27;;30348:4;30339:27;;;;;;;;;;;;29830:544;;;:::o;26030:272::-;26144:28;26154:4;26160:2;26164:7;26144:9;:28::i;:::-;26191:48;26214:4;26220:2;26224:7;26233:5;26191:22;:48::i;:::-;26183:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26030:272;;;;:::o;32687:93::-;;;;:::o;31231:843::-;31352:4;31378:15;:2;:13;;;:15::i;:::-;31374:693;;;31430:2;31414:36;;;31451:12;:10;:12::i;:::-;31465:4;31471:7;31480:5;31414:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31410:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31677:1;31660:6;:13;:18;31656:341;;;31703:60;;;;;;;;;;:::i;:::-;;;;;;;;31656:341;31947:6;31941:13;31932:6;31928:2;31924:15;31917:38;31410:602;31547:45;;;31537:55;;;:6;:55;;;;31530:62;;;;;31374:693;32051:4;32044:11;;31231:843;;;;;;;:::o;8480:422::-;8540:4;8748:12;8859:7;8847:20;8839:28;;8893:1;8886:4;:8;8879:15;;;8480:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:360::-;6411:3;6439:38;6471:5;6439:38;:::i;:::-;6493:70;6556:6;6551:3;6493:70;:::i;:::-;6486:77;;6572:52;6617:6;6612:3;6605:4;6598:5;6594:16;6572:52;:::i;:::-;6649:29;6671:6;6649:29;:::i;:::-;6644:3;6640:39;6633:46;;6415:270;;;;;:::o;6691:364::-;6779:3;6807:39;6840:5;6807:39;:::i;:::-;6862:71;6926:6;6921:3;6862:71;:::i;:::-;6855:78;;6942:52;6987:6;6982:3;6975:4;6968:5;6964:16;6942:52;:::i;:::-;7019:29;7041:6;7019:29;:::i;:::-;7014:3;7010:39;7003:46;;6783:272;;;;;:::o;7061:366::-;7203:3;7224:67;7288:2;7283:3;7224:67;:::i;:::-;7217:74;;7300:93;7389:3;7300:93;:::i;:::-;7418:2;7413:3;7409:12;7402:19;;7207:220;;;:::o;7433:366::-;7575:3;7596:67;7660:2;7655:3;7596:67;:::i;:::-;7589:74;;7672:93;7761:3;7672:93;:::i;:::-;7790:2;7785:3;7781:12;7774:19;;7579:220;;;:::o;7805:366::-;7947:3;7968:67;8032:2;8027:3;7968:67;:::i;:::-;7961:74;;8044:93;8133:3;8044:93;:::i;:::-;8162:2;8157:3;8153:12;8146:19;;7951:220;;;:::o;8177:366::-;8319:3;8340:67;8404:2;8399:3;8340:67;:::i;:::-;8333:74;;8416:93;8505:3;8416:93;:::i;:::-;8534:2;8529:3;8525:12;8518:19;;8323:220;;;:::o;8549:366::-;8691:3;8712:67;8776:2;8771:3;8712:67;:::i;:::-;8705:74;;8788:93;8877:3;8788:93;:::i;:::-;8906:2;8901:3;8897:12;8890:19;;8695:220;;;:::o;8921:366::-;9063:3;9084:67;9148:2;9143:3;9084:67;:::i;:::-;9077:74;;9160:93;9249:3;9160:93;:::i;:::-;9278:2;9273:3;9269:12;9262:19;;9067:220;;;:::o;9293:366::-;9435:3;9456:67;9520:2;9515:3;9456:67;:::i;:::-;9449:74;;9532:93;9621:3;9532:93;:::i;:::-;9650:2;9645:3;9641:12;9634:19;;9439:220;;;:::o;9665:366::-;9807:3;9828:67;9892:2;9887:3;9828:67;:::i;:::-;9821:74;;9904:93;9993:3;9904:93;:::i;:::-;10022:2;10017:3;10013:12;10006:19;;9811:220;;;:::o;10037:366::-;10179:3;10200:67;10264:2;10259:3;10200:67;:::i;:::-;10193:74;;10276:93;10365:3;10276:93;:::i;:::-;10394:2;10389:3;10385:12;10378:19;;10183:220;;;:::o;10409:366::-;10551:3;10572:67;10636:2;10631:3;10572:67;:::i;:::-;10565:74;;10648:93;10737:3;10648:93;:::i;:::-;10766:2;10761:3;10757:12;10750:19;;10555:220;;;:::o;10781:366::-;10923:3;10944:67;11008:2;11003:3;10944:67;:::i;:::-;10937:74;;11020:93;11109:3;11020:93;:::i;:::-;11138:2;11133:3;11129:12;11122:19;;10927:220;;;:::o;11153:118::-;11240:24;11258:5;11240:24;:::i;:::-;11235:3;11228:37;11218:53;;:::o;11277:222::-;11370:4;11408:2;11397:9;11393:18;11385:26;;11421:71;11489:1;11478:9;11474:17;11465:6;11421:71;:::i;:::-;11375:124;;;;:::o;11505:640::-;11700:4;11738:3;11727:9;11723:19;11715:27;;11752:71;11820:1;11809:9;11805:17;11796:6;11752:71;:::i;:::-;11833:72;11901:2;11890:9;11886:18;11877:6;11833:72;:::i;:::-;11915;11983:2;11972:9;11968:18;11959:6;11915:72;:::i;:::-;12034:9;12028:4;12024:20;12019:2;12008:9;12004:18;11997:48;12062:76;12133:4;12124:6;12062:76;:::i;:::-;12054:84;;11705:440;;;;;;;:::o;12151:210::-;12238:4;12276:2;12265:9;12261:18;12253:26;;12289:65;12351:1;12340:9;12336:17;12327:6;12289:65;:::i;:::-;12243:118;;;;:::o;12367:313::-;12480:4;12518:2;12507:9;12503:18;12495:26;;12567:9;12561:4;12557:20;12553:1;12542:9;12538:17;12531:47;12595:78;12668:4;12659:6;12595:78;:::i;:::-;12587:86;;12485:195;;;;:::o;12686:419::-;12852:4;12890:2;12879:9;12875:18;12867:26;;12939:9;12933:4;12929:20;12925:1;12914:9;12910:17;12903:47;12967:131;13093:4;12967:131;:::i;:::-;12959:139;;12857:248;;;:::o;13111:419::-;13277:4;13315:2;13304:9;13300:18;13292:26;;13364:9;13358:4;13354:20;13350:1;13339:9;13335:17;13328:47;13392:131;13518:4;13392:131;:::i;:::-;13384:139;;13282:248;;;:::o;13536:419::-;13702:4;13740:2;13729:9;13725:18;13717:26;;13789:9;13783:4;13779:20;13775:1;13764:9;13760:17;13753:47;13817:131;13943:4;13817:131;:::i;:::-;13809:139;;13707:248;;;:::o;13961:419::-;14127:4;14165:2;14154:9;14150:18;14142:26;;14214:9;14208:4;14204:20;14200:1;14189:9;14185:17;14178:47;14242:131;14368:4;14242:131;:::i;:::-;14234:139;;14132:248;;;:::o;14386:419::-;14552:4;14590:2;14579:9;14575:18;14567:26;;14639:9;14633:4;14629:20;14625:1;14614:9;14610:17;14603:47;14667:131;14793:4;14667:131;:::i;:::-;14659:139;;14557:248;;;:::o;14811:419::-;14977:4;15015:2;15004:9;15000:18;14992:26;;15064:9;15058:4;15054:20;15050:1;15039:9;15035:17;15028:47;15092:131;15218:4;15092:131;:::i;:::-;15084:139;;14982:248;;;:::o;15236:419::-;15402:4;15440:2;15429:9;15425:18;15417:26;;15489:9;15483:4;15479:20;15475:1;15464:9;15460:17;15453:47;15517:131;15643:4;15517:131;:::i;:::-;15509:139;;15407:248;;;:::o;15661:419::-;15827:4;15865:2;15854:9;15850:18;15842:26;;15914:9;15908:4;15904:20;15900:1;15889:9;15885:17;15878:47;15942:131;16068:4;15942:131;:::i;:::-;15934:139;;15832:248;;;:::o;16086:419::-;16252:4;16290:2;16279:9;16275:18;16267:26;;16339:9;16333:4;16329:20;16325:1;16314:9;16310:17;16303:47;16367:131;16493:4;16367:131;:::i;:::-;16359:139;;16257:248;;;:::o;16511:419::-;16677:4;16715:2;16704:9;16700:18;16692:26;;16764:9;16758:4;16754:20;16750:1;16739:9;16735:17;16728:47;16792:131;16918:4;16792:131;:::i;:::-;16784:139;;16682:248;;;:::o;16936:419::-;17102:4;17140:2;17129:9;17125:18;17117:26;;17189:9;17183:4;17179:20;17175:1;17164:9;17160:17;17153:47;17217:131;17343:4;17217:131;:::i;:::-;17209:139;;17107:248;;;:::o;17361:222::-;17454:4;17492:2;17481:9;17477:18;17469:26;;17505:71;17573:1;17562:9;17558:17;17549:6;17505:71;:::i;:::-;17459:124;;;;:::o;17589:129::-;17623:6;17650:20;;:::i;:::-;17640:30;;17679:33;17707:4;17699:6;17679:33;:::i;:::-;17630:88;;;:::o;17724:75::-;17757:6;17790:2;17784:9;17774:19;;17764:35;:::o;17805:307::-;17866:4;17956:18;17948:6;17945:30;17942:2;;;17978:18;;:::i;:::-;17942:2;18016:29;18038:6;18016:29;:::i;:::-;18008:37;;18100:4;18094;18090:15;18082:23;;17871:241;;;:::o;18118:308::-;18180:4;18270:18;18262:6;18259:30;18256:2;;;18292:18;;:::i;:::-;18256:2;18330:29;18352:6;18330:29;:::i;:::-;18322:37;;18414:4;18408;18404:15;18396:23;;18185:241;;;:::o;18432:98::-;18483:6;18517:5;18511:12;18501:22;;18490:40;;;:::o;18536:99::-;18588:6;18622:5;18616:12;18606:22;;18595:40;;;:::o;18641:168::-;18724:11;18758:6;18753:3;18746:19;18798:4;18793:3;18789:14;18774:29;;18736:73;;;;:::o;18815:169::-;18899:11;18933:6;18928:3;18921:19;18973:4;18968:3;18964:14;18949:29;;18911:73;;;;:::o;18990:305::-;19030:3;19049:20;19067:1;19049:20;:::i;:::-;19044:25;;19083:20;19101:1;19083:20;:::i;:::-;19078:25;;19237:1;19169:66;19165:74;19162:1;19159:81;19156:2;;;19243:18;;:::i;:::-;19156:2;19287:1;19284;19280:9;19273:16;;19034:261;;;;:::o;19301:191::-;19341:4;19361:20;19379:1;19361:20;:::i;:::-;19356:25;;19395:20;19413:1;19395:20;:::i;:::-;19390:25;;19434:1;19431;19428:8;19425:2;;;19439:18;;:::i;:::-;19425:2;19484:1;19481;19477:9;19469:17;;19346:146;;;;:::o;19498:96::-;19535:7;19564:24;19582:5;19564:24;:::i;:::-;19553:35;;19543:51;;;:::o;19600:90::-;19634:7;19677:5;19670:13;19663:21;19652:32;;19642:48;;;:::o;19696:149::-;19732:7;19772:66;19765:5;19761:78;19750:89;;19740:105;;;:::o;19851:126::-;19888:7;19928:42;19921:5;19917:54;19906:65;;19896:81;;;:::o;19983:77::-;20020:7;20049:5;20038:16;;20028:32;;;:::o;20066:154::-;20150:6;20145:3;20140;20127:30;20212:1;20203:6;20198:3;20194:16;20187:27;20117:103;;;:::o;20226:307::-;20294:1;20304:113;20318:6;20315:1;20312:13;20304:113;;;20403:1;20398:3;20394:11;20388:18;20384:1;20379:3;20375:11;20368:39;20340:2;20337:1;20333:10;20328:15;;20304:113;;;20435:6;20432:1;20429:13;20426:2;;;20515:1;20506:6;20501:3;20497:16;20490:27;20426:2;20275:258;;;;:::o;20539:320::-;20583:6;20620:1;20614:4;20610:12;20600:22;;20667:1;20661:4;20657:12;20688:18;20678:2;;20744:4;20736:6;20732:17;20722:27;;20678:2;20806;20798:6;20795:14;20775:18;20772:38;20769:2;;;20825:18;;:::i;:::-;20769:2;20590:269;;;;:::o;20865:281::-;20948:27;20970:4;20948:27;:::i;:::-;20940:6;20936:40;21078:6;21066:10;21063:22;21042:18;21030:10;21027:34;21024:62;21021:2;;;21089:18;;:::i;:::-;21021:2;21129:10;21125:2;21118:22;20908:238;;;:::o;21152:180::-;21200:77;21197:1;21190:88;21297:4;21294:1;21287:15;21321:4;21318:1;21311:15;21338:180;21386:77;21383:1;21376:88;21483:4;21480:1;21473:15;21507:4;21504:1;21497:15;21524:180;21572:77;21569:1;21562:88;21669:4;21666:1;21659:15;21693:4;21690:1;21683:15;21710:102;21751:6;21802:2;21798:7;21793:2;21786:5;21782:14;21778:28;21768:38;;21758:54;;;:::o;21818:237::-;21958:34;21954:1;21946:6;21942:14;21935:58;22027:20;22022:2;22014:6;22010:15;22003:45;21924:131;:::o;22061:223::-;22201:34;22197:1;22189:6;22185:14;22178:58;22270:6;22265:2;22257:6;22253:15;22246:31;22167:117;:::o;22290:175::-;22430:27;22426:1;22418:6;22414:14;22407:51;22396:69;:::o;22471:231::-;22611:34;22607:1;22599:6;22595:14;22588:58;22680:14;22675:2;22667:6;22663:15;22656:39;22577:125;:::o;22708:243::-;22848:34;22844:1;22836:6;22832:14;22825:58;22917:26;22912:2;22904:6;22900:15;22893:51;22814:137;:::o;22957:229::-;23097:34;23093:1;23085:6;23081:14;23074:58;23166:12;23161:2;23153:6;23149:15;23142:37;23063:123;:::o;23192:228::-;23332:34;23328:1;23320:6;23316:14;23309:58;23401:11;23396:2;23388:6;23384:15;23377:36;23298:122;:::o;23426:231::-;23566:34;23562:1;23554:6;23550:14;23543:58;23635:14;23630:2;23622:6;23618:15;23611:39;23532:125;:::o;23663:228::-;23803:34;23799:1;23791:6;23787:14;23780:58;23872:11;23867:2;23859:6;23855:15;23848:36;23769:122;:::o;23897:220::-;24037:34;24033:1;24025:6;24021:14;24014:58;24106:3;24101:2;24093:6;24089:15;24082:28;24003:114;:::o;24123:236::-;24263:34;24259:1;24251:6;24247:14;24240:58;24332:19;24327:2;24319:6;24315:15;24308:44;24229:130;:::o;24365:122::-;24438:24;24456:5;24438:24;:::i;:::-;24431:5;24428:35;24418:2;;24477:1;24474;24467:12;24418:2;24408:79;:::o;24493:116::-;24563:21;24578:5;24563:21;:::i;:::-;24556:5;24553:32;24543:2;;24599:1;24596;24589:12;24543:2;24533:76;:::o;24615:120::-;24687:23;24704:5;24687:23;:::i;:::-;24680:5;24677:34;24667:2;;24725:1;24722;24715:12;24667:2;24657:78;:::o;24741:122::-;24814:24;24832:5;24814:24;:::i;:::-;24807:5;24804:35;24794:2;;24853:1;24850;24843:12;24794:2;24784:79;:::o
Swarm Source
ipfs://8ae2a21de8c862457e1644a5f811bfee27acdef94ffdad3d3ce5eb71bb7b0072
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 98.95% | $0.999896 | 10,000 | $9,998.96 | |
ETH | 0.27% | $0.108864 | 246.4523 | $26.83 | |
ETH | 0.18% | $0.000013 | 1,369,420 | $17.72 | |
ETH | 0.13% | $1 | 13.1643 | $13.16 | |
ETH | 0.02% | $0.000009 | 203,126.4335 | $1.9 | |
ETH | <0.01% | $0.999981 | 0.69 | $0.6899 | |
ETH | <0.01% | $0.004115 | 161.9743 | $0.6664 | |
ETH | <0.01% | $0.466258 | 1 | $0.4662 | |
BSC | 0.42% | $2.51 | 17.027 | $42.74 | |
BSC | 0.01% | $2,017.86 | 0.00069 | $1.39 | |
BSC | <0.01% | $0.000139 | 6,942.0134 | $0.9639 | |
BSC | <0.01% | $634.46 | 0.0000911 | $0.0578 | |
POL | <0.01% | $0.218056 | 0.01 | $0.002181 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.