Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 62 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 16993466 | 1069 days ago | IN | 0 ETH | 0.00104652 | ||||
| Set Approval For... | 16689614 | 1112 days ago | IN | 0 ETH | 0.00120149 | ||||
| Set Approval For... | 15666453 | 1254 days ago | IN | 0 ETH | 0.00048703 | ||||
| Mint | 15641088 | 1258 days ago | IN | 0 ETH | 0.00189257 | ||||
| Safe Transfer Fr... | 15637834 | 1258 days ago | IN | 0 ETH | 0.00070593 | ||||
| Safe Transfer Fr... | 15633722 | 1259 days ago | IN | 0 ETH | 0.00158334 | ||||
| Safe Transfer Fr... | 15633694 | 1259 days ago | IN | 0 ETH | 0.00196435 | ||||
| Safe Transfer Fr... | 15633265 | 1259 days ago | IN | 0 ETH | 0.00085912 | ||||
| Mint | 15629433 | 1260 days ago | IN | 0 ETH | 0.00155562 | ||||
| Mint | 15628076 | 1260 days ago | IN | 0 ETH | 0.00155748 | ||||
| Mint | 15628042 | 1260 days ago | IN | 0 ETH | 0.00156856 | ||||
| Mint | 15621374 | 1261 days ago | IN | 0 ETH | 0.00132952 | ||||
| Set Approval For... | 15616919 | 1261 days ago | IN | 0 ETH | 0.00024043 | ||||
| Mint | 15606971 | 1263 days ago | IN | 0 ETH | 0.00113876 | ||||
| Mint | 15606209 | 1263 days ago | IN | 0 ETH | 0.0004365 | ||||
| Mint | 15606208 | 1263 days ago | IN | 0 ETH | 0.00059204 | ||||
| Mint | 15606202 | 1263 days ago | IN | 0 ETH | 0.00041734 | ||||
| Mint | 15606199 | 1263 days ago | IN | 0 ETH | 0.00060398 | ||||
| Mint | 15606190 | 1263 days ago | IN | 0 ETH | 0.00077842 | ||||
| Mint | 15605978 | 1263 days ago | IN | 0 ETH | 0.00108487 | ||||
| Mint | 15605965 | 1263 days ago | IN | 0 ETH | 0.00133893 | ||||
| Mint | 15605419 | 1263 days ago | IN | 0 ETH | 0.00040972 | ||||
| Mint | 15605400 | 1263 days ago | IN | 0 ETH | 0.00058783 | ||||
| Mint | 15605271 | 1263 days ago | IN | 0 ETH | 0.00079389 | ||||
| Mint | 15604588 | 1263 days ago | IN | 0 ETH | 0.00188896 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
smileyshit
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/**
https://twitter.com/smileyshit
.__.__ .__ .__ __
______ _____ |__| | ____ ___.__. _____| |__ |__|/ |_
/ ___// \| | | _/ __ < | | / ___/ | \| \ __\
\___ \| Y Y \ | |_\ ___/\___ | \___ \| Y \ || |
/____ >__|_| /__|____/\___ > ____| /____ >___| /__||__|
\/ \/ \/\/ \/ \/
https://smileyshit.lol
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC721r.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract smileyshit is ERC721r, Ownable,ReentrancyGuard{
uint256 public mintPrice;
uint256 public immutable maxPerWallet;
string internal baseTokenUri;
address payable public withdrawWallet;
mapping(address => uint256) public walletMints;
string internal _preRevealURI;
bool internal _isRevealed;
constructor(uint256 mintprice_,uint256 maxPerWallet_,uint256 maxSupply_) ERC721r('SmileyShit','SmileyShit',maxSupply_){
maxPerWallet=maxPerWallet_;
mintPrice=mintprice_;
_isRevealed = false;
_preRevealURI="ipfs://bafybeihi6taunwix4fiqml776yfves3dwrwfdmsnlnoxtzzvbs4sozvdla/pre-reveal.json";
}
function setMintPrice(uint256 mintprice_) external onlyOwner{
mintPrice=mintprice_;
}
function setReveal(bool reveal) external onlyOwner{
_isRevealed=reveal;
}
function setWithdrawWallet(address payable withdrawWallet_) external onlyOwner{
withdrawWallet =withdrawWallet_;
}
function setPreRevealURI(string calldata uri_) external onlyOwner{
_preRevealURI=uri_;
}
function setBaseTokenUri(string calldata baseTokenUri_) external onlyOwner{
baseTokenUri = baseTokenUri_;
}
function tokenURI(uint256 tokenId_) public view override returns (string memory){
require(_exists(tokenId_),'Token does not exist!');
if(!_isRevealed)
return _preRevealURI;
return string(abi.encodePacked(baseTokenUri,Strings.toString(tokenId_),".json"));
}
function withdraw() external onlyOwner{
(bool success,)= withdrawWallet.call{value:address(this).balance}('');
require(success,'withdraw failed');
}
function mint(uint256 quantity_)
external payable{
require(msg.value == quantity_ * mintPrice,'Wrong Mint Value');
require(walletMints[msg.sender]+quantity_ <= maxPerWallet,'exceed max wallet');
walletMints[msg.sender] += quantity_ ;
_mintRandom(msg.sender,quantity_);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/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. This does random batch minting.
*/
contract ERC721r is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
mapping(uint => uint) private _availableTokens;
uint256 private _numAvailableTokens;
uint256 immutable _maxSupply;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_, uint maxSupply_) {
_name = name_;
_symbol = symbol_;
_maxSupply = maxSupply_;
_numAvailableTokens = maxSupply_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
function totalSupply() public view virtual returns (uint256) {
return _maxSupply - _numAvailableTokens;
}
function maxSupply() public view virtual returns (uint256) {
return _maxSupply;
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721r.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721r.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
function _mintIdWithoutBalanceUpdate(address to, uint256 tokenId) private {
_beforeTokenTransfer(address(0), to, tokenId);
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
function _mintRandom(address to, uint _numToMint) internal virtual {
require(_msgSender() == tx.origin, "Contracts cannot mint");
require(to != address(0), "ERC721: mint to the zero address");
require(_numToMint > 0, "ERC721r: need to mint at least one token");
// TODO: Probably don't need this as it will underflow and revert automatically in this case
require(_numAvailableTokens >= _numToMint, "ERC721r: minting more tokens than available");
uint updatedNumAvailableTokens = _numAvailableTokens;
for (uint256 i; i < _numToMint; ++i) { // Do this ++ unchecked?
uint256 tokenId = getRandomAvailableTokenId(to, updatedNumAvailableTokens);
_mintIdWithoutBalanceUpdate(to, tokenId);
--updatedNumAvailableTokens;
}
_numAvailableTokens = updatedNumAvailableTokens;
_balances[to] += _numToMint;
}
function getRandomAvailableTokenId(address to, uint updatedNumAvailableTokens)
internal
returns (uint256)
{
uint256 randomNum = uint256(
keccak256(
abi.encode(
to,
tx.gasprice,
block.number,
block.timestamp,
block.difficulty,
blockhash(block.number - 1),
address(this),
updatedNumAvailableTokens
)
)
);
uint256 randomIndex = randomNum % updatedNumAvailableTokens;
return getAvailableTokenAtIndex(randomIndex, updatedNumAvailableTokens);
}
// Implements https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle. Code taken from CryptoPhunksV2
function getAvailableTokenAtIndex(uint256 indexToUse, uint updatedNumAvailableTokens)
internal
returns (uint256)
{
uint256 valAtIndex = _availableTokens[indexToUse];
uint256 result;
if (valAtIndex == 0) {
// This means the index itself is still an available token
result = indexToUse;
} else {
// This means the index itself is not an available token, but the val at that index is.
result = valAtIndex;
}
uint256 lastIndex = updatedNumAvailableTokens - 1;
if (indexToUse != lastIndex) {
// Replace the value at indexToUse, now that it's been used.
// Replace it with the data from the last index in the array, since we are going to decrease the array size afterwards.
uint256 lastValInArray = _availableTokens[lastIndex];
if (lastValInArray == 0) {
// This means the index itself is still an available token
_availableTokens[indexToUse] = lastIndex;
} else {
// This means the index itself is not an available token, but the val at that index is.
_availableTokens[indexToUse] = lastValInArray;
// Gas refund courtsey of @dievardump
delete _availableTokens[lastIndex];
}
}
return result;
}
// Not as good as minting a specific tokenId, but will behave the same at the start
// allowing you to explicitly mint some tokens at launch.
function _mintAtIndex(address to, uint index) internal virtual {
require(_msgSender() == tx.origin, "Contracts cannot mint");
require(to != address(0), "ERC721: mint to the zero address");
require(_numAvailableTokens >= 1, "ERC721r: minting more tokens than available");
uint tokenId = getAvailableTokenAtIndex(index, _numAvailableTokens);
--_numAvailableTokens;
_mintIdWithoutBalanceUpdate(to, tokenId);
_balances[to] += 1;
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721r.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721r.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts 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;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @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);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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);
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"mintprice_","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"},{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"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":"quantity_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"baseTokenUri_","type":"string"}],"name":"setBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintprice_","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setPreRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"reveal","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawWallet_","type":"address"}],"name":"setWithdrawWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60c06040523480156200001157600080fd5b5060405162003f3338038062003f33833981810160405281019062000037919062000333565b6040518060400160405280600a81526020017f536d696c657953686974000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f536d696c65795368697400000000000000000000000000000000000000000000815250828260009080519060200190620000bc92919062000243565b508160019080519060200190620000d592919062000243565b5080608081815250508060038190555050505062000108620000fc6200017560201b60201c565b6200017d60201b60201c565b60016009819055508160a0818152505082600a819055506000600f60006101000a81548160ff02191690831515021790555060405180608001604052806052815260200162003ee160529139600e90805190602001906200016b92919062000243565b50505050620003f4565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025190620003be565b90600052602060002090601f016020900481019282620002755760008555620002c1565b82601f106200029057805160ff1916838001178555620002c1565b82800160010185558215620002c1579182015b82811115620002c0578251825591602001919060010190620002a3565b5b509050620002d09190620002d4565b5090565b5b80821115620002ef576000816000905550600101620002d5565b5090565b600080fd5b6000819050919050565b6200030d81620002f8565b81146200031957600080fd5b50565b6000815190506200032d8162000302565b92915050565b6000806000606084860312156200034f576200034e620002f3565b5b60006200035f868287016200031c565b935050602062000372868287016200031c565b925050604062000385868287016200031c565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003d757607f821691505b60208210811415620003ee57620003ed6200038f565b5b50919050565b60805160a051613ab96200042860003960008181610bbb0152610efe0152600081816109ef01526111ab0152613ab96000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c51461060b578063f0293fd314610648578063f2fde38b14610685578063f4a0a528146106ae576101c2565b8063a22cb46514610551578063b88d4fde1461057a578063c87b56dd146105a3578063d5abeb01146105e0576101c2565b80639373f432116100d15780639373f432146104b857806395652cfa146104e157806395d89b411461050a578063a0712d6814610535576101c2565b8063715018a61461044b57806385d178f4146104625780638da5cb5b1461048d576101c2565b80632a85db5511610164578063453c23101161013e578063453c23101461037b5780636352211e146103a65780636817c76c146103e357806370a082311461040e576101c2565b80632a85db55146103125780633ccfd60b1461033b57806342842e0e14610352576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632a3f300c146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612341565b6106d7565b6040516101fb9190612389565b60405180910390f35b34801561021057600080fd5b506102196107b9565b604051610226919061243d565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612495565b61084b565b6040516102639190612503565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061254a565b6108d0565b005b3480156102a157600080fd5b506102aa6109e8565b6040516102b79190612599565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906125b4565b610a1d565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612633565b610a7d565b005b34801561031e57600080fd5b50610339600480360381019061033491906126c5565b610aa2565b005b34801561034757600080fd5b50610350610ac0565b005b34801561035e57600080fd5b50610379600480360381019061037491906125b4565b610b99565b005b34801561038757600080fd5b50610390610bb9565b60405161039d9190612599565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190612495565b610bdd565b6040516103da9190612503565b60405180910390f35b3480156103ef57600080fd5b506103f8610c8f565b6040516104059190612599565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190612712565b610c95565b6040516104429190612599565b60405180910390f35b34801561045757600080fd5b50610460610d4d565b005b34801561046e57600080fd5b50610477610d61565b6040516104849190612760565b60405180910390f35b34801561049957600080fd5b506104a2610d87565b6040516104af9190612503565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906127a7565b610db1565b005b3480156104ed57600080fd5b50610508600480360381019061050391906126c5565b610dfd565b005b34801561051657600080fd5b5061051f610e1b565b60405161052c919061243d565b60405180910390f35b61054f600480360381019061054a9190612495565b610ead565b005b34801561055d57600080fd5b50610578600480360381019061057391906127d4565b61100c565b005b34801561058657600080fd5b506105a1600480360381019061059c9190612944565b611022565b005b3480156105af57600080fd5b506105ca60048036038101906105c59190612495565b611084565b6040516105d7919061243d565b60405180910390f35b3480156105ec57600080fd5b506105f56111a7565b6040516106029190612599565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d91906129c7565b6111cf565b60405161063f9190612389565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190612712565b611263565b60405161067c9190612599565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190612712565b61127b565b005b3480156106ba57600080fd5b506106d560048036038101906106d09190612495565b6112ff565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b257506107b182611311565b5b9050919050565b6060600080546107c890612a36565b80601f01602080910402602001604051908101604052809291908181526020018280546107f490612a36565b80156108415780601f1061081657610100808354040283529160200191610841565b820191906000526020600020905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b60006108568261137b565b610895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088c90612ada565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108db82610bdd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561094c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094390612b6c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661096b6113e7565b73ffffffffffffffffffffffffffffffffffffffff16148061099a5750610999816109946113e7565b6111cf565b5b6109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d090612bfe565b60405180910390fd5b6109e383836113ef565b505050565b60006003547f0000000000000000000000000000000000000000000000000000000000000000610a189190612c4d565b905090565b610a2e610a286113e7565b826114a8565b610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6490612cf3565b60405180910390fd5b610a78838383611586565b505050565b610a856117ed565b80600f60006101000a81548160ff02191690831515021790555050565b610aaa6117ed565b8181600e9190610abb929190612232565b505050565b610ac86117ed565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610b1090612d44565b60006040518083038185875af1925050503d8060008114610b4d576040519150601f19603f3d011682016040523d82523d6000602084013e610b52565b606091505b5050905080610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90612da5565b60405180910390fd5b50565b610bb483838360405180602001604052806000815250611022565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90612e37565b60405180910390fd5b80915050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd90612ec9565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d556117ed565b610d5f600061186b565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610db96117ed565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e056117ed565b8181600b9190610e16929190612232565b505050565b606060018054610e2a90612a36565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5690612a36565b8015610ea35780601f10610e7857610100808354040283529160200191610ea3565b820191906000526020600020905b815481529060010190602001808311610e8657829003601f168201915b5050505050905090565b600a5481610ebb9190612ee9565b3414610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef390612f8f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f689190612faf565b1115610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090613051565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff89190612faf565b925050819055506110093382611931565b50565b61101e6110176113e7565b8383611b49565b5050565b61103361102d6113e7565b836114a8565b611072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106990612cf3565b60405180910390fd5b61107e84848484611cb6565b50505050565b606061108f8261137b565b6110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c5906130bd565b60405180910390fd5b600f60009054906101000a900460ff1661117457600e80546110ef90612a36565b80601f016020809104026020016040519081016040528092919081815260200182805461111b90612a36565b80156111685780601f1061113d57610100808354040283529160200191611168565b820191906000526020600020905b81548152906001019060200180831161114b57829003601f168201915b505050505090506111a2565b600b61117f83611d12565b6040516020016111909291906131f9565b60405160208183030381529060405290505b919050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d6020528060005260406000206000915090505481565b6112836117ed565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea9061329a565b60405180910390fd5b6112fc8161186b565b50565b6113076117ed565b80600a8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661146283610bdd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114b38261137b565b6114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e99061332c565b60405180910390fd5b60006114fd83610bdd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061156c57508373ffffffffffffffffffffffffffffffffffffffff166115548461084b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061157d575061157c81856111cf565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115a682610bdd565b73ffffffffffffffffffffffffffffffffffffffff16146115fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f3906133be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390613450565b60405180910390fd5b611677838383611e73565b6116826000826113ef565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116d29190612c4d565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117299190612faf565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117e8838383611e78565b505050565b6117f56113e7565b73ffffffffffffffffffffffffffffffffffffffff16611813610d87565b73ffffffffffffffffffffffffffffffffffffffff1614611869576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611860906134bc565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3273ffffffffffffffffffffffffffffffffffffffff166119506113e7565b73ffffffffffffffffffffffffffffffffffffffff16146119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d90613528565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d90613594565b60405180910390fd5b60008111611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5090613626565b60405180910390fd5b806003541015611a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a95906136b8565b60405180910390fd5b6000600354905060005b82811015611ae6576000611abc8584611e7d565b9050611ac88582611eeb565b82611ad2906136d8565b92505080611adf90613702565b9050611aa8565b508060038190555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b3d9190612faf565b92505081905550505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baf90613797565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ca99190612389565b60405180910390a3505050565b611cc1848484611586565b611ccd84848484611fb5565b611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0390613829565b60405180910390fd5b50505050565b60606000821415611d5a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e6e565b600082905060005b60008214611d8c578080611d7590613702565b915050600a82611d859190613878565b9150611d62565b60008167ffffffffffffffff811115611da857611da7612819565b5b6040519080825280601f01601f191660200182016040528015611dda5781602001600182028036833780820191505090505b5090505b60008514611e6757600182611df39190612c4d565b9150600a85611e0291906138a9565b6030611e0e9190612faf565b60f81b818381518110611e2457611e236138da565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e609190613878565b9450611dde565b8093505050505b919050565b505050565b505050565b600080833a434244600143611e929190612c4d565b403089604051602001611eac989796959493929190613922565b6040516020818303038152906040528051906020012060001c905060008382611ed591906138a9565b9050611ee1818561214c565b9250505092915050565b611ef760008383611e73565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fb160008383611e78565b5050565b6000611fd68473ffffffffffffffffffffffffffffffffffffffff1661220f565b1561213f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fff6113e7565b8786866040518563ffffffff1660e01b815260040161202194939291906139f5565b602060405180830381600087803b15801561203b57600080fd5b505af192505050801561206c57506040513d601f19601f820116820180604052508101906120699190613a56565b60015b6120ef573d806000811461209c576040519150601f19603f3d011682016040523d82523d6000602084013e6120a1565b606091505b506000815114156120e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120de90613829565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612144565b600190505b949350505050565b600080600260008581526020019081526020016000205490506000808214156121775784905061217b565b8190505b600060018561218a9190612c4d565b90508086146122035760006002600083815260200190815260200160002054905060008114156121d157816002600089815260200190815260200160002081905550612201565b80600260008981526020019081526020016000208190555060026000838152602001908152602001600020600090555b505b81935050505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461223e90612a36565b90600052602060002090601f01602090048101928261226057600085556122a7565b82601f1061227957803560ff19168380011785556122a7565b828001600101855582156122a7579182015b828111156122a657823582559160200191906001019061228b565b5b5090506122b491906122b8565b5090565b5b808211156122d15760008160009055506001016122b9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61231e816122e9565b811461232957600080fd5b50565b60008135905061233b81612315565b92915050565b600060208284031215612357576123566122df565b5b60006123658482850161232c565b91505092915050565b60008115159050919050565b6123838161236e565b82525050565b600060208201905061239e600083018461237a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123de5780820151818401526020810190506123c3565b838111156123ed576000848401525b50505050565b6000601f19601f8301169050919050565b600061240f826123a4565b61241981856123af565b93506124298185602086016123c0565b612432816123f3565b840191505092915050565b600060208201905081810360008301526124578184612404565b905092915050565b6000819050919050565b6124728161245f565b811461247d57600080fd5b50565b60008135905061248f81612469565b92915050565b6000602082840312156124ab576124aa6122df565b5b60006124b984828501612480565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124ed826124c2565b9050919050565b6124fd816124e2565b82525050565b600060208201905061251860008301846124f4565b92915050565b612527816124e2565b811461253257600080fd5b50565b6000813590506125448161251e565b92915050565b60008060408385031215612561576125606122df565b5b600061256f85828601612535565b925050602061258085828601612480565b9150509250929050565b6125938161245f565b82525050565b60006020820190506125ae600083018461258a565b92915050565b6000806000606084860312156125cd576125cc6122df565b5b60006125db86828701612535565b93505060206125ec86828701612535565b92505060406125fd86828701612480565b9150509250925092565b6126108161236e565b811461261b57600080fd5b50565b60008135905061262d81612607565b92915050565b600060208284031215612649576126486122df565b5b60006126578482850161261e565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261268557612684612660565b5b8235905067ffffffffffffffff8111156126a2576126a1612665565b5b6020830191508360018202830111156126be576126bd61266a565b5b9250929050565b600080602083850312156126dc576126db6122df565b5b600083013567ffffffffffffffff8111156126fa576126f96122e4565b5b6127068582860161266f565b92509250509250929050565b600060208284031215612728576127276122df565b5b600061273684828501612535565b91505092915050565b600061274a826124c2565b9050919050565b61275a8161273f565b82525050565b60006020820190506127756000830184612751565b92915050565b6127848161273f565b811461278f57600080fd5b50565b6000813590506127a18161277b565b92915050565b6000602082840312156127bd576127bc6122df565b5b60006127cb84828501612792565b91505092915050565b600080604083850312156127eb576127ea6122df565b5b60006127f985828601612535565b925050602061280a8582860161261e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612851826123f3565b810181811067ffffffffffffffff821117156128705761286f612819565b5b80604052505050565b60006128836122d5565b905061288f8282612848565b919050565b600067ffffffffffffffff8211156128af576128ae612819565b5b6128b8826123f3565b9050602081019050919050565b82818337600083830152505050565b60006128e76128e284612894565b612879565b90508281526020810184848401111561290357612902612814565b5b61290e8482856128c5565b509392505050565b600082601f83011261292b5761292a612660565b5b813561293b8482602086016128d4565b91505092915050565b6000806000806080858703121561295e5761295d6122df565b5b600061296c87828801612535565b945050602061297d87828801612535565b935050604061298e87828801612480565b925050606085013567ffffffffffffffff8111156129af576129ae6122e4565b5b6129bb87828801612916565b91505092959194509250565b600080604083850312156129de576129dd6122df565b5b60006129ec85828601612535565b92505060206129fd85828601612535565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a4e57607f821691505b60208210811415612a6257612a61612a07565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612ac4602c836123af565b9150612acf82612a68565b604082019050919050565b60006020820190508181036000830152612af381612ab7565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b566021836123af565b9150612b6182612afa565b604082019050919050565b60006020820190508181036000830152612b8581612b49565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612be86038836123af565b9150612bf382612b8c565b604082019050919050565b60006020820190508181036000830152612c1781612bdb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c588261245f565b9150612c638361245f565b925082821015612c7657612c75612c1e565b5b828203905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612cdd6031836123af565b9150612ce882612c81565b604082019050919050565b60006020820190508181036000830152612d0c81612cd0565b9050919050565b600081905092915050565b50565b6000612d2e600083612d13565b9150612d3982612d1e565b600082019050919050565b6000612d4f82612d21565b9150819050919050565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000612d8f600f836123af565b9150612d9a82612d59565b602082019050919050565b60006020820190508181036000830152612dbe81612d82565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612e216029836123af565b9150612e2c82612dc5565b604082019050919050565b60006020820190508181036000830152612e5081612e14565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612eb3602a836123af565b9150612ebe82612e57565b604082019050919050565b60006020820190508181036000830152612ee281612ea6565b9050919050565b6000612ef48261245f565b9150612eff8361245f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f3857612f37612c1e565b5b828202905092915050565b7f57726f6e67204d696e742056616c756500000000000000000000000000000000600082015250565b6000612f796010836123af565b9150612f8482612f43565b602082019050919050565b60006020820190508181036000830152612fa881612f6c565b9050919050565b6000612fba8261245f565b9150612fc58361245f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ffa57612ff9612c1e565b5b828201905092915050565b7f657863656564206d61782077616c6c6574000000000000000000000000000000600082015250565b600061303b6011836123af565b915061304682613005565b602082019050919050565b6000602082019050818103600083015261306a8161302e565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b60006130a76015836123af565b91506130b282613071565b602082019050919050565b600060208201905081810360008301526130d68161309a565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461310a81612a36565b61311481866130dd565b9450600182166000811461312f576001811461314057613173565b60ff19831686528186019350613173565b613149856130e8565b60005b8381101561316b5781548189015260018201915060208101905061314c565b838801955050505b50505092915050565b6000613187826123a4565b61319181856130dd565b93506131a18185602086016123c0565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006131e36005836130dd565b91506131ee826131ad565b600582019050919050565b600061320582856130fd565b9150613211828461317c565b915061321c826131d6565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132846026836123af565b915061328f82613228565b604082019050919050565b600060208201905081810360008301526132b381613277565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613316602c836123af565b9150613321826132ba565b604082019050919050565b6000602082019050818103600083015261334581613309565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006133a86025836123af565b91506133b38261334c565b604082019050919050565b600060208201905081810360008301526133d78161339b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061343a6024836123af565b9150613445826133de565b604082019050919050565b600060208201905081810360008301526134698161342d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134a66020836123af565b91506134b182613470565b602082019050919050565b600060208201905081810360008301526134d581613499565b9050919050565b7f436f6e7472616374732063616e6e6f74206d696e740000000000000000000000600082015250565b60006135126015836123af565b915061351d826134dc565b602082019050919050565b6000602082019050818103600083015261354181613505565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061357e6020836123af565b915061358982613548565b602082019050919050565b600060208201905081810360008301526135ad81613571565b9050919050565b7f455243373231723a206e65656420746f206d696e74206174206c65617374206f60008201527f6e6520746f6b656e000000000000000000000000000000000000000000000000602082015250565b60006136106028836123af565b915061361b826135b4565b604082019050919050565b6000602082019050818103600083015261363f81613603565b9050919050565b7f455243373231723a206d696e74696e67206d6f726520746f6b656e732074686160008201527f6e20617661696c61626c65000000000000000000000000000000000000000000602082015250565b60006136a2602b836123af565b91506136ad82613646565b604082019050919050565b600060208201905081810360008301526136d181613695565b9050919050565b60006136e38261245f565b915060008214156136f7576136f6612c1e565b5b600182039050919050565b600061370d8261245f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137405761373f612c1e565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006137816019836123af565b915061378c8261374b565b602082019050919050565b600060208201905081810360008301526137b081613774565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006138136032836123af565b915061381e826137b7565b604082019050919050565b6000602082019050818103600083015261384281613806565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138838261245f565b915061388e8361245f565b92508261389e5761389d613849565b5b828204905092915050565b60006138b48261245f565b91506138bf8361245f565b9250826138cf576138ce613849565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b61391c81613909565b82525050565b600061010082019050613938600083018b6124f4565b613945602083018a61258a565b613952604083018961258a565b61395f606083018861258a565b61396c608083018761258a565b61397960a0830186613913565b61398660c08301856124f4565b61399360e083018461258a565b9998505050505050505050565b600081519050919050565b600082825260208201905092915050565b60006139c7826139a0565b6139d181856139ab565b93506139e18185602086016123c0565b6139ea816123f3565b840191505092915050565b6000608082019050613a0a60008301876124f4565b613a1760208301866124f4565b613a24604083018561258a565b8181036060830152613a3681846139bc565b905095945050505050565b600081519050613a5081612315565b92915050565b600060208284031215613a6c57613a6b6122df565b5b6000613a7a84828501613a41565b9150509291505056fea2646970667358221220bfa473dfeb25b9d5db080b79806b4e539ce7b244c4c1ee0393f3e6c27739be1364736f6c63430008090033697066733a2f2f626166796265696869367461756e776978346669716d6c3737367966766573336477727766646d736e6c6e6f78747a7a76627334736f7a76646c612f7072652d72657665616c2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000002710
Deployed Bytecode
0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c51461060b578063f0293fd314610648578063f2fde38b14610685578063f4a0a528146106ae576101c2565b8063a22cb46514610551578063b88d4fde1461057a578063c87b56dd146105a3578063d5abeb01146105e0576101c2565b80639373f432116100d15780639373f432146104b857806395652cfa146104e157806395d89b411461050a578063a0712d6814610535576101c2565b8063715018a61461044b57806385d178f4146104625780638da5cb5b1461048d576101c2565b80632a85db5511610164578063453c23101161013e578063453c23101461037b5780636352211e146103a65780636817c76c146103e357806370a082311461040e576101c2565b80632a85db55146103125780633ccfd60b1461033b57806342842e0e14610352576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632a3f300c146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612341565b6106d7565b6040516101fb9190612389565b60405180910390f35b34801561021057600080fd5b506102196107b9565b604051610226919061243d565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612495565b61084b565b6040516102639190612503565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061254a565b6108d0565b005b3480156102a157600080fd5b506102aa6109e8565b6040516102b79190612599565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906125b4565b610a1d565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612633565b610a7d565b005b34801561031e57600080fd5b50610339600480360381019061033491906126c5565b610aa2565b005b34801561034757600080fd5b50610350610ac0565b005b34801561035e57600080fd5b50610379600480360381019061037491906125b4565b610b99565b005b34801561038757600080fd5b50610390610bb9565b60405161039d9190612599565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190612495565b610bdd565b6040516103da9190612503565b60405180910390f35b3480156103ef57600080fd5b506103f8610c8f565b6040516104059190612599565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190612712565b610c95565b6040516104429190612599565b60405180910390f35b34801561045757600080fd5b50610460610d4d565b005b34801561046e57600080fd5b50610477610d61565b6040516104849190612760565b60405180910390f35b34801561049957600080fd5b506104a2610d87565b6040516104af9190612503565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906127a7565b610db1565b005b3480156104ed57600080fd5b50610508600480360381019061050391906126c5565b610dfd565b005b34801561051657600080fd5b5061051f610e1b565b60405161052c919061243d565b60405180910390f35b61054f600480360381019061054a9190612495565b610ead565b005b34801561055d57600080fd5b50610578600480360381019061057391906127d4565b61100c565b005b34801561058657600080fd5b506105a1600480360381019061059c9190612944565b611022565b005b3480156105af57600080fd5b506105ca60048036038101906105c59190612495565b611084565b6040516105d7919061243d565b60405180910390f35b3480156105ec57600080fd5b506105f56111a7565b6040516106029190612599565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d91906129c7565b6111cf565b60405161063f9190612389565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190612712565b611263565b60405161067c9190612599565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190612712565b61127b565b005b3480156106ba57600080fd5b506106d560048036038101906106d09190612495565b6112ff565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b257506107b182611311565b5b9050919050565b6060600080546107c890612a36565b80601f01602080910402602001604051908101604052809291908181526020018280546107f490612a36565b80156108415780601f1061081657610100808354040283529160200191610841565b820191906000526020600020905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b60006108568261137b565b610895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088c90612ada565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108db82610bdd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561094c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094390612b6c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661096b6113e7565b73ffffffffffffffffffffffffffffffffffffffff16148061099a5750610999816109946113e7565b6111cf565b5b6109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d090612bfe565b60405180910390fd5b6109e383836113ef565b505050565b60006003547f0000000000000000000000000000000000000000000000000000000000002710610a189190612c4d565b905090565b610a2e610a286113e7565b826114a8565b610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6490612cf3565b60405180910390fd5b610a78838383611586565b505050565b610a856117ed565b80600f60006101000a81548160ff02191690831515021790555050565b610aaa6117ed565b8181600e9190610abb929190612232565b505050565b610ac86117ed565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610b1090612d44565b60006040518083038185875af1925050503d8060008114610b4d576040519150601f19603f3d011682016040523d82523d6000602084013e610b52565b606091505b5050905080610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90612da5565b60405180910390fd5b50565b610bb483838360405180602001604052806000815250611022565b505050565b7f000000000000000000000000000000000000000000000000000000000000000281565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90612e37565b60405180910390fd5b80915050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd90612ec9565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d556117ed565b610d5f600061186b565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610db96117ed565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e056117ed565b8181600b9190610e16929190612232565b505050565b606060018054610e2a90612a36565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5690612a36565b8015610ea35780601f10610e7857610100808354040283529160200191610ea3565b820191906000526020600020905b815481529060010190602001808311610e8657829003601f168201915b5050505050905090565b600a5481610ebb9190612ee9565b3414610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef390612f8f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000281600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f689190612faf565b1115610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090613051565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff89190612faf565b925050819055506110093382611931565b50565b61101e6110176113e7565b8383611b49565b5050565b61103361102d6113e7565b836114a8565b611072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106990612cf3565b60405180910390fd5b61107e84848484611cb6565b50505050565b606061108f8261137b565b6110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c5906130bd565b60405180910390fd5b600f60009054906101000a900460ff1661117457600e80546110ef90612a36565b80601f016020809104026020016040519081016040528092919081815260200182805461111b90612a36565b80156111685780601f1061113d57610100808354040283529160200191611168565b820191906000526020600020905b81548152906001019060200180831161114b57829003601f168201915b505050505090506111a2565b600b61117f83611d12565b6040516020016111909291906131f9565b60405160208183030381529060405290505b919050565b60007f0000000000000000000000000000000000000000000000000000000000002710905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d6020528060005260406000206000915090505481565b6112836117ed565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea9061329a565b60405180910390fd5b6112fc8161186b565b50565b6113076117ed565b80600a8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661146283610bdd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114b38261137b565b6114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e99061332c565b60405180910390fd5b60006114fd83610bdd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061156c57508373ffffffffffffffffffffffffffffffffffffffff166115548461084b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061157d575061157c81856111cf565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115a682610bdd565b73ffffffffffffffffffffffffffffffffffffffff16146115fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f3906133be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390613450565b60405180910390fd5b611677838383611e73565b6116826000826113ef565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116d29190612c4d565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117299190612faf565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117e8838383611e78565b505050565b6117f56113e7565b73ffffffffffffffffffffffffffffffffffffffff16611813610d87565b73ffffffffffffffffffffffffffffffffffffffff1614611869576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611860906134bc565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3273ffffffffffffffffffffffffffffffffffffffff166119506113e7565b73ffffffffffffffffffffffffffffffffffffffff16146119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d90613528565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d90613594565b60405180910390fd5b60008111611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5090613626565b60405180910390fd5b806003541015611a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a95906136b8565b60405180910390fd5b6000600354905060005b82811015611ae6576000611abc8584611e7d565b9050611ac88582611eeb565b82611ad2906136d8565b92505080611adf90613702565b9050611aa8565b508060038190555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b3d9190612faf565b92505081905550505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baf90613797565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ca99190612389565b60405180910390a3505050565b611cc1848484611586565b611ccd84848484611fb5565b611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0390613829565b60405180910390fd5b50505050565b60606000821415611d5a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e6e565b600082905060005b60008214611d8c578080611d7590613702565b915050600a82611d859190613878565b9150611d62565b60008167ffffffffffffffff811115611da857611da7612819565b5b6040519080825280601f01601f191660200182016040528015611dda5781602001600182028036833780820191505090505b5090505b60008514611e6757600182611df39190612c4d565b9150600a85611e0291906138a9565b6030611e0e9190612faf565b60f81b818381518110611e2457611e236138da565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e609190613878565b9450611dde565b8093505050505b919050565b505050565b505050565b600080833a434244600143611e929190612c4d565b403089604051602001611eac989796959493929190613922565b6040516020818303038152906040528051906020012060001c905060008382611ed591906138a9565b9050611ee1818561214c565b9250505092915050565b611ef760008383611e73565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fb160008383611e78565b5050565b6000611fd68473ffffffffffffffffffffffffffffffffffffffff1661220f565b1561213f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fff6113e7565b8786866040518563ffffffff1660e01b815260040161202194939291906139f5565b602060405180830381600087803b15801561203b57600080fd5b505af192505050801561206c57506040513d601f19601f820116820180604052508101906120699190613a56565b60015b6120ef573d806000811461209c576040519150601f19603f3d011682016040523d82523d6000602084013e6120a1565b606091505b506000815114156120e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120de90613829565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612144565b600190505b949350505050565b600080600260008581526020019081526020016000205490506000808214156121775784905061217b565b8190505b600060018561218a9190612c4d565b90508086146122035760006002600083815260200190815260200160002054905060008114156121d157816002600089815260200190815260200160002081905550612201565b80600260008981526020019081526020016000208190555060026000838152602001908152602001600020600090555b505b81935050505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461223e90612a36565b90600052602060002090601f01602090048101928261226057600085556122a7565b82601f1061227957803560ff19168380011785556122a7565b828001600101855582156122a7579182015b828111156122a657823582559160200191906001019061228b565b5b5090506122b491906122b8565b5090565b5b808211156122d15760008160009055506001016122b9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61231e816122e9565b811461232957600080fd5b50565b60008135905061233b81612315565b92915050565b600060208284031215612357576123566122df565b5b60006123658482850161232c565b91505092915050565b60008115159050919050565b6123838161236e565b82525050565b600060208201905061239e600083018461237a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123de5780820151818401526020810190506123c3565b838111156123ed576000848401525b50505050565b6000601f19601f8301169050919050565b600061240f826123a4565b61241981856123af565b93506124298185602086016123c0565b612432816123f3565b840191505092915050565b600060208201905081810360008301526124578184612404565b905092915050565b6000819050919050565b6124728161245f565b811461247d57600080fd5b50565b60008135905061248f81612469565b92915050565b6000602082840312156124ab576124aa6122df565b5b60006124b984828501612480565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124ed826124c2565b9050919050565b6124fd816124e2565b82525050565b600060208201905061251860008301846124f4565b92915050565b612527816124e2565b811461253257600080fd5b50565b6000813590506125448161251e565b92915050565b60008060408385031215612561576125606122df565b5b600061256f85828601612535565b925050602061258085828601612480565b9150509250929050565b6125938161245f565b82525050565b60006020820190506125ae600083018461258a565b92915050565b6000806000606084860312156125cd576125cc6122df565b5b60006125db86828701612535565b93505060206125ec86828701612535565b92505060406125fd86828701612480565b9150509250925092565b6126108161236e565b811461261b57600080fd5b50565b60008135905061262d81612607565b92915050565b600060208284031215612649576126486122df565b5b60006126578482850161261e565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261268557612684612660565b5b8235905067ffffffffffffffff8111156126a2576126a1612665565b5b6020830191508360018202830111156126be576126bd61266a565b5b9250929050565b600080602083850312156126dc576126db6122df565b5b600083013567ffffffffffffffff8111156126fa576126f96122e4565b5b6127068582860161266f565b92509250509250929050565b600060208284031215612728576127276122df565b5b600061273684828501612535565b91505092915050565b600061274a826124c2565b9050919050565b61275a8161273f565b82525050565b60006020820190506127756000830184612751565b92915050565b6127848161273f565b811461278f57600080fd5b50565b6000813590506127a18161277b565b92915050565b6000602082840312156127bd576127bc6122df565b5b60006127cb84828501612792565b91505092915050565b600080604083850312156127eb576127ea6122df565b5b60006127f985828601612535565b925050602061280a8582860161261e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612851826123f3565b810181811067ffffffffffffffff821117156128705761286f612819565b5b80604052505050565b60006128836122d5565b905061288f8282612848565b919050565b600067ffffffffffffffff8211156128af576128ae612819565b5b6128b8826123f3565b9050602081019050919050565b82818337600083830152505050565b60006128e76128e284612894565b612879565b90508281526020810184848401111561290357612902612814565b5b61290e8482856128c5565b509392505050565b600082601f83011261292b5761292a612660565b5b813561293b8482602086016128d4565b91505092915050565b6000806000806080858703121561295e5761295d6122df565b5b600061296c87828801612535565b945050602061297d87828801612535565b935050604061298e87828801612480565b925050606085013567ffffffffffffffff8111156129af576129ae6122e4565b5b6129bb87828801612916565b91505092959194509250565b600080604083850312156129de576129dd6122df565b5b60006129ec85828601612535565b92505060206129fd85828601612535565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a4e57607f821691505b60208210811415612a6257612a61612a07565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612ac4602c836123af565b9150612acf82612a68565b604082019050919050565b60006020820190508181036000830152612af381612ab7565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b566021836123af565b9150612b6182612afa565b604082019050919050565b60006020820190508181036000830152612b8581612b49565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612be86038836123af565b9150612bf382612b8c565b604082019050919050565b60006020820190508181036000830152612c1781612bdb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c588261245f565b9150612c638361245f565b925082821015612c7657612c75612c1e565b5b828203905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612cdd6031836123af565b9150612ce882612c81565b604082019050919050565b60006020820190508181036000830152612d0c81612cd0565b9050919050565b600081905092915050565b50565b6000612d2e600083612d13565b9150612d3982612d1e565b600082019050919050565b6000612d4f82612d21565b9150819050919050565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000612d8f600f836123af565b9150612d9a82612d59565b602082019050919050565b60006020820190508181036000830152612dbe81612d82565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612e216029836123af565b9150612e2c82612dc5565b604082019050919050565b60006020820190508181036000830152612e5081612e14565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612eb3602a836123af565b9150612ebe82612e57565b604082019050919050565b60006020820190508181036000830152612ee281612ea6565b9050919050565b6000612ef48261245f565b9150612eff8361245f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f3857612f37612c1e565b5b828202905092915050565b7f57726f6e67204d696e742056616c756500000000000000000000000000000000600082015250565b6000612f796010836123af565b9150612f8482612f43565b602082019050919050565b60006020820190508181036000830152612fa881612f6c565b9050919050565b6000612fba8261245f565b9150612fc58361245f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ffa57612ff9612c1e565b5b828201905092915050565b7f657863656564206d61782077616c6c6574000000000000000000000000000000600082015250565b600061303b6011836123af565b915061304682613005565b602082019050919050565b6000602082019050818103600083015261306a8161302e565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b60006130a76015836123af565b91506130b282613071565b602082019050919050565b600060208201905081810360008301526130d68161309a565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461310a81612a36565b61311481866130dd565b9450600182166000811461312f576001811461314057613173565b60ff19831686528186019350613173565b613149856130e8565b60005b8381101561316b5781548189015260018201915060208101905061314c565b838801955050505b50505092915050565b6000613187826123a4565b61319181856130dd565b93506131a18185602086016123c0565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006131e36005836130dd565b91506131ee826131ad565b600582019050919050565b600061320582856130fd565b9150613211828461317c565b915061321c826131d6565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132846026836123af565b915061328f82613228565b604082019050919050565b600060208201905081810360008301526132b381613277565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613316602c836123af565b9150613321826132ba565b604082019050919050565b6000602082019050818103600083015261334581613309565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006133a86025836123af565b91506133b38261334c565b604082019050919050565b600060208201905081810360008301526133d78161339b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061343a6024836123af565b9150613445826133de565b604082019050919050565b600060208201905081810360008301526134698161342d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134a66020836123af565b91506134b182613470565b602082019050919050565b600060208201905081810360008301526134d581613499565b9050919050565b7f436f6e7472616374732063616e6e6f74206d696e740000000000000000000000600082015250565b60006135126015836123af565b915061351d826134dc565b602082019050919050565b6000602082019050818103600083015261354181613505565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061357e6020836123af565b915061358982613548565b602082019050919050565b600060208201905081810360008301526135ad81613571565b9050919050565b7f455243373231723a206e65656420746f206d696e74206174206c65617374206f60008201527f6e6520746f6b656e000000000000000000000000000000000000000000000000602082015250565b60006136106028836123af565b915061361b826135b4565b604082019050919050565b6000602082019050818103600083015261363f81613603565b9050919050565b7f455243373231723a206d696e74696e67206d6f726520746f6b656e732074686160008201527f6e20617661696c61626c65000000000000000000000000000000000000000000602082015250565b60006136a2602b836123af565b91506136ad82613646565b604082019050919050565b600060208201905081810360008301526136d181613695565b9050919050565b60006136e38261245f565b915060008214156136f7576136f6612c1e565b5b600182039050919050565b600061370d8261245f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137405761373f612c1e565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006137816019836123af565b915061378c8261374b565b602082019050919050565b600060208201905081810360008301526137b081613774565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006138136032836123af565b915061381e826137b7565b604082019050919050565b6000602082019050818103600083015261384281613806565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138838261245f565b915061388e8361245f565b92508261389e5761389d613849565b5b828204905092915050565b60006138b48261245f565b91506138bf8361245f565b9250826138cf576138ce613849565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b61391c81613909565b82525050565b600061010082019050613938600083018b6124f4565b613945602083018a61258a565b613952604083018961258a565b61395f606083018861258a565b61396c608083018761258a565b61397960a0830186613913565b61398660c08301856124f4565b61399360e083018461258a565b9998505050505050505050565b600081519050919050565b600082825260208201905092915050565b60006139c7826139a0565b6139d181856139ab565b93506139e18185602086016123c0565b6139ea816123f3565b840191505092915050565b6000608082019050613a0a60008301876124f4565b613a1760208301866124f4565b613a24604083018561258a565b8181036060830152613a3681846139bc565b905095945050505050565b600081519050613a5081612315565b92915050565b600060208284031215613a6c57613a6b6122df565b5b6000613a7a84828501613a41565b9150509291505056fea2646970667358221220bfa473dfeb25b9d5db080b79806b4e539ce7b244c4c1ee0393f3e6c27739be1364736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000002710
-----Decoded View---------------
Arg [0] : mintprice_ (uint256): 0
Arg [1] : maxPerWallet_ (uint256): 2
Arg [2] : maxSupply_ (uint256): 10000
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002710
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.