Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 210 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 17964473 | 437 days ago | IN | 0 ETH | 0.00190253 | ||||
Transfer From | 16949823 | 580 days ago | IN | 0 ETH | 0.00160126 | ||||
Set Approval For... | 16272858 | 675 days ago | IN | 0 ETH | 0.00103675 | ||||
Set Approval For... | 16271408 | 675 days ago | IN | 0 ETH | 0.00055689 | ||||
Set Approval For... | 15238754 | 825 days ago | IN | 0 ETH | 0.00026154 | ||||
Set Approval For... | 15203313 | 831 days ago | IN | 0 ETH | 0.0001296 | ||||
Set Approval For... | 15082370 | 849 days ago | IN | 0 ETH | 0.00077825 | ||||
Set Approval For... | 14950571 | 872 days ago | IN | 0 ETH | 0.00091316 | ||||
Set Approval For... | 14950567 | 872 days ago | IN | 0 ETH | 0.00066597 | ||||
Set Approval For... | 14646227 | 922 days ago | IN | 0 ETH | 0.00110176 | ||||
Transfer From | 14618558 | 926 days ago | IN | 0 ETH | 0.00242463 | ||||
Transfer From | 14510593 | 943 days ago | IN | 0 ETH | 0.00414439 | ||||
Set Approval For... | 14465643 | 950 days ago | IN | 0 ETH | 0.00043233 | ||||
Transfer From | 14350321 | 968 days ago | IN | 0 ETH | 0.00228068 | ||||
Transfer From | 14350264 | 968 days ago | IN | 0 ETH | 0.00359214 | ||||
Transfer From | 14337026 | 970 days ago | IN | 0 ETH | 0.00104931 | ||||
Set Approval For... | 14323186 | 972 days ago | IN | 0 ETH | 0.00527669 | ||||
Set Approval For... | 14297852 | 976 days ago | IN | 0 ETH | 0.0043034 | ||||
Set Approval For... | 14252980 | 983 days ago | IN | 0 ETH | 0.00349126 | ||||
Set Approval For... | 14244972 | 984 days ago | IN | 0 ETH | 0.00147291 | ||||
Set Approval For... | 14242216 | 985 days ago | IN | 0 ETH | 0.00124156 | ||||
Set Approval For... | 14242106 | 985 days ago | IN | 0 ETH | 0.00103481 | ||||
Set Approval For... | 14222450 | 988 days ago | IN | 0 ETH | 0.0016049 | ||||
Set Approval For... | 14221527 | 988 days ago | IN | 0 ETH | 0.00326248 | ||||
Set Approval For... | 14218286 | 988 days ago | IN | 0 ETH | 0.00324289 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers. Name tag integration is not available in advanced view.
Latest 7 internal transactions
Advanced mode:
Loading...
Loading
Contract Name:
MBOT
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// contracts/GameItem.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; contract MBOT is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIds; Counters.Counter private _currentSector; string private baseURI; string private contractURI; mapping(uint256 => uint256) private _sectorToPrice; constructor(string memory baseUri) ERC721("3dBoredClub - MBOT", "MBOT") { baseURI = baseUri; _sectorToPrice[1] = 40000000000000000; _sectorToPrice[2] = 60000000000000000; _sectorToPrice[3] = 80000000000000000; _currentSector.increment(); } function tokenURI(uint256 tokenId) public view override returns (string memory) { return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } function mintTo(address receiver, uint256 howMany) public payable returns (uint256[] memory) { require(_tokenIds.current() + howMany < 2400, "Exceeds max supply"); uint256 sectorLimit = _currentSector.current() == 1 ? 2 : 10; require( msg.sender == owner() || balanceOf(receiver) + howMany <= sectorLimit, "Exceeds max mint limit" ); uint256 price = _sectorToPrice[_currentSector.current()]; if (msg.sender == owner() && _currentSector.current() == 1) { price = 0; } require(msg.value >= (price * howMany), "Insufficient funds"); uint256[] memory newTokenIds = new uint256[](howMany); for (uint256 i = 0; i < howMany; i++) { _tokenIds.increment(); uint256 newItemId = _tokenIds.current(); _safeMint(receiver, newItemId); _handleSectorChange(newItemId); newTokenIds[i] = newItemId; } return newTokenIds; } function _handleSectorChange(uint256 currentTokenId) private { if (currentTokenId == 200 || currentTokenId == 1440) { _currentSector.increment(); } } function getCurrentTokenId() public view returns (uint256) { return _tokenIds.current(); } function setBaseURI(string memory baseUri) public onlyOwner { baseURI = baseUri; } function getBaseURI() public view returns (string memory) { return baseURI; } function getCurrentPrice() public view returns (uint256) { return _sectorToPrice[_currentSector.current()]; } function getContractURI() public view returns (string memory) { return contractURI; } function setContractURI(string memory newContractURI) public onlyOwner { contractURI = newContractURI; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"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":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"howMany","type":"uint256"}],"name":"mintTo","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162003b8f38038062003b8f833981810160405281019062000037919062000395565b6040518060400160405280601281526020017f3364426f726564436c7562202d204d424f5400000000000000000000000000008152506040518060400160405280600481526020017f4d424f54000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb92919062000273565b508060019080519060200190620000d492919062000273565b505050620000f7620000eb6200018f60201b60201c565b6200019760201b60201c565b80600990805190602001906200010f92919062000273565b50668e1bc9bf040000600b6000600181526020019081526020016000208190555066d529ae9e860000600b6000600281526020019081526020016000208190555067011c37937e080000600b600060038152602001908152602001600020819055506200018860086200025d60201b6200137a1760201c565b506200054a565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b82805462000281906200046f565b90600052602060002090601f016020900481019282620002a55760008555620002f1565b82601f10620002c057805160ff1916838001178555620002f1565b82800160010185558215620002f1579182015b82811115620002f0578251825591602001919060010190620002d3565b5b50905062000300919062000304565b5090565b5b808211156200031f57600081600090555060010162000305565b5090565b60006200033a620003348462000403565b620003da565b9050828152602081018484840111156200035357600080fd5b6200036084828562000439565b509392505050565b600082601f8301126200037a57600080fd5b81516200038c84826020860162000323565b91505092915050565b600060208284031215620003a857600080fd5b600082015167ffffffffffffffff811115620003c357600080fd5b620003d18482850162000368565b91505092915050565b6000620003e6620003f9565b9050620003f48282620004a5565b919050565b6000604051905090565b600067ffffffffffffffff8211156200042157620004206200050a565b5b6200042c8262000539565b9050602081019050919050565b60005b83811015620004595780820151818401526020810190506200043c565b8381111562000469576000848401525b50505050565b600060028204905060018216806200048857607f821691505b602082108114156200049f576200049e620004db565b5b50919050565b620004b08262000539565b810181811067ffffffffffffffff82111715620004d257620004d16200050a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613635806200055a6000396000f3fe6080604052600436106101405760003560e01c806370a08231116100b6578063a22cb4651161006f578063a22cb4651461044f578063b88d4fde14610478578063c87b56dd146104a1578063e985e9c5146104de578063eb91d37e1461051b578063f2fde38b1461054657610140565b806370a0823114610351578063714c53981461038e578063715018a6146103b95780638da5cb5b146103d0578063938e3d7b146103fb57806395d89b411461042457610140565b806337929eb41161010857806337929eb41461023c57806342842e0e14610267578063449a52f81461029057806355f804b3146102c057806356189236146102e95780636352211e1461031457610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806323b872dd14610213575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190612447565b61056f565b60405161017991906129fa565b60405180910390f35b34801561018e57600080fd5b50610197610651565b6040516101a49190612a15565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf91906124da565b6106e3565b6040516101e19190612971565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c919061240b565b610768565b005b34801561021f57600080fd5b5061023a60048036038101906102359190612305565b610880565b005b34801561024857600080fd5b506102516108e0565b60405161025e9190612a15565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190612305565b610972565b005b6102aa60048036038101906102a5919061240b565b610992565b6040516102b791906129d8565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612499565b610c75565b005b3480156102f557600080fd5b506102fe610d0b565b60405161030b9190612c77565b60405180910390f35b34801561032057600080fd5b5061033b600480360381019061033691906124da565b610d1c565b6040516103489190612971565b60405180910390f35b34801561035d57600080fd5b50610378600480360381019061037391906122a0565b610dce565b6040516103859190612c77565b60405180910390f35b34801561039a57600080fd5b506103a3610e86565b6040516103b09190612a15565b60405180910390f35b3480156103c557600080fd5b506103ce610f18565b005b3480156103dc57600080fd5b506103e5610fa0565b6040516103f29190612971565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d9190612499565b610fca565b005b34801561043057600080fd5b50610439611060565b6040516104469190612a15565b60405180910390f35b34801561045b57600080fd5b50610476600480360381019061047191906123cf565b6110f2565b005b34801561048457600080fd5b5061049f600480360381019061049a9190612354565b611108565b005b3480156104ad57600080fd5b506104c860048036038101906104c391906124da565b61116a565b6040516104d59190612a15565b60405180910390f35b3480156104ea57600080fd5b50610505600480360381019061050091906122c9565b6111ca565b60405161051291906129fa565b60405180910390f35b34801561052757600080fd5b5061053061125e565b60405161053d9190612c77565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906122a0565b611282565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061064a575061064982611390565b5b9050919050565b60606000805461066090612f75565b80601f016020809104026020016040519081016040528092919081815260200182805461068c90612f75565b80156106d95780601f106106ae576101008083540402835291602001916106d9565b820191906000526020600020905b8154815290600101906020018083116106bc57829003601f168201915b5050505050905090565b60006106ee826113fa565b61072d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072490612bd7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077382610d1c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107db90612c37565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610803611466565b73ffffffffffffffffffffffffffffffffffffffff16148061083257506108318161082c611466565b6111ca565b5b610871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086890612b37565b60405180910390fd5b61087b838361146e565b505050565b61089161088b611466565b82611527565b6108d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c790612c57565b60405180910390fd5b6108db838383611605565b505050565b6060600a80546108ef90612f75565b80601f016020809104026020016040519081016040528092919081815260200182805461091b90612f75565b80156109685780601f1061093d57610100808354040283529160200191610968565b820191906000526020600020905b81548152906001019060200180831161094b57829003601f168201915b5050505050905090565b61098d83838360405180602001604052806000815250611108565b505050565b6060610960826109a26007611861565b6109ac9190612daa565b106109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390612b97565b60405180910390fd5b600060016109fa6008611861565b14610a0657600a610a09565b60025b60ff169050610a16610fa0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610a6257508083610a5586610dce565b610a5f9190612daa565b11155b610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9890612a37565b60405180910390fd5b6000600b6000610ab16008611861565b8152602001908152602001600020549050610aca610fa0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148015610b0d57506001610b0b6008611861565b145b15610b1757600090505b8381610b239190612e31565b341015610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90612b17565b60405180910390fd5b60008467ffffffffffffffff811115610ba7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610bd55781602001602082028036833780820191505090505b50905060005b85811015610c6857610bed600761137a565b6000610bf96007611861565b9050610c05888261186f565b610c0e8161188d565b80838381518110610c48577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050508080610c6090612fd8565b915050610bdb565b5080935050505092915050565b610c7d611466565b73ffffffffffffffffffffffffffffffffffffffff16610c9b610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890612bf7565b60405180910390fd5b8060099080519060200190610d079291906120c4565b5050565b6000610d176007611861565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc90612b77565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690612b57565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060098054610e9590612f75565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec190612f75565b8015610f0e5780601f10610ee357610100808354040283529160200191610f0e565b820191906000526020600020905b815481529060010190602001808311610ef157829003601f168201915b5050505050905090565b610f20611466565b73ffffffffffffffffffffffffffffffffffffffff16610f3e610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b90612bf7565b60405180910390fd5b610f9e60006118b0565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fd2611466565b73ffffffffffffffffffffffffffffffffffffffff16610ff0610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90612bf7565b60405180910390fd5b80600a908051906020019061105c9291906120c4565b5050565b60606001805461106f90612f75565b80601f016020809104026020016040519081016040528092919081815260200182805461109b90612f75565b80156110e85780601f106110bd576101008083540402835291602001916110e8565b820191906000526020600020905b8154815290600101906020018083116110cb57829003601f168201915b5050505050905090565b6111046110fd611466565b8383611976565b5050565b611119611113611466565b83611527565b611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90612c57565b60405180910390fd5b61116484848484611ae3565b50505050565b606060006009805461117b90612f75565b90501161119757604051806020016040528060008152506111c3565b60096111a283611b3f565b6040516020016111b392919061294d565b6040516020818303038152906040525b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600b600061126e6008611861565b815260200190815260200160002054905090565b61128a611466565b73ffffffffffffffffffffffffffffffffffffffff166112a8610fa0565b73ffffffffffffffffffffffffffffffffffffffff16146112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f590612bf7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561136e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136590612a77565b60405180910390fd5b611377816118b0565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114e183610d1c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611532826113fa565b611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890612af7565b60405180910390fd5b600061157c83610d1c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115eb57508373ffffffffffffffffffffffffffffffffffffffff166115d3846106e3565b73ffffffffffffffffffffffffffffffffffffffff16145b806115fc57506115fb81856111ca565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661162582610d1c565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290612c17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e290612ab7565b60405180910390fd5b6116f6838383611cec565b61170160008261146e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117519190612e8b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a89190612daa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b611889828260405180602001604052806000815250611cf1565b5050565b60c881148061189d57506105a081145b156118ad576118ac600861137a565b5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc90612ad7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad691906129fa565b60405180910390a3505050565b611aee848484611605565b611afa84848484611d4c565b611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3090612a57565b60405180910390fd5b50505050565b60606000821415611b87576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ce7565b600082905060005b60008214611bb9578080611ba290612fd8565b915050600a82611bb29190612e00565b9150611b8f565b60008167ffffffffffffffff811115611bfb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c2d5781602001600182028036833780820191505090505b5090505b60008514611ce057600182611c469190612e8b565b9150600a85611c559190613021565b6030611c619190612daa565b60f81b818381518110611c9d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cd99190612e00565b9450611c31565b8093505050505b919050565b505050565b611cfb8383611ee3565b611d086000848484611d4c565b611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e90612a57565b60405180910390fd5b505050565b6000611d6d8473ffffffffffffffffffffffffffffffffffffffff166120b1565b15611ed6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d96611466565b8786866040518563ffffffff1660e01b8152600401611db8949392919061298c565b602060405180830381600087803b158015611dd257600080fd5b505af1925050508015611e0357506040513d601f19601f82011682018060405250810190611e009190612470565b60015b611e86573d8060008114611e33576040519150601f19603f3d011682016040523d82523d6000602084013e611e38565b606091505b50600081511415611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7590612a57565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611edb565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a90612bb7565b60405180910390fd5b611f5c816113fa565b15611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390612a97565b60405180910390fd5b611fa860008383611cec565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ff89190612daa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546120d090612f75565b90600052602060002090601f0160209004810192826120f25760008555612139565b82601f1061210b57805160ff1916838001178555612139565b82800160010185558215612139579182015b8281111561213857825182559160200191906001019061211d565b5b509050612146919061214a565b5090565b5b8082111561216357600081600090555060010161214b565b5090565b600061217a61217584612cb7565b612c92565b90508281526020810184848401111561219257600080fd5b61219d848285612f33565b509392505050565b60006121b86121b384612ce8565b612c92565b9050828152602081018484840111156121d057600080fd5b6121db848285612f33565b509392505050565b6000813590506121f2816135a3565b92915050565b600081359050612207816135ba565b92915050565b60008135905061221c816135d1565b92915050565b600081519050612231816135d1565b92915050565b600082601f83011261224857600080fd5b8135612258848260208601612167565b91505092915050565b600082601f83011261227257600080fd5b81356122828482602086016121a5565b91505092915050565b60008135905061229a816135e8565b92915050565b6000602082840312156122b257600080fd5b60006122c0848285016121e3565b91505092915050565b600080604083850312156122dc57600080fd5b60006122ea858286016121e3565b92505060206122fb858286016121e3565b9150509250929050565b60008060006060848603121561231a57600080fd5b6000612328868287016121e3565b9350506020612339868287016121e3565b925050604061234a8682870161228b565b9150509250925092565b6000806000806080858703121561236a57600080fd5b6000612378878288016121e3565b9450506020612389878288016121e3565b935050604061239a8782880161228b565b925050606085013567ffffffffffffffff8111156123b757600080fd5b6123c387828801612237565b91505092959194509250565b600080604083850312156123e257600080fd5b60006123f0858286016121e3565b9250506020612401858286016121f8565b9150509250929050565b6000806040838503121561241e57600080fd5b600061242c858286016121e3565b925050602061243d8582860161228b565b9150509250929050565b60006020828403121561245957600080fd5b60006124678482850161220d565b91505092915050565b60006020828403121561248257600080fd5b600061249084828501612222565b91505092915050565b6000602082840312156124ab57600080fd5b600082013567ffffffffffffffff8111156124c557600080fd5b6124d184828501612261565b91505092915050565b6000602082840312156124ec57600080fd5b60006124fa8482850161228b565b91505092915050565b600061250f838361292f565b60208301905092915050565b61252481612ebf565b82525050565b600061253582612d3e565b61253f8185612d6c565b935061254a83612d19565b8060005b8381101561257b5781516125628882612503565b975061256d83612d5f565b92505060018101905061254e565b5085935050505092915050565b61259181612ed1565b82525050565b60006125a282612d49565b6125ac8185612d7d565b93506125bc818560208601612f42565b6125c58161310e565b840191505092915050565b60006125db82612d54565b6125e58185612d8e565b93506125f5818560208601612f42565b6125fe8161310e565b840191505092915050565b600061261482612d54565b61261e8185612d9f565b935061262e818560208601612f42565b80840191505092915050565b6000815461264781612f75565b6126518186612d9f565b9450600182166000811461266c576001811461267d576126b0565b60ff198316865281860193506126b0565b61268685612d29565b60005b838110156126a857815481890152600182019150602081019050612689565b838801955050505b50505092915050565b60006126c6601683612d8e565b91506126d18261311f565b602082019050919050565b60006126e9603283612d8e565b91506126f482613148565b604082019050919050565b600061270c602683612d8e565b915061271782613197565b604082019050919050565b600061272f601c83612d8e565b915061273a826131e6565b602082019050919050565b6000612752602483612d8e565b915061275d8261320f565b604082019050919050565b6000612775601983612d8e565b91506127808261325e565b602082019050919050565b6000612798602c83612d8e565b91506127a382613287565b604082019050919050565b60006127bb601283612d8e565b91506127c6826132d6565b602082019050919050565b60006127de603883612d8e565b91506127e9826132ff565b604082019050919050565b6000612801602a83612d8e565b915061280c8261334e565b604082019050919050565b6000612824602983612d8e565b915061282f8261339d565b604082019050919050565b6000612847601283612d8e565b9150612852826133ec565b602082019050919050565b600061286a602083612d8e565b915061287582613415565b602082019050919050565b600061288d602c83612d8e565b91506128988261343e565b604082019050919050565b60006128b0602083612d8e565b91506128bb8261348d565b602082019050919050565b60006128d3602983612d8e565b91506128de826134b6565b604082019050919050565b60006128f6602183612d8e565b915061290182613505565b604082019050919050565b6000612919603183612d8e565b915061292482613554565b604082019050919050565b61293881612f29565b82525050565b61294781612f29565b82525050565b6000612959828561263a565b91506129658284612609565b91508190509392505050565b6000602082019050612986600083018461251b565b92915050565b60006080820190506129a1600083018761251b565b6129ae602083018661251b565b6129bb604083018561293e565b81810360608301526129cd8184612597565b905095945050505050565b600060208201905081810360008301526129f2818461252a565b905092915050565b6000602082019050612a0f6000830184612588565b92915050565b60006020820190508181036000830152612a2f81846125d0565b905092915050565b60006020820190508181036000830152612a50816126b9565b9050919050565b60006020820190508181036000830152612a70816126dc565b9050919050565b60006020820190508181036000830152612a90816126ff565b9050919050565b60006020820190508181036000830152612ab081612722565b9050919050565b60006020820190508181036000830152612ad081612745565b9050919050565b60006020820190508181036000830152612af081612768565b9050919050565b60006020820190508181036000830152612b108161278b565b9050919050565b60006020820190508181036000830152612b30816127ae565b9050919050565b60006020820190508181036000830152612b50816127d1565b9050919050565b60006020820190508181036000830152612b70816127f4565b9050919050565b60006020820190508181036000830152612b9081612817565b9050919050565b60006020820190508181036000830152612bb08161283a565b9050919050565b60006020820190508181036000830152612bd08161285d565b9050919050565b60006020820190508181036000830152612bf081612880565b9050919050565b60006020820190508181036000830152612c10816128a3565b9050919050565b60006020820190508181036000830152612c30816128c6565b9050919050565b60006020820190508181036000830152612c50816128e9565b9050919050565b60006020820190508181036000830152612c708161290c565b9050919050565b6000602082019050612c8c600083018461293e565b92915050565b6000612c9c612cad565b9050612ca88282612fa7565b919050565b6000604051905090565b600067ffffffffffffffff821115612cd257612cd16130df565b5b612cdb8261310e565b9050602081019050919050565b600067ffffffffffffffff821115612d0357612d026130df565b5b612d0c8261310e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612db582612f29565b9150612dc083612f29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612df557612df4613052565b5b828201905092915050565b6000612e0b82612f29565b9150612e1683612f29565b925082612e2657612e25613081565b5b828204905092915050565b6000612e3c82612f29565b9150612e4783612f29565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e8057612e7f613052565b5b828202905092915050565b6000612e9682612f29565b9150612ea183612f29565b925082821015612eb457612eb3613052565b5b828203905092915050565b6000612eca82612f09565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f60578082015181840152602081019050612f45565b83811115612f6f576000848401525b50505050565b60006002820490506001821680612f8d57607f821691505b60208210811415612fa157612fa06130b0565b5b50919050565b612fb08261310e565b810181811067ffffffffffffffff82111715612fcf57612fce6130df565b5b80604052505050565b6000612fe382612f29565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561301657613015613052565b5b600182019050919050565b600061302c82612f29565b915061303783612f29565b92508261304757613046613081565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45786365656473206d6178206d696e74206c696d697400000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6135ac81612ebf565b81146135b757600080fd5b50565b6135c381612ed1565b81146135ce57600080fd5b50565b6135da81612edd565b81146135e557600080fd5b50565b6135f181612f29565b81146135fc57600080fd5b5056fea264697066735822122060465685bf7b904233f94c30e31084cde59fae326bdfebc1b717e194327f33a664736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50324343794252753958336f7143743842646b726b714831754b6f744442386539506f5278543447444b43552f00000000000000000000
Deployed Bytecode
0x6080604052600436106101405760003560e01c806370a08231116100b6578063a22cb4651161006f578063a22cb4651461044f578063b88d4fde14610478578063c87b56dd146104a1578063e985e9c5146104de578063eb91d37e1461051b578063f2fde38b1461054657610140565b806370a0823114610351578063714c53981461038e578063715018a6146103b95780638da5cb5b146103d0578063938e3d7b146103fb57806395d89b411461042457610140565b806337929eb41161010857806337929eb41461023c57806342842e0e14610267578063449a52f81461029057806355f804b3146102c057806356189236146102e95780636352211e1461031457610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806323b872dd14610213575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190612447565b61056f565b60405161017991906129fa565b60405180910390f35b34801561018e57600080fd5b50610197610651565b6040516101a49190612a15565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf91906124da565b6106e3565b6040516101e19190612971565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c919061240b565b610768565b005b34801561021f57600080fd5b5061023a60048036038101906102359190612305565b610880565b005b34801561024857600080fd5b506102516108e0565b60405161025e9190612a15565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190612305565b610972565b005b6102aa60048036038101906102a5919061240b565b610992565b6040516102b791906129d8565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612499565b610c75565b005b3480156102f557600080fd5b506102fe610d0b565b60405161030b9190612c77565b60405180910390f35b34801561032057600080fd5b5061033b600480360381019061033691906124da565b610d1c565b6040516103489190612971565b60405180910390f35b34801561035d57600080fd5b50610378600480360381019061037391906122a0565b610dce565b6040516103859190612c77565b60405180910390f35b34801561039a57600080fd5b506103a3610e86565b6040516103b09190612a15565b60405180910390f35b3480156103c557600080fd5b506103ce610f18565b005b3480156103dc57600080fd5b506103e5610fa0565b6040516103f29190612971565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d9190612499565b610fca565b005b34801561043057600080fd5b50610439611060565b6040516104469190612a15565b60405180910390f35b34801561045b57600080fd5b50610476600480360381019061047191906123cf565b6110f2565b005b34801561048457600080fd5b5061049f600480360381019061049a9190612354565b611108565b005b3480156104ad57600080fd5b506104c860048036038101906104c391906124da565b61116a565b6040516104d59190612a15565b60405180910390f35b3480156104ea57600080fd5b50610505600480360381019061050091906122c9565b6111ca565b60405161051291906129fa565b60405180910390f35b34801561052757600080fd5b5061053061125e565b60405161053d9190612c77565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906122a0565b611282565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061064a575061064982611390565b5b9050919050565b60606000805461066090612f75565b80601f016020809104026020016040519081016040528092919081815260200182805461068c90612f75565b80156106d95780601f106106ae576101008083540402835291602001916106d9565b820191906000526020600020905b8154815290600101906020018083116106bc57829003601f168201915b5050505050905090565b60006106ee826113fa565b61072d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072490612bd7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077382610d1c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107db90612c37565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610803611466565b73ffffffffffffffffffffffffffffffffffffffff16148061083257506108318161082c611466565b6111ca565b5b610871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086890612b37565b60405180910390fd5b61087b838361146e565b505050565b61089161088b611466565b82611527565b6108d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c790612c57565b60405180910390fd5b6108db838383611605565b505050565b6060600a80546108ef90612f75565b80601f016020809104026020016040519081016040528092919081815260200182805461091b90612f75565b80156109685780601f1061093d57610100808354040283529160200191610968565b820191906000526020600020905b81548152906001019060200180831161094b57829003601f168201915b5050505050905090565b61098d83838360405180602001604052806000815250611108565b505050565b6060610960826109a26007611861565b6109ac9190612daa565b106109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390612b97565b60405180910390fd5b600060016109fa6008611861565b14610a0657600a610a09565b60025b60ff169050610a16610fa0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610a6257508083610a5586610dce565b610a5f9190612daa565b11155b610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9890612a37565b60405180910390fd5b6000600b6000610ab16008611861565b8152602001908152602001600020549050610aca610fa0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148015610b0d57506001610b0b6008611861565b145b15610b1757600090505b8381610b239190612e31565b341015610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90612b17565b60405180910390fd5b60008467ffffffffffffffff811115610ba7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610bd55781602001602082028036833780820191505090505b50905060005b85811015610c6857610bed600761137a565b6000610bf96007611861565b9050610c05888261186f565b610c0e8161188d565b80838381518110610c48577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050508080610c6090612fd8565b915050610bdb565b5080935050505092915050565b610c7d611466565b73ffffffffffffffffffffffffffffffffffffffff16610c9b610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890612bf7565b60405180910390fd5b8060099080519060200190610d079291906120c4565b5050565b6000610d176007611861565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc90612b77565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690612b57565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060098054610e9590612f75565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec190612f75565b8015610f0e5780601f10610ee357610100808354040283529160200191610f0e565b820191906000526020600020905b815481529060010190602001808311610ef157829003601f168201915b5050505050905090565b610f20611466565b73ffffffffffffffffffffffffffffffffffffffff16610f3e610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b90612bf7565b60405180910390fd5b610f9e60006118b0565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fd2611466565b73ffffffffffffffffffffffffffffffffffffffff16610ff0610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90612bf7565b60405180910390fd5b80600a908051906020019061105c9291906120c4565b5050565b60606001805461106f90612f75565b80601f016020809104026020016040519081016040528092919081815260200182805461109b90612f75565b80156110e85780601f106110bd576101008083540402835291602001916110e8565b820191906000526020600020905b8154815290600101906020018083116110cb57829003601f168201915b5050505050905090565b6111046110fd611466565b8383611976565b5050565b611119611113611466565b83611527565b611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90612c57565b60405180910390fd5b61116484848484611ae3565b50505050565b606060006009805461117b90612f75565b90501161119757604051806020016040528060008152506111c3565b60096111a283611b3f565b6040516020016111b392919061294d565b6040516020818303038152906040525b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600b600061126e6008611861565b815260200190815260200160002054905090565b61128a611466565b73ffffffffffffffffffffffffffffffffffffffff166112a8610fa0565b73ffffffffffffffffffffffffffffffffffffffff16146112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f590612bf7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561136e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136590612a77565b60405180910390fd5b611377816118b0565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114e183610d1c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611532826113fa565b611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890612af7565b60405180910390fd5b600061157c83610d1c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115eb57508373ffffffffffffffffffffffffffffffffffffffff166115d3846106e3565b73ffffffffffffffffffffffffffffffffffffffff16145b806115fc57506115fb81856111ca565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661162582610d1c565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290612c17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e290612ab7565b60405180910390fd5b6116f6838383611cec565b61170160008261146e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117519190612e8b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a89190612daa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b611889828260405180602001604052806000815250611cf1565b5050565b60c881148061189d57506105a081145b156118ad576118ac600861137a565b5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc90612ad7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad691906129fa565b60405180910390a3505050565b611aee848484611605565b611afa84848484611d4c565b611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3090612a57565b60405180910390fd5b50505050565b60606000821415611b87576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ce7565b600082905060005b60008214611bb9578080611ba290612fd8565b915050600a82611bb29190612e00565b9150611b8f565b60008167ffffffffffffffff811115611bfb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c2d5781602001600182028036833780820191505090505b5090505b60008514611ce057600182611c469190612e8b565b9150600a85611c559190613021565b6030611c619190612daa565b60f81b818381518110611c9d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cd99190612e00565b9450611c31565b8093505050505b919050565b505050565b611cfb8383611ee3565b611d086000848484611d4c565b611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e90612a57565b60405180910390fd5b505050565b6000611d6d8473ffffffffffffffffffffffffffffffffffffffff166120b1565b15611ed6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d96611466565b8786866040518563ffffffff1660e01b8152600401611db8949392919061298c565b602060405180830381600087803b158015611dd257600080fd5b505af1925050508015611e0357506040513d601f19601f82011682018060405250810190611e009190612470565b60015b611e86573d8060008114611e33576040519150601f19603f3d011682016040523d82523d6000602084013e611e38565b606091505b50600081511415611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7590612a57565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611edb565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a90612bb7565b60405180910390fd5b611f5c816113fa565b15611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390612a97565b60405180910390fd5b611fa860008383611cec565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ff89190612daa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546120d090612f75565b90600052602060002090601f0160209004810192826120f25760008555612139565b82601f1061210b57805160ff1916838001178555612139565b82800160010185558215612139579182015b8281111561213857825182559160200191906001019061211d565b5b509050612146919061214a565b5090565b5b8082111561216357600081600090555060010161214b565b5090565b600061217a61217584612cb7565b612c92565b90508281526020810184848401111561219257600080fd5b61219d848285612f33565b509392505050565b60006121b86121b384612ce8565b612c92565b9050828152602081018484840111156121d057600080fd5b6121db848285612f33565b509392505050565b6000813590506121f2816135a3565b92915050565b600081359050612207816135ba565b92915050565b60008135905061221c816135d1565b92915050565b600081519050612231816135d1565b92915050565b600082601f83011261224857600080fd5b8135612258848260208601612167565b91505092915050565b600082601f83011261227257600080fd5b81356122828482602086016121a5565b91505092915050565b60008135905061229a816135e8565b92915050565b6000602082840312156122b257600080fd5b60006122c0848285016121e3565b91505092915050565b600080604083850312156122dc57600080fd5b60006122ea858286016121e3565b92505060206122fb858286016121e3565b9150509250929050565b60008060006060848603121561231a57600080fd5b6000612328868287016121e3565b9350506020612339868287016121e3565b925050604061234a8682870161228b565b9150509250925092565b6000806000806080858703121561236a57600080fd5b6000612378878288016121e3565b9450506020612389878288016121e3565b935050604061239a8782880161228b565b925050606085013567ffffffffffffffff8111156123b757600080fd5b6123c387828801612237565b91505092959194509250565b600080604083850312156123e257600080fd5b60006123f0858286016121e3565b9250506020612401858286016121f8565b9150509250929050565b6000806040838503121561241e57600080fd5b600061242c858286016121e3565b925050602061243d8582860161228b565b9150509250929050565b60006020828403121561245957600080fd5b60006124678482850161220d565b91505092915050565b60006020828403121561248257600080fd5b600061249084828501612222565b91505092915050565b6000602082840312156124ab57600080fd5b600082013567ffffffffffffffff8111156124c557600080fd5b6124d184828501612261565b91505092915050565b6000602082840312156124ec57600080fd5b60006124fa8482850161228b565b91505092915050565b600061250f838361292f565b60208301905092915050565b61252481612ebf565b82525050565b600061253582612d3e565b61253f8185612d6c565b935061254a83612d19565b8060005b8381101561257b5781516125628882612503565b975061256d83612d5f565b92505060018101905061254e565b5085935050505092915050565b61259181612ed1565b82525050565b60006125a282612d49565b6125ac8185612d7d565b93506125bc818560208601612f42565b6125c58161310e565b840191505092915050565b60006125db82612d54565b6125e58185612d8e565b93506125f5818560208601612f42565b6125fe8161310e565b840191505092915050565b600061261482612d54565b61261e8185612d9f565b935061262e818560208601612f42565b80840191505092915050565b6000815461264781612f75565b6126518186612d9f565b9450600182166000811461266c576001811461267d576126b0565b60ff198316865281860193506126b0565b61268685612d29565b60005b838110156126a857815481890152600182019150602081019050612689565b838801955050505b50505092915050565b60006126c6601683612d8e565b91506126d18261311f565b602082019050919050565b60006126e9603283612d8e565b91506126f482613148565b604082019050919050565b600061270c602683612d8e565b915061271782613197565b604082019050919050565b600061272f601c83612d8e565b915061273a826131e6565b602082019050919050565b6000612752602483612d8e565b915061275d8261320f565b604082019050919050565b6000612775601983612d8e565b91506127808261325e565b602082019050919050565b6000612798602c83612d8e565b91506127a382613287565b604082019050919050565b60006127bb601283612d8e565b91506127c6826132d6565b602082019050919050565b60006127de603883612d8e565b91506127e9826132ff565b604082019050919050565b6000612801602a83612d8e565b915061280c8261334e565b604082019050919050565b6000612824602983612d8e565b915061282f8261339d565b604082019050919050565b6000612847601283612d8e565b9150612852826133ec565b602082019050919050565b600061286a602083612d8e565b915061287582613415565b602082019050919050565b600061288d602c83612d8e565b91506128988261343e565b604082019050919050565b60006128b0602083612d8e565b91506128bb8261348d565b602082019050919050565b60006128d3602983612d8e565b91506128de826134b6565b604082019050919050565b60006128f6602183612d8e565b915061290182613505565b604082019050919050565b6000612919603183612d8e565b915061292482613554565b604082019050919050565b61293881612f29565b82525050565b61294781612f29565b82525050565b6000612959828561263a565b91506129658284612609565b91508190509392505050565b6000602082019050612986600083018461251b565b92915050565b60006080820190506129a1600083018761251b565b6129ae602083018661251b565b6129bb604083018561293e565b81810360608301526129cd8184612597565b905095945050505050565b600060208201905081810360008301526129f2818461252a565b905092915050565b6000602082019050612a0f6000830184612588565b92915050565b60006020820190508181036000830152612a2f81846125d0565b905092915050565b60006020820190508181036000830152612a50816126b9565b9050919050565b60006020820190508181036000830152612a70816126dc565b9050919050565b60006020820190508181036000830152612a90816126ff565b9050919050565b60006020820190508181036000830152612ab081612722565b9050919050565b60006020820190508181036000830152612ad081612745565b9050919050565b60006020820190508181036000830152612af081612768565b9050919050565b60006020820190508181036000830152612b108161278b565b9050919050565b60006020820190508181036000830152612b30816127ae565b9050919050565b60006020820190508181036000830152612b50816127d1565b9050919050565b60006020820190508181036000830152612b70816127f4565b9050919050565b60006020820190508181036000830152612b9081612817565b9050919050565b60006020820190508181036000830152612bb08161283a565b9050919050565b60006020820190508181036000830152612bd08161285d565b9050919050565b60006020820190508181036000830152612bf081612880565b9050919050565b60006020820190508181036000830152612c10816128a3565b9050919050565b60006020820190508181036000830152612c30816128c6565b9050919050565b60006020820190508181036000830152612c50816128e9565b9050919050565b60006020820190508181036000830152612c708161290c565b9050919050565b6000602082019050612c8c600083018461293e565b92915050565b6000612c9c612cad565b9050612ca88282612fa7565b919050565b6000604051905090565b600067ffffffffffffffff821115612cd257612cd16130df565b5b612cdb8261310e565b9050602081019050919050565b600067ffffffffffffffff821115612d0357612d026130df565b5b612d0c8261310e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612db582612f29565b9150612dc083612f29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612df557612df4613052565b5b828201905092915050565b6000612e0b82612f29565b9150612e1683612f29565b925082612e2657612e25613081565b5b828204905092915050565b6000612e3c82612f29565b9150612e4783612f29565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e8057612e7f613052565b5b828202905092915050565b6000612e9682612f29565b9150612ea183612f29565b925082821015612eb457612eb3613052565b5b828203905092915050565b6000612eca82612f09565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f60578082015181840152602081019050612f45565b83811115612f6f576000848401525b50505050565b60006002820490506001821680612f8d57607f821691505b60208210811415612fa157612fa06130b0565b5b50919050565b612fb08261310e565b810181811067ffffffffffffffff82111715612fcf57612fce6130df565b5b80604052505050565b6000612fe382612f29565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561301657613015613052565b5b600182019050919050565b600061302c82612f29565b915061303783612f29565b92508261304757613046613081565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45786365656473206d6178206d696e74206c696d697400000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6135ac81612ebf565b81146135b757600080fd5b50565b6135c381612ed1565b81146135ce57600080fd5b50565b6135da81612edd565b81146135e557600080fd5b50565b6135f181612f29565b81146135fc57600080fd5b5056fea264697066735822122060465685bf7b904233f94c30e31084cde59fae326bdfebc1b717e194327f33a664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50324343794252753958336f7143743842646b726b714831754b6f744442386539506f5278543447444b43552f00000000000000000000
-----Decoded View---------------
Arg [0] : baseUri (string): ipfs://QmP2CCyBRu9X3oqCt8BdkrkqH1uKotDB8e9PoRxT4GDKCU/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d50324343794252753958336f7143743842646b726b7148
Arg [3] : 31754b6f744442386539506f5278543447444b43552f00000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.