ETH Price: $1,804.47 (-4.15%)

CryptoSimeji (CryptoSimeji)
 

Overview

TokenID

1444

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CryptoSimeji is a Kaomoji and community-driven NFT collection of 10,000 pixel-style mushrooms PFP created by Simeji.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SimejiNFT

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion
File 1 of 21 : SimejiNFT.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: UNLICENCED
pragma solidity 0.8.10;
import "./ERC721Common.sol";
import "./SimejiSeller.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract SimejiNFT is ERC721Common, SimejiSeller {
using Strings for uint256;
struct OperateConfig {
uint256 whiteListSaleBegin;
uint256 whiteListSaleEnd;
bytes32 merkleRoot;
uint256 publicSaleBegin;
}
OperateConfig public operateConfig;
constructor(string memory name, string memory symbol)
ERC721Common(name, symbol)
SimejiSeller(
SimejiSeller.SellerConfig({
totalInventory: 10000,
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 21 : SimejiSeller.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
import "./Monotonic.sol";
import "./OwnerPausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
abstract contract SimejiSeller is OwnerPausable, ReentrancyGuard {
using Address for address payable;
using Monotonic for Monotonic.Increaser;
using Strings for uint256;
mapping(address => uint256) private _bought;
struct SellerConfig {
uint256 totalInventory;
uint248 airdropQuota;
uint248 reserveQuota;
bool reserveFreeQuota;
bool lockFreeQuota;
bool lockTotalInventory;
uint256 maxPerAddress;
uint256 maxPerTx;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 21 : OwnerPausable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
contract OwnerPausable is Ownable, Pausable {
function pause() public onlyOwner {
Pausable._pause();
}
function unpause() public onlyOwner {
Pausable._unpause();
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 21 : OpenSeaGasFreeListing.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier)
pragma solidity >=0.8.0 <0.9.0;
// Inspired by BaseOpenSea by Simon Fremaux (@dievardump) but without the need
// to pass specific addresses depending on deployment network.
// https://gist.github.com/dievardump/483eb43bc6ed30b14f01e01842e3339b/
/// @notice Library to achieve gas-free listings on OpenSea.
library OpenSeaGasFreeListing {
/**
@notice Returns whether the operator is an OpenSea proxy for the owner, thus
allowing it to list without the token owner paying gas.
@dev ERC{721,1155}.isApprovedForAll should be overriden to also check if
this function returns true.
*/
function isApprovedForAll(address owner, address operator)
internal
view
returns (bool)
{
ProxyRegistry registry;
assembly {
switch chainid()
case 1 {
// mainnet
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 21 : Monotonic.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier)
pragma solidity >=0.8.0 <0.9.0;
/**
@notice Provides monotonic increasing and decreasing values, similar to
OpenZeppelin's Counter but (a) limited in direction, and (b) allowing for steps
> 1.
*/
library Monotonic {
/**
@notice Holds a value that can only increase.
@dev The internal value MUST NOT be accessed directly. Instead use current()
and add().
*/
struct Increaser {
uint256 value;
}
/// @notice Returns the current value of the Increaser.
function current(Increaser storage incr) internal view returns (uint256) {
return incr.value;
}
/// @notice Adds x to the Increaser's value.
function add(Increaser storage incr, uint256 x) internal {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 21 : ERC721Common.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
import "./OpenSeaGasFreeListing.sol";
import "./OwnerPausable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
contract ERC721Common is Context, ERC721Pausable, OwnerPausable {
constructor(string memory name, string memory symbol)
ERC721(name, symbol)
{}
modifier tokenExists(uint256 tokenId) {
require(ERC721._exists(tokenId), "ERC721Common: Token doesn't exist");
_;
}
modifier onlyApprovedOrOwner(uint256 tokenId) {
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721Common: Not approved nor owner"
);
_;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 21 : Math.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 21 : IERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 21 : ERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 10 of 21 : MerkleProof.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*
* WARNING: You should avoid using leaf values that are 64 bytes long prior to
* hashing, or use a hash function other than keccak256 for hashing leaves.
* This is because the concatenation of a sorted pair of internal nodes in
* the merkle tree could be reinterpreted as a leaf value.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 11 of 21 : Strings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 12 of 21 : Context.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 13 of 21 : Address.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 14 of 21 : IERC721Metadata.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 15 of 21 : ERC721Pausable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Pausable.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "../../../security/Pausable.sol";
/**
* @dev ERC721 token with pausable token transfers, minting and burning.
*
* Useful for scenarios such as preventing trades until the end of an evaluation
* period, or having an emergency switch for freezing all token transfers in the
* event of a large bug.
*/
abstract contract ERC721Pausable is ERC721, Pausable {
/**
* @dev See {ERC721-_beforeTokenTransfer}.
*
* Requirements:
*
* - the contract must not be paused.
*/
function _beforeTokenTransfer(
address from,
address to,
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 16 of 21 : IERC721Receiver.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 17 of 21 : IERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 18 of 21 : ERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 19 of 21 : ReentrancyGuard.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// 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
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 20 of 21 : Pausable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 21 of 21 : Ownable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"remappings": [],
"optimizer": {
"enabled": true,
"runs": 1
},
"evmVersion": "london",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Refund","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"numPurchased","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Revenue","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"requested","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"hadBought","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operateConfig","outputs":[{"internalType":"uint256","name":"whiteListSaleBegin","type":"uint256"},{"internalType":"uint256","name":"whiteListSaleEnd","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"publicSaleBegin","type":"uint256"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"requested","type":"uint256"}],"name":"publicBuy","outputs":[],"stateMutability":"nonpayable","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":[],"name":"sellerConfig","outputs":[{"internalType":"uint256","name":"totalInventory","type":"uint256"},{"internalType":"uint248","name":"airdropQuota","type":"uint248"},{"internalType":"uint248","name":"reserveQuota","type":"uint248"},{"internalType":"bool","name":"reserveFreeQuota","type":"bool"},{"internalType":"bool","name":"lockFreeQuota","type":"bool"},{"internalType":"bool","name":"lockTotalInventory","type":"bool"},{"internalType":"uint256","name":"maxPerAddress","type":"uint256"},{"internalType":"uint256","name":"maxPerTx","type":"uint256"}],"stateMutability":"view","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":"baseTokenURI_","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"whiteListSaleBegin","type":"uint256"},{"internalType":"uint256","name":"whiteListSaleEnd","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"publicSaleBegin","type":"uint256"}],"internalType":"struct SimejiNFT.OperateConfig","name":"config","type":"tuple"}],"name":"setOperateConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSold","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"requested","type":"uint256"},{"internalType":"bytes32[]","name":"signature","type":"bytes32[]"}],"name":"whitelistBuy","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002a3d38038062002a3d83398101604081905262000034916200038a565b6040805161010081018252612710815261012c60208083019190915260009282018390526001606083018190526080830181905260a0830181905260c0830181905260e0830152845191928592859284928492620000959285019062000217565b508051620000ab90600190602084019062000217565b505050620000c8620000c2620001c160201b60201c565b620001c5565b50506006805460ff60a01b1916905560016007558051600955602080820151600a80546001600160f81b039283167fff000000000000000000000000000000000000000000000000000000000000009091161790556040808401516060808601511515600160f81b029190931617600b55608080850151600c805460a088015115156101000261ff00199315159390931661ffff199091161791909117905560c0850151600d5560e090940151600e558051938401815263630c1da0808552636310121f938501849052600091850182905263631012209490920184905260129190915560139190915560145560155550620004319050565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200022590620003f4565b90600052602060002090601f01602090048101928262000249576000855562000294565b82601f106200026457805160ff191683800117855562000294565b8280016001018555821562000294579182015b828111156200029457825182559160200191906001019062000277565b50620002a2929150620002a6565b5090565b5b80821115620002a25760008155600101620002a7565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002e557600080fd5b81516001600160401b0380821115620003025762000302620002bd565b604051601f8301601f19908116603f011681019082821181831017156200032d576200032d620002bd565b816040528381526020925086838588010111156200034a57600080fd5b600091505b838210156200036e57858201830151818301840152908201906200034f565b83821115620003805760008385830101525b9695505050505050565b600080604083850312156200039e57600080fd5b82516001600160401b0380821115620003b657600080fd5b620003c486838701620002d3565b93506020850151915080821115620003db57600080fd5b50620003ea85828601620002d3565b9150509250929050565b600181811c908216806200040957607f821691505b602082108114156200042b57634e487b7160e01b600052602260045260246000fd5b50919050565b6125fc80620004416000396000f3fe608060405234801561001057600080fd5b50600436106101755760003560e01c806301ffc9a71461017a57806306fdde03146101a2578063081812fc146101b7578063095ea7b3146101d757806318160ddd146101ec5780631a3936311461020257806323b872dd1461023857806330176e131461024b5780633f4ba83a1461025e57806342842e0e146102665780635c975abb146102795780636352211e1461028157806368124a6a146102945780636e978ea7146102a757806370a08231146102ba578063715018a6146102cd5780638456cb59146102d55780638ba4cc3c146102dd5780638da5cb5b146102f05780639106d7ba146102f857806395d89b41146103005780639939c90a14610308578063a22cb4651461031b578063b76a0df41461032e578063b88d4fde14610341578063bb69b7ef14610354578063c0188b6b146103e5578063c87b56dd146103f8578063d547cfb71461040b578063e985e9c514610413578063f2fde38b14610426575b600080fd5b61018d610188366004611da1565b610439565b60405190151581526020015b60405180910390f35b6101aa61044a565b6040516101999190611e16565b6101ca6101c5366004611e29565b6104dc565b6040516101999190611e42565b6101ea6101e5366004611e6b565b610569565b005b6101f461067a565b604051908152602001610199565b6012546013546014546015546102189392919084565b604080519485526020850193909352918301526060820152608001610199565b6101ea610246366004611e97565b610689565b6101ea610259366004611f63565b6106ba565b6101ea610700565b6101ea610274366004611e97565b610739565b61018d610754565b6101ca61028f366004611e29565b610764565b6101ea6102a2366004611ff6565b6107db565b61018d6102b5366004612041565b6108a7565b6101f46102c8366004612041565b6108b2565b6101ea610939565b6101ea610972565b6101ea6102eb366004611e6b565b6109a9565b6101ca6109e2565b6101f46109f1565b6101aa6109fc565b6101ea61031636600461205e565b610a0b565b6101ea6103293660046120c3565b610a58565b61018d61033c366004612101565b610a63565b6101ea61034f36600461213c565b610af6565b600954600a54600b54600c54600d54600e5461039a95946001600160f81b03908116949081169360ff600160f81b90920482169381831693610100909204909216919088565b604080519889526001600160f81b0397881660208a01529590961694870194909452911515606086015215156080850152151560a084015260c083015260e082015261010001610199565b6101ea6103f3366004611e29565b610b2e565b6101aa610406366004611e29565b610b97565b6101aa610c2d565b61018d6104213660046121bb565b610cbb565b6101ea610434366004612041565b610cf6565b600061044482610d93565b92915050565b606060008054610459906121e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610485906121e9565b80156104d25780601f106104a7576101008083540402835291602001916104d2565b820191906000526020600020905b8154815290600101906020018083116104b557829003601f168201915b5050505050905090565b60006104e782610de3565b61054d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061057482610764565b9050806001600160a01b0316836001600160a01b031614156105e25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610544565b336001600160a01b03821614806105fe57506105fe8133610cbb565b61066b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b6064820152608401610544565b6106758383610e00565b505050565b60006106846109f1565b905090565b6106933382610e6e565b6106af5760405162461bcd60e51b81526004016105449061221e565b610675838383610f38565b336106c36109e2565b6001600160a01b0316146106e95760405162461bcd60e51b81526004016105449061226f565b80516106fc906016906020840190611cf2565b5050565b336107096109e2565b6001600160a01b03161461072f5760405162461bcd60e51b81526004016105449061226f565b6107376110cd565b565b61067583838360405180602001604052806000815250610af6565b600654600160a01b900460ff1690565b6000818152600260205260408120546001600160a01b0316806104445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610544565b60125442108015906107ef57506013544211155b6108495760405162461bcd60e51b815260206004820152602560248201527f53696d656a694e46543a205768697465206c6973742073616c65206e6f742073604482015264746172742160d81b6064820152608401610544565b610854338383610a63565b61089d5760405162461bcd60e51b815260206004820152601a60248201527918d85b1b195c881a5cc81b9bdd081a5b881dda1a5d195b1a5cdd60321b6044820152606401610544565b610675338461115f565b60006104448261134d565b60006001600160a01b03821661091d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610544565b506001600160a01b031660009081526003602052604090205490565b336109426109e2565b6001600160a01b0316146109685760405162461bcd60e51b81526004016105449061226f565b6107376000611379565b3361097b6109e2565b6001600160a01b0316146109a15760405162461bcd60e51b81526004016105449061226f565b6107376113cb565b336109b26109e2565b6001600160a01b0316146109d85760405162461bcd60e51b81526004016105449061226f565b6106fc828261142b565b6006546001600160a01b031690565b6000610684600f5490565b606060018054610459906121e9565b33610a146109e2565b6001600160a01b031614610a3a5760405162461bcd60e51b81526004016105449061226f565b80516012556020810151601355604081015160145560600151601555565b6106fc3383836115d4565b601454600090610a7557506000610aef565b6040516001600160601b0319606086901b166020820152600090603401604051602081830303815290604052805190602001209050610aeb84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601454915084905061169f565b9150505b9392505050565b610b003383610e6e565b610b1c5760405162461bcd60e51b81526004016105449061221e565b610b28848484846116b5565b50505050565b601554421015610b8a5760405162461bcd60e51b815260206004820152602160248201527f53696d656a694e46543a205075626c69632073616c65206e6f742073746172746044820152602160f81b6064820152608401610544565b610b94338261115f565b50565b606081610ba381610de3565b610bf95760405162461bcd60e51b815260206004820152602160248201527f455243373231436f6d6d6f6e3a20546f6b656e20646f65736e277420657869736044820152601d60fa1b6064820152608401610544565b6016610c04846116e8565b604051602001610c159291906122c0565b60405160208183030381529060405291505b50919050565b60168054610c3a906121e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c66906121e9565b8015610cb35780601f10610c8857610100808354040283529160200191610cb3565b820191906000526020600020905b815481529060010190602001808311610c9657829003601f168201915b505050505081565b6001600160a01b03808316600090815260056020908152604080832093851683529290529081205460ff1680610aef5750610aef83836117e5565b33610cff6109e2565b6001600160a01b031614610d255760405162461bcd60e51b81526004016105449061226f565b6001600160a01b038116610d8a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610544565b610b9481611379565b60006001600160e01b031982166380ac58cd60e01b1480610dc457506001600160e01b03198216635b5e139f60e01b145b8061044457506301ffc9a760e01b6001600160e01b0319831614610444565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e3582610764565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610e7982610de3565b610eda5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610544565b6000610ee583610764565b9050806001600160a01b0316846001600160a01b03161480610f0c5750610f0c8185610cbb565b80610f305750836001600160a01b0316610f25846104dc565b6001600160a01b0316145b949350505050565b826001600160a01b0316610f4b82610764565b6001600160a01b031614610faf5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610544565b6001600160a01b0382166110115760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610544565b61101c8383836118bd565b611027600082610e00565b6001600160a01b0383166000908152600360205260408120805460019290611050908490612374565b90915550506001600160a01b038216600090815260036020526040812080546001929061107e90849061238b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716916000805160206125a783398151915291a4505050565b6110d5610754565b6111185760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610544565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516111559190611e42565b60405180910390a1565b600260075414156111b25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610544565b60026007556111bf610754565b156111dc5760405162461bcd60e51b8152600401610544906123a3565b600e54600990600090156111fd576111f88383600501546118c8565b6111ff565b825b6002830154909150600090600160f81b900460ff1661121f578254611254565b6002830154600184015461123f916001600160f81b0390811691166123cd565b8354611254916001600160f81b031690612374565b905061128c8261126360115490565b601054600f546112739190612374565b61127d9190612374565b6112879084612374565b6118c8565b9150600082116112ae5760405162461bcd60e51b8152600401610544906123f8565b600483015415611319576112e682866040518060400160405280600b81526020016a109d5e595c881b1a5b5a5d60aa1b8152506118de565b6001600160a01b03861660009081526008602052604081208054929450849290919061131390849061238b565b90915550505b611323858361194d565b61132e600f83611986565b8254600f54111561134157611341612428565b50506001600755505050565b6001600160a01b038116600090815260086020526040812054611371576000610444565b600192915050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6113d3610754565b156113f05760405162461bcd60e51b8152600401610544906123a3565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111483390565b336114346109e2565b6001600160a01b03161461145a5760405162461bcd60e51b81526004016105449061226f565b611462610754565b1561147f5760405162461bcd60e51b8152600401610544906123a3565b600b54600990600160f81b900460ff166114ec5760405162461bcd60e51b815260206004820152602860248201527f53696d656a6953656c6c65723a20726573657276654672656551756f7461206960448201526739903330b639b29760c11b6064820152608401610544565b60006114f760105490565b600183015461150f91906001600160f81b0316612374565b905061151b83826118c8565b9250600083116115795760405162461bcd60e51b8152602060048201526024808201527f53696d656a6953656c6c65723a2061697264726f702071756f746120657863656044820152631959195960e21b6064820152608401610544565b61159283611586600f5490565b84546112879190612374565b9250600083116115b45760405162461bcd60e51b8152600401610544906123f8565b6115be848461194d565b6115c9600f84611986565b610b28601084611986565b816001600160a01b0316836001600160a01b031614156116325760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610544565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000826116ac85846119a3565b14949350505050565b6116c0848484610f38565b6116cc84848484611a17565b610b285760405162461bcd60e51b81526004016105449061243e565b60608161170c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611736578061172081612490565b915061172f9050600a836124c1565b9150611710565b6000816001600160401b0381111561175057611750611ed8565b6040519080825280601f01601f19166020018201604052801561177a576020820181803683370190505b5090505b8415610f305761178f600183612374565b915061179c600a866124d5565b6117a790603061238b565b60f81b8183815181106117bc576117bc6124e9565b60200101906001600160f81b031916908160001a9053506117de600a866124c1565b945061177e565b60008046600181146117fe576004811461181a57611832565b73a5409ec958c83c3f309868babaca7c86dcb077c19150611832565b73f57b2c51ded3a29e6891aba85459d600256cf31791505b506001600160a01b03811615801590610f305750826001600160a01b0316816001600160a01b031663c4552791866040518263ffffffff1660e01b815260040161187c9190611e42565b602060405180830381865afa158015611899573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2591906124ff565b610675838383611b15565b60008183106118d75781610aef565b5090919050565b6001600160a01b038216600090815260086020526040812054600d54829161190591612374565b905080611943578260405160200161191d919061251c565b60408051601f198184030181529082905262461bcd60e51b825261054491600401611e16565b610aeb85826118c8565b60005b818110156106755761197483826119656109f1565b61196f919061238b565b611b7e565b8061197e81612490565b915050611950565b8082600001600082825461199a919061238b565b90915550505050565b600081815b8451811015611a0f5760008582815181106119c5576119c56124e9565b602002602001015190508083116119eb57600083815260208290526040902092506119fc565b600081815260208490526040902092505b5080611a0781612490565b9150506119a8565b509392505050565b60006001600160a01b0384163b15611b0a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a5b90339089908890889060040161254c565b6020604051808303816000875af1925050508015611a96575060408051601f3d908101601f19168201909252611a9391810190612589565b60015b611af0573d808015611ac4576040519150601f19603f3d011682016040523d82523d6000602084013e611ac9565b606091505b508051611ae85760405162461bcd60e51b81526004016105449061243e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f30565b506001949350505050565b611b1d610754565b156106755760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610544565b6106fc828260405180602001604052806000815250611b9d8383611bc6565b611baa6000848484611a17565b6106755760405162461bcd60e51b81526004016105449061243e565b6001600160a01b038216611c1c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610544565b611c2581610de3565b15611c715760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610544565b611c7d600083836118bd565b6001600160a01b0382166000908152600360205260408120805460019290611ca690849061238b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392906000805160206125a7833981519152908290a45050565b828054611cfe906121e9565b90600052602060002090601f016020900481019282611d205760008555611d66565b82601f10611d3957805160ff1916838001178555611d66565b82800160010185558215611d66579182015b82811115611d66578251825591602001919060010190611d4b565b50611d72929150611d76565b5090565b5b80821115611d725760008155600101611d77565b6001600160e01b031981168114610b9457600080fd5b600060208284031215611db357600080fd5b8135610aef81611d8b565b60005b83811015611dd9578181015183820152602001611dc1565b83811115610b285750506000910152565b60008151808452611e02816020860160208601611dbe565b601f01601f19169290920160200192915050565b602081526000610aef6020830184611dea565b600060208284031215611e3b57600080fd5b5035919050565b6001600160a01b0391909116815260200190565b6001600160a01b0381168114610b9457600080fd5b60008060408385031215611e7e57600080fd5b8235611e8981611e56565b946020939093013593505050565b600080600060608486031215611eac57600080fd5b8335611eb781611e56565b92506020840135611ec781611e56565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611f0857611f08611ed8565b604051601f8501601f19908116603f01168101908282118183101715611f3057611f30611ed8565b81604052809350858152868686011115611f4957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f7557600080fd5b81356001600160401b03811115611f8b57600080fd5b8201601f81018413611f9c57600080fd5b610f3084823560208401611eee565b60008083601f840112611fbd57600080fd5b5081356001600160401b03811115611fd457600080fd5b6020830191508360208260051b8501011115611fef57600080fd5b9250929050565b60008060006040848603121561200b57600080fd5b8335925060208401356001600160401b0381111561202857600080fd5b61203486828701611fab565b9497909650939450505050565b60006020828403121561205357600080fd5b8135610aef81611e56565b60006080828403121561207057600080fd5b604051608081016001600160401b038111828210171561209257612092611ed8565b8060405250823581526020830135602082015260408301356040820152606083013560608201528091505092915050565b600080604083850312156120d657600080fd5b82356120e181611e56565b9150602083013580151581146120f657600080fd5b809150509250929050565b60008060006040848603121561211657600080fd5b833561212181611e56565b925060208401356001600160401b0381111561202857600080fd5b6000806000806080858703121561215257600080fd5b843561215d81611e56565b9350602085013561216d81611e56565b92506040850135915060608501356001600160401b0381111561218f57600080fd5b8501601f810187136121a057600080fd5b6121af87823560208401611eee565b91505092959194509250565b600080604083850312156121ce57600080fd5b82356121d981611e56565b915060208301356120f681611e56565b600181811c908216806121fd57607f821691505b60208210811415610c2757634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600081516122b6818560208601611dbe565b9290920192915050565b600080845481600182811c9150808316806122dc57607f831692505b60208084108214156122fc57634e487b7160e01b86526022600452602486fd5b81801561231057600181146123215761234e565b60ff1986168952848901965061234e565b60008b81526020902060005b868110156123465781548b82015290850190830161232d565b505084890196505b505050505050610aeb81856122a4565b634e487b7160e01b600052601160045260246000fd5b6000828210156123865761238661235e565b500390565b6000821982111561239e5761239e61235e565b500190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60006001600160f81b038281168482168083038211156123ef576123ef61235e565b01949350505050565b60208082526016908201527514da5b595a9a54d95b1b195c8e8814dbdb19081bdd5d60521b604082015260600190565b634e487b7160e01b600052600160045260246000fd5b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60006000198214156124a4576124a461235e565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124d0576124d06124ab565b500490565b6000826124e4576124e46124ab565b500690565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561251157600080fd5b8151610aef81611e56565b67029b2b63632b91d160c51b81526000825161253f816008850160208701611dbe565b9190910160080192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061257f90830184611dea565b9695505050505050565b60006020828403121561259b57600080fd5b8151610aef81611d8b56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212200d5e248235631e1f6bce94c565e85ae805cbc84af568fa7bedb712a86d9f616964736f6c634300080a003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c43727970746f53696d656a690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c43727970746f53696d656a690000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101755760003560e01c806301ffc9a71461017a57806306fdde03146101a2578063081812fc146101b7578063095ea7b3146101d757806318160ddd146101ec5780631a3936311461020257806323b872dd1461023857806330176e131461024b5780633f4ba83a1461025e57806342842e0e146102665780635c975abb146102795780636352211e1461028157806368124a6a146102945780636e978ea7146102a757806370a08231146102ba578063715018a6146102cd5780638456cb59146102d55780638ba4cc3c146102dd5780638da5cb5b146102f05780639106d7ba146102f857806395d89b41146103005780639939c90a14610308578063a22cb4651461031b578063b76a0df41461032e578063b88d4fde14610341578063bb69b7ef14610354578063c0188b6b146103e5578063c87b56dd146103f8578063d547cfb71461040b578063e985e9c514610413578063f2fde38b14610426575b600080fd5b61018d610188366004611da1565b610439565b60405190151581526020015b60405180910390f35b6101aa61044a565b6040516101999190611e16565b6101ca6101c5366004611e29565b6104dc565b6040516101999190611e42565b6101ea6101e5366004611e6b565b610569565b005b6101f461067a565b604051908152602001610199565b6012546013546014546015546102189392919084565b604080519485526020850193909352918301526060820152608001610199565b6101ea610246366004611e97565b610689565b6101ea610259366004611f63565b6106ba565b6101ea610700565b6101ea610274366004611e97565b610739565b61018d610754565b6101ca61028f366004611e29565b610764565b6101ea6102a2366004611ff6565b6107db565b61018d6102b5366004612041565b6108a7565b6101f46102c8366004612041565b6108b2565b6101ea610939565b6101ea610972565b6101ea6102eb366004611e6b565b6109a9565b6101ca6109e2565b6101f46109f1565b6101aa6109fc565b6101ea61031636600461205e565b610a0b565b6101ea6103293660046120c3565b610a58565b61018d61033c366004612101565b610a63565b6101ea61034f36600461213c565b610af6565b600954600a54600b54600c54600d54600e5461039a95946001600160f81b03908116949081169360ff600160f81b90920482169381831693610100909204909216919088565b604080519889526001600160f81b0397881660208a01529590961694870194909452911515606086015215156080850152151560a084015260c083015260e082015261010001610199565b6101ea6103f3366004611e29565b610b2e565b6101aa610406366004611e29565b610b97565b6101aa610c2d565b61018d6104213660046121bb565b610cbb565b6101ea610434366004612041565b610cf6565b600061044482610d93565b92915050565b606060008054610459906121e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610485906121e9565b80156104d25780601f106104a7576101008083540402835291602001916104d2565b820191906000526020600020905b8154815290600101906020018083116104b557829003601f168201915b5050505050905090565b60006104e782610de3565b61054d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061057482610764565b9050806001600160a01b0316836001600160a01b031614156105e25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610544565b336001600160a01b03821614806105fe57506105fe8133610cbb565b61066b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b6064820152608401610544565b6106758383610e00565b505050565b60006106846109f1565b905090565b6106933382610e6e565b6106af5760405162461bcd60e51b81526004016105449061221e565b610675838383610f38565b336106c36109e2565b6001600160a01b0316146106e95760405162461bcd60e51b81526004016105449061226f565b80516106fc906016906020840190611cf2565b5050565b336107096109e2565b6001600160a01b03161461072f5760405162461bcd60e51b81526004016105449061226f565b6107376110cd565b565b61067583838360405180602001604052806000815250610af6565b600654600160a01b900460ff1690565b6000818152600260205260408120546001600160a01b0316806104445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610544565b60125442108015906107ef57506013544211155b6108495760405162461bcd60e51b815260206004820152602560248201527f53696d656a694e46543a205768697465206c6973742073616c65206e6f742073604482015264746172742160d81b6064820152608401610544565b610854338383610a63565b61089d5760405162461bcd60e51b815260206004820152601a60248201527918d85b1b195c881a5cc81b9bdd081a5b881dda1a5d195b1a5cdd60321b6044820152606401610544565b610675338461115f565b60006104448261134d565b60006001600160a01b03821661091d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610544565b506001600160a01b031660009081526003602052604090205490565b336109426109e2565b6001600160a01b0316146109685760405162461bcd60e51b81526004016105449061226f565b6107376000611379565b3361097b6109e2565b6001600160a01b0316146109a15760405162461bcd60e51b81526004016105449061226f565b6107376113cb565b336109b26109e2565b6001600160a01b0316146109d85760405162461bcd60e51b81526004016105449061226f565b6106fc828261142b565b6006546001600160a01b031690565b6000610684600f5490565b606060018054610459906121e9565b33610a146109e2565b6001600160a01b031614610a3a5760405162461bcd60e51b81526004016105449061226f565b80516012556020810151601355604081015160145560600151601555565b6106fc3383836115d4565b601454600090610a7557506000610aef565b6040516001600160601b0319606086901b166020820152600090603401604051602081830303815290604052805190602001209050610aeb84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601454915084905061169f565b9150505b9392505050565b610b003383610e6e565b610b1c5760405162461bcd60e51b81526004016105449061221e565b610b28848484846116b5565b50505050565b601554421015610b8a5760405162461bcd60e51b815260206004820152602160248201527f53696d656a694e46543a205075626c69632073616c65206e6f742073746172746044820152602160f81b6064820152608401610544565b610b94338261115f565b50565b606081610ba381610de3565b610bf95760405162461bcd60e51b815260206004820152602160248201527f455243373231436f6d6d6f6e3a20546f6b656e20646f65736e277420657869736044820152601d60fa1b6064820152608401610544565b6016610c04846116e8565b604051602001610c159291906122c0565b60405160208183030381529060405291505b50919050565b60168054610c3a906121e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c66906121e9565b8015610cb35780601f10610c8857610100808354040283529160200191610cb3565b820191906000526020600020905b815481529060010190602001808311610c9657829003601f168201915b505050505081565b6001600160a01b03808316600090815260056020908152604080832093851683529290529081205460ff1680610aef5750610aef83836117e5565b33610cff6109e2565b6001600160a01b031614610d255760405162461bcd60e51b81526004016105449061226f565b6001600160a01b038116610d8a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610544565b610b9481611379565b60006001600160e01b031982166380ac58cd60e01b1480610dc457506001600160e01b03198216635b5e139f60e01b145b8061044457506301ffc9a760e01b6001600160e01b0319831614610444565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e3582610764565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610e7982610de3565b610eda5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610544565b6000610ee583610764565b9050806001600160a01b0316846001600160a01b03161480610f0c5750610f0c8185610cbb565b80610f305750836001600160a01b0316610f25846104dc565b6001600160a01b0316145b949350505050565b826001600160a01b0316610f4b82610764565b6001600160a01b031614610faf5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610544565b6001600160a01b0382166110115760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610544565b61101c8383836118bd565b611027600082610e00565b6001600160a01b0383166000908152600360205260408120805460019290611050908490612374565b90915550506001600160a01b038216600090815260036020526040812080546001929061107e90849061238b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716916000805160206125a783398151915291a4505050565b6110d5610754565b6111185760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610544565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516111559190611e42565b60405180910390a1565b600260075414156111b25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610544565b60026007556111bf610754565b156111dc5760405162461bcd60e51b8152600401610544906123a3565b600e54600990600090156111fd576111f88383600501546118c8565b6111ff565b825b6002830154909150600090600160f81b900460ff1661121f578254611254565b6002830154600184015461123f916001600160f81b0390811691166123cd565b8354611254916001600160f81b031690612374565b905061128c8261126360115490565b601054600f546112739190612374565b61127d9190612374565b6112879084612374565b6118c8565b9150600082116112ae5760405162461bcd60e51b8152600401610544906123f8565b600483015415611319576112e682866040518060400160405280600b81526020016a109d5e595c881b1a5b5a5d60aa1b8152506118de565b6001600160a01b03861660009081526008602052604081208054929450849290919061131390849061238b565b90915550505b611323858361194d565b61132e600f83611986565b8254600f54111561134157611341612428565b50506001600755505050565b6001600160a01b038116600090815260086020526040812054611371576000610444565b600192915050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6113d3610754565b156113f05760405162461bcd60e51b8152600401610544906123a3565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111483390565b336114346109e2565b6001600160a01b03161461145a5760405162461bcd60e51b81526004016105449061226f565b611462610754565b1561147f5760405162461bcd60e51b8152600401610544906123a3565b600b54600990600160f81b900460ff166114ec5760405162461bcd60e51b815260206004820152602860248201527f53696d656a6953656c6c65723a20726573657276654672656551756f7461206960448201526739903330b639b29760c11b6064820152608401610544565b60006114f760105490565b600183015461150f91906001600160f81b0316612374565b905061151b83826118c8565b9250600083116115795760405162461bcd60e51b8152602060048201526024808201527f53696d656a6953656c6c65723a2061697264726f702071756f746120657863656044820152631959195960e21b6064820152608401610544565b61159283611586600f5490565b84546112879190612374565b9250600083116115b45760405162461bcd60e51b8152600401610544906123f8565b6115be848461194d565b6115c9600f84611986565b610b28601084611986565b816001600160a01b0316836001600160a01b031614156116325760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610544565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000826116ac85846119a3565b14949350505050565b6116c0848484610f38565b6116cc84848484611a17565b610b285760405162461bcd60e51b81526004016105449061243e565b60608161170c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611736578061172081612490565b915061172f9050600a836124c1565b9150611710565b6000816001600160401b0381111561175057611750611ed8565b6040519080825280601f01601f19166020018201604052801561177a576020820181803683370190505b5090505b8415610f305761178f600183612374565b915061179c600a866124d5565b6117a790603061238b565b60f81b8183815181106117bc576117bc6124e9565b60200101906001600160f81b031916908160001a9053506117de600a866124c1565b945061177e565b60008046600181146117fe576004811461181a57611832565b73a5409ec958c83c3f309868babaca7c86dcb077c19150611832565b73f57b2c51ded3a29e6891aba85459d600256cf31791505b506001600160a01b03811615801590610f305750826001600160a01b0316816001600160a01b031663c4552791866040518263ffffffff1660e01b815260040161187c9190611e42565b602060405180830381865afa158015611899573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2591906124ff565b610675838383611b15565b60008183106118d75781610aef565b5090919050565b6001600160a01b038216600090815260086020526040812054600d54829161190591612374565b905080611943578260405160200161191d919061251c565b60408051601f198184030181529082905262461bcd60e51b825261054491600401611e16565b610aeb85826118c8565b60005b818110156106755761197483826119656109f1565b61196f919061238b565b611b7e565b8061197e81612490565b915050611950565b8082600001600082825461199a919061238b565b90915550505050565b600081815b8451811015611a0f5760008582815181106119c5576119c56124e9565b602002602001015190508083116119eb57600083815260208290526040902092506119fc565b600081815260208490526040902092505b5080611a0781612490565b9150506119a8565b509392505050565b60006001600160a01b0384163b15611b0a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a5b90339089908890889060040161254c565b6020604051808303816000875af1925050508015611a96575060408051601f3d908101601f19168201909252611a9391810190612589565b60015b611af0573d808015611ac4576040519150601f19603f3d011682016040523d82523d6000602084013e611ac9565b606091505b508051611ae85760405162461bcd60e51b81526004016105449061243e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f30565b506001949350505050565b611b1d610754565b156106755760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610544565b6106fc828260405180602001604052806000815250611b9d8383611bc6565b611baa6000848484611a17565b6106755760405162461bcd60e51b81526004016105449061243e565b6001600160a01b038216611c1c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610544565b611c2581610de3565b15611c715760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610544565b611c7d600083836118bd565b6001600160a01b0382166000908152600360205260408120805460019290611ca690849061238b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392906000805160206125a7833981519152908290a45050565b828054611cfe906121e9565b90600052602060002090601f016020900481019282611d205760008555611d66565b82601f10611d3957805160ff1916838001178555611d66565b82800160010185558215611d66579182015b82811115611d66578251825591602001919060010190611d4b565b50611d72929150611d76565b5090565b5b80821115611d725760008155600101611d77565b6001600160e01b031981168114610b9457600080fd5b600060208284031215611db357600080fd5b8135610aef81611d8b565b60005b83811015611dd9578181015183820152602001611dc1565b83811115610b285750506000910152565b60008151808452611e02816020860160208601611dbe565b601f01601f19169290920160200192915050565b602081526000610aef6020830184611dea565b600060208284031215611e3b57600080fd5b5035919050565b6001600160a01b0391909116815260200190565b6001600160a01b0381168114610b9457600080fd5b60008060408385031215611e7e57600080fd5b8235611e8981611e56565b946020939093013593505050565b600080600060608486031215611eac57600080fd5b8335611eb781611e56565b92506020840135611ec781611e56565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611f0857611f08611ed8565b604051601f8501601f19908116603f01168101908282118183101715611f3057611f30611ed8565b81604052809350858152868686011115611f4957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f7557600080fd5b81356001600160401b03811115611f8b57600080fd5b8201601f81018413611f9c57600080fd5b610f3084823560208401611eee565b60008083601f840112611fbd57600080fd5b5081356001600160401b03811115611fd457600080fd5b6020830191508360208260051b8501011115611fef57600080fd5b9250929050565b60008060006040848603121561200b57600080fd5b8335925060208401356001600160401b0381111561202857600080fd5b61203486828701611fab565b9497909650939450505050565b60006020828403121561205357600080fd5b8135610aef81611e56565b60006080828403121561207057600080fd5b604051608081016001600160401b038111828210171561209257612092611ed8565b8060405250823581526020830135602082015260408301356040820152606083013560608201528091505092915050565b600080604083850312156120d657600080fd5b82356120e181611e56565b9150602083013580151581146120f657600080fd5b809150509250929050565b60008060006040848603121561211657600080fd5b833561212181611e56565b925060208401356001600160401b0381111561202857600080fd5b6000806000806080858703121561215257600080fd5b843561215d81611e56565b9350602085013561216d81611e56565b92506040850135915060608501356001600160401b0381111561218f57600080fd5b8501601f810187136121a057600080fd5b6121af87823560208401611eee565b91505092959194509250565b600080604083850312156121ce57600080fd5b82356121d981611e56565b915060208301356120f681611e56565b600181811c908216806121fd57607f821691505b60208210811415610c2757634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600081516122b6818560208601611dbe565b9290920192915050565b600080845481600182811c9150808316806122dc57607f831692505b60208084108214156122fc57634e487b7160e01b86526022600452602486fd5b81801561231057600181146123215761234e565b60ff1986168952848901965061234e565b60008b81526020902060005b868110156123465781548b82015290850190830161232d565b505084890196505b505050505050610aeb81856122a4565b634e487b7160e01b600052601160045260246000fd5b6000828210156123865761238661235e565b500390565b6000821982111561239e5761239e61235e565b500190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60006001600160f81b038281168482168083038211156123ef576123ef61235e565b01949350505050565b60208082526016908201527514da5b595a9a54d95b1b195c8e8814dbdb19081bdd5d60521b604082015260600190565b634e487b7160e01b600052600160045260246000fd5b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60006000198214156124a4576124a461235e565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124d0576124d06124ab565b500490565b6000826124e4576124e46124ab565b500690565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561251157600080fd5b8151610aef81611e56565b67029b2b63632b91d160c51b81526000825161253f816008850160208701611dbe565b9190910160080192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061257f90830184611dea565b9695505050505050565b60006020828403121561259b57600080fd5b8151610aef81611d8b56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212200d5e248235631e1f6bce94c565e85ae805cbc84af568fa7bedb712a86d9f616964736f6c634300080a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c43727970746f53696d656a690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c43727970746f53696d656a690000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): CryptoSimeji
Arg [1] : symbol (string): CryptoSimeji

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 43727970746f53696d656a690000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 43727970746f53696d656a690000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.