Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 33 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Safe Transfer Fr... | 15410786 | 1300 days ago | IN | 0 ETH | 0.00200943 | ||||
| Safe Transfer Fr... | 15410783 | 1300 days ago | IN | 0 ETH | 0.00187411 | ||||
| Safe Transfer Fr... | 15410691 | 1300 days ago | IN | 0 ETH | 0.00155972 | ||||
| Safe Transfer Fr... | 15410689 | 1300 days ago | IN | 0 ETH | 0.00251361 | ||||
| Withdraw | 15410510 | 1300 days ago | IN | 0 ETH | 0.00090111 | ||||
| Set Paused | 15410505 | 1300 days ago | IN | 0 ETH | 0.00070856 | ||||
| Set Approval For... | 15410480 | 1300 days ago | IN | 0 ETH | 0.0015292 | ||||
| Team Mint | 15410471 | 1300 days ago | IN | 0 ETH | 0.02844591 | ||||
| Set Approval For... | 15410468 | 1300 days ago | IN | 0 ETH | 0.00112791 | ||||
| Public Mint | 15410455 | 1300 days ago | IN | 0.03 ETH | 0.00732382 | ||||
| Public Mint | 15410453 | 1300 days ago | IN | 0.03 ETH | 0.00729391 | ||||
| Public Mint | 15410451 | 1300 days ago | IN | 0.03 ETH | 0.00110264 | ||||
| Set Approval For... | 15410449 | 1300 days ago | IN | 0 ETH | 0.00116361 | ||||
| Set Approval For... | 15410446 | 1300 days ago | IN | 0 ETH | 0.00090586 | ||||
| Set Approval For... | 15410432 | 1300 days ago | IN | 0 ETH | 0.00081715 | ||||
| Public Mint | 15410406 | 1300 days ago | IN | 0.09 ETH | 0.00683259 | ||||
| Public Mint | 15410405 | 1300 days ago | IN | 0.03 ETH | 0.00326167 | ||||
| Set Approval For... | 15410384 | 1300 days ago | IN | 0 ETH | 0.00126364 | ||||
| Public Mint | 15410365 | 1300 days ago | IN | 0.06 ETH | 0.00691543 | ||||
| Public Mint | 15410361 | 1300 days ago | IN | 0.06 ETH | 0.00720842 | ||||
| Public Mint | 15410321 | 1300 days ago | IN | 0.03 ETH | 0.00676005 | ||||
| Public Mint | 15410320 | 1300 days ago | IN | 0.06 ETH | 0.00843093 | ||||
| Public Mint | 15410319 | 1300 days ago | IN | 0.03 ETH | 0.00524738 | ||||
| Public Mint | 15410310 | 1300 days ago | IN | 0.03 ETH | 0.00461768 | ||||
| Public Mint | 15410307 | 1300 days ago | IN | 0.03 ETH | 0.00443855 |
Latest 7 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 15410510 | 1300 days ago | 0.63 ETH | ||||
| Transfer | 15410455 | 1300 days ago | 0.03 ETH | ||||
| Transfer | 15410304 | 1300 days ago | 0.03 ETH | ||||
| Transfer | 15410304 | 1300 days ago | 0.03 ETH | ||||
| Transfer | 15410304 | 1300 days ago | 0.03 ETH | ||||
| Transfer | 15410293 | 1300 days ago | 0.03 ETH | ||||
| Transfer | 15410293 | 1300 days ago | 0.03 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BigDick
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
/*
bigdick.sol
Contract by @BigDick
*/
contract BigDick is Ownable, ERC721A {
uint256 public MAX_SUPPLY = 5555;
uint256 public TEAM_MINT_MAX = 300;
uint256 public publicPrice = 0.03 ether;
mapping(address => uint256[]) ownedNFTs;
uint256 constant public PUBLIC_MINT_LIMIT_TXN = 20;
uint256 constant public PUBLIC_MINT_LIMIT = 100;
uint256[] _temp;
uint256 public TOTAL_SUPPLY_TEAM;
string public BASE_URI = "https://dicktown.xyz/data/";
string public CONTRACT_URI = "https://dicktown.xyz/data/global.json";
bool public paused = true;
address public teamWallet = 0x1229D228F1D5c542B65ff23133012F9529C260dA;
mapping(address => bool) public userMintedFree;
mapping(address => uint256) public numUserMints;
constructor() ERC721A("DickTown", "MrDick") { }
function _startTokenId() internal view virtual override returns (uint256) {
return 1;
}
function refundOverpay(uint256 price) private {
if (msg.value > price) {
(bool succ, ) = payable(msg.sender).call{
value: (msg.value - price)
}("");
require(succ, "Transfer failed");
}
else if (msg.value < price) {
revert("Not enough ETH sent");
}
}
function writeNFTs(address _who, uint256[] memory _ids) internal {
for (uint i = 0; i < _ids.length;) {
ownedNFTs[_who].push(_ids[i]);
i++;
}
}
function removeNFTs(address _who, uint256 _value) internal {
uint _index = findIndex(_who, _value);
ownedNFTs[_who][_index] = ownedNFTs[_who][ownedNFTs[_who].length - 1];
ownedNFTs[_who].pop();
}
function findIndex(address _who, uint256 _value) internal view returns (uint256) {
for (uint i = 0; i < ownedNFTs[_who].length;) {
if (ownedNFTs[_who][i] == _value) {
return i;
}
i++;
}
revert();
}
function readNFTs(address _who) public view returns(uint256[] memory) {
return ownedNFTs[_who];
}
//Public Functions
function setMaxSupply(uint256 _maxsupply) public onlyOwner {
MAX_SUPPLY = _maxsupply;
}
function teamMint(uint256 quantity) public payable mintCompliance(quantity) {
require(msg.sender == teamWallet, "Team minting only");
require(TOTAL_SUPPLY_TEAM + quantity <= TEAM_MINT_MAX, "No team mints left");
TOTAL_SUPPLY_TEAM += quantity;
_safeMint(msg.sender, quantity);
}
function publicMint(uint256 quantity) external payable mintCompliance(quantity) {
require(quantity <= PUBLIC_MINT_LIMIT_TXN, "Quantity too high");
require(quantity >= 1, "Minimum to mint is 1");
uint256 price = publicPrice;
uint256 currMints = numUserMints[msg.sender];
uint256 countToPay = quantity;
require(currMints + quantity <= PUBLIC_MINT_LIMIT, "User max mint limit");
if(!userMintedFree[msg.sender]) {
userMintedFree[msg.sender] = true;
countToPay = countToPay - 1;
}
refundOverpay(price * countToPay);
numUserMints[msg.sender] = (currMints + quantity);
_safeMint(msg.sender, quantity);
}
//View Functions
function walletOfOwner(address _owner) public view returns (uint256[] memory)
{
uint256 ownerTokenCount = balanceOf(_owner);
uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
uint256 currentTokenId = 1;
uint256 ownedTokenIndex = 0;
while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) {
address currentTokenOwner = ownerOf(currentTokenId);
if (currentTokenOwner == _owner) {
ownedTokenIds[ownedTokenIndex] = currentTokenId;
ownedTokenIndex++;
}
currentTokenId++;
}
return ownedTokenIds;
}
function tokenURI(uint256 _tokenId) public view override returns (string memory) {
require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
return string(abi.encodePacked(BASE_URI, Strings.toString(_tokenId), ".json"));
}
// https://docs.opensea.io/docs/contract-level-metadata
// https://ethereum.stackexchange.com/questions/110924/how-to-properly-implement-a-contracturi-for-on-chain-nfts
function contractURI() public view returns (string memory) {
return CONTRACT_URI;
}
function hasUserMintedFree(address _owner) public view returns (bool) {
return userMintedFree[_owner];
}
// Owner Functions
function setTeamMintMax(uint256 _teamMintMax) public onlyOwner {
TEAM_MINT_MAX = _teamMintMax;
}
// Amount in wei
function setPublicPrice(uint256 _publicPrice) public onlyOwner {
publicPrice = _publicPrice;
}
function setBaseURI(string memory _baseUri) public onlyOwner {
BASE_URI = _baseUri;
}
// https://docs.opensea.io/docs/contract-level-metadata
function setContractURI(string memory _contractURI) public onlyOwner {
CONTRACT_URI = _contractURI;
}
// Note: Another option is to inherit Pausable without implementing the logic yourself.
// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/Pausable.sol
function setPaused(bool _state) public onlyOwner {
paused = _state;
}
function setTeamWalletAddress(address _teamWallet) public onlyOwner {
teamWallet = _teamWallet;
}
function withdraw() external onlyOwner {
(bool succ, ) = payable(teamWallet).call{
value: address(this).balance
}("");
require(succ, "Withdraw failed");
}
// Owner-only mint functionality to "Airdrop" mints to specific users
// Note: These will likely end up hidden on OpenSea
function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) {
_safeMint(receiver, quantity);
}
// Modifiers
modifier mintCompliance(uint256 quantity) {
require(!paused, "Contract is paused");
require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left");
require(tx.origin == msg.sender, "No contract minting");
_;
}
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal override {
delete _temp;
for (uint256 i = 0; i < quantity; i++) {
_temp.push(startTokenId + i);
}
if (ownedNFTs[from].length != 0) {
removeNFTs(from, startTokenId);
}
writeNFTs(to, _temp);
super._beforeTokenTransfers(from, to, startTokenId, quantity);
}
}// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import './IERC721A.sol';
/**
* @dev ERC721 token receiver interface.
*/
interface ERC721A__IERC721Receiver {
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
*
* Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
*
* Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is IERC721A {
// Mask of an entry in packed address data.
uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;
// The bit position of `numberMinted` in packed address data.
uint256 private constant BITPOS_NUMBER_MINTED = 64;
// The bit position of `numberBurned` in packed address data.
uint256 private constant BITPOS_NUMBER_BURNED = 128;
// The bit position of `aux` in packed address data.
uint256 private constant BITPOS_AUX = 192;
// Mask of all 256 bits in packed address data except the 64 bits for `aux`.
uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;
// The bit position of `startTimestamp` in packed ownership.
uint256 private constant BITPOS_START_TIMESTAMP = 160;
// The bit mask of the `burned` bit in packed ownership.
uint256 private constant BITMASK_BURNED = 1 << 224;
// The bit position of the `nextInitialized` bit in packed ownership.
uint256 private constant BITPOS_NEXT_INITIALIZED = 225;
// The bit mask of the `nextInitialized` bit in packed ownership.
uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;
// The tokenId of the next token to be minted.
uint256 private _currentIndex;
// The number of tokens burned.
uint256 private _burnCounter;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned.
// See `_packedOwnershipOf` implementation for details.
//
// Bits Layout:
// - [0..159] `addr`
// - [160..223] `startTimestamp`
// - [224] `burned`
// - [225] `nextInitialized`
mapping(uint256 => uint256) private _packedOwnerships;
// Mapping owner address to address data.
//
// Bits Layout:
// - [0..63] `balance`
// - [64..127] `numberMinted`
// - [128..191] `numberBurned`
// - [192..255] `aux`
mapping(address => uint256) private _packedAddressData;
// Mapping from token ID to approved address.
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
/**
* @dev Returns the starting token ID.
* To change the starting token ID, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev Returns the next token ID to be minted.
*/
function _nextTokenId() internal view returns (uint256) {
return _currentIndex;
}
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see `_totalMinted`.
*/
function totalSupply() public view override returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than `_currentIndex - _startTokenId()` times.
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* @dev Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view returns (uint256) {
// Counter underflow is impossible as _currentIndex does not decrement,
// and it is initialized to `_startTokenId()`
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev Returns the total number of tokens burned.
*/
function _totalBurned() internal view returns (uint256) {
return _burnCounter;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
// The interface IDs are constants representing the first 4 bytes of the XOR of
// all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
// e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
return
interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return uint64(_packedAddressData[owner] >> BITPOS_AUX);
}
/**
* Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
* If there are multiple variables, please pack them into a uint64.
*/
function _setAux(address owner, uint64 aux) internal {
uint256 packed = _packedAddressData[owner];
uint256 auxCasted;
assembly { // Cast aux without masking.
auxCasted := aux
}
packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
_packedAddressData[owner] = packed;
}
/**
* Returns the packed ownership data of `tokenId`.
*/
function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr)
if (curr < _currentIndex) {
uint256 packed = _packedOwnerships[curr];
// If not burned.
if (packed & BITMASK_BURNED == 0) {
// Invariant:
// There will always be an ownership that has an address and is not burned
// before an ownership that does not have an address and is not burned.
// Hence, curr will not underflow.
//
// We can directly compare the packed value.
// If the address is zero, packed is zero.
while (packed == 0) {
packed = _packedOwnerships[--curr];
}
return packed;
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* Returns the unpacked `TokenOwnership` struct from `packed`.
*/
function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
ownership.addr = address(uint160(packed));
ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
ownership.burned = packed & BITMASK_BURNED != 0;
}
/**
* Returns the unpacked `TokenOwnership` struct at `index`.
*/
function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnerships[index]);
}
/**
* @dev Initializes the ownership slot minted at `index` for efficiency purposes.
*/
function _initializeOwnershipAt(uint256 index) internal {
if (_packedOwnerships[index] == 0) {
_packedOwnerships[index] = _packedOwnershipOf(index);
}
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnershipOf(tokenId));
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return address(uint160(_packedOwnershipOf(tokenId)));
}
/**
* @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) {
if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
string memory baseURI = _baseURI();
return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return '';
}
/**
* @dev Casts the address to uint256 without masking.
*/
function _addressToUint256(address value) private pure returns (uint256 result) {
assembly {
result := value
}
}
/**
* @dev Casts the boolean to uint256 without branching.
*/
function _boolToUint256(bool value) private pure returns (uint256 result) {
assembly {
result := value
}
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public override {
address owner = address(uint160(_packedOwnershipOf(tokenId)));
if (to == owner) revert ApprovalToCurrentOwner();
if (_msgSenderERC721A() != owner)
if (!isApprovedForAll(owner, _msgSenderERC721A())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
if (operator == _msgSenderERC721A()) revert ApproveToCaller();
_operatorApprovals[_msgSenderERC721A()][operator] = approved;
emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
_transfer(from, to, tokenId);
if (to.code.length != 0)
if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return
_startTokenId() <= tokenId &&
tokenId < _currentIndex && // If within bounds,
_packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
}
/**
* @dev Equivalent to `_safeMint(to, quantity, '')`.
*/
function _safeMint(address to, uint256 quantity) internal {
_safeMint(to, quantity, '');
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the balance and number minted.
_packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] =
_addressToUint256(to) |
(block.timestamp << BITPOS_START_TIMESTAMP) |
(_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);
uint256 updatedIndex = startTokenId;
uint256 end = updatedIndex + quantity;
if (to.code.length != 0) {
do {
emit Transfer(address(0), to, updatedIndex);
if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (updatedIndex < end);
// Reentrancy protection
if (_currentIndex != startTokenId) revert();
} else {
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex < end);
}
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 quantity) internal {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the balance and number minted.
_packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] =
_addressToUint256(to) |
(block.timestamp << BITPOS_START_TIMESTAMP) |
(_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);
uint256 updatedIndex = startTokenId;
uint256 end = updatedIndex + quantity;
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex < end);
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) private {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();
bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
isApprovedForAll(from, _msgSenderERC721A()) ||
getApproved(tokenId) == _msgSenderERC721A());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner.
delete _tokenApprovals[tokenId];
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
// We can directly increment and decrement the balances.
--_packedAddressData[from]; // Updates: `balance -= 1`.
++_packedAddressData[to]; // Updates: `balance += 1`.
// Updates:
// - `address` to the next owner.
// - `startTimestamp` to the timestamp of transfering.
// - `burned` to `false`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] =
_addressToUint256(to) |
(block.timestamp << BITPOS_START_TIMESTAMP) |
BITMASK_NEXT_INITIALIZED;
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Equivalent to `_burn(tokenId, false)`.
*/
function _burn(uint256 tokenId) internal virtual {
_burn(tokenId, false);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
address from = address(uint160(prevOwnershipPacked));
if (approvalCheck) {
bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
isApprovedForAll(from, _msgSenderERC721A()) ||
getApproved(tokenId) == _msgSenderERC721A());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner.
delete _tokenApprovals[tokenId];
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
// Updates:
// - `balance -= 1`.
// - `numberBurned += 1`.
//
// We can directly decrement the balance, and increment the number burned.
// This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
_packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;
// Updates:
// - `address` to the last owner.
// - `startTimestamp` to the timestamp of burning.
// - `burned` to `true`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] =
_addressToUint256(from) |
(block.timestamp << BITPOS_START_TIMESTAMP) |
BITMASK_BURNED |
BITMASK_NEXT_INITIALIZED;
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
bytes4 retval
) {
return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
* And also called before burning one token.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
* And also called after one token has been burned.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Returns the message sender (defaults to `msg.sender`).
*
* If you are writing GSN compatible contracts, you need to override this function.
*/
function _msgSenderERC721A() internal view virtual returns (address) {
return msg.sender;
}
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function _toString(uint256 value) internal pure returns (string memory ptr) {
assembly {
// The maximum value of a uint256 contains 78 digits (1 byte per digit),
// but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
// We will need 1 32-byte word to store the length,
// and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
ptr := add(mload(0x40), 128)
// Update the free memory pointer to allocate.
mstore(0x40, ptr)
// Cache the end of the memory to calculate the length later.
let end := ptr
// We write the string from the rightmost digit to the leftmost digit.
// The following is essentially a do-while loop that also handles the zero case.
// Costs a bit more than early returning for the zero case,
// but cheaper in terms of deployment and overall runtime costs.
for {
// Initialize and perform the first pass without check.
let temp := value
// Move the pointer 1 byte leftwards to point to an empty character slot.
ptr := sub(ptr, 1)
// Write the character to the pointer. 48 is the ASCII index of '0'.
mstore8(ptr, add(48, mod(temp, 10)))
temp := div(temp, 10)
} temp {
// Keep dividing `temp` until zero.
temp := div(temp, 10)
} { // Body of the for loop.
ptr := sub(ptr, 1)
mstore8(ptr, add(48, mod(temp, 10)))
}
let length := sub(end, ptr)
// Move the pointer 32 bytes leftwards to make room for the length.
ptr := sub(ptr, 32)
// Store the length.
mstore(ptr, length)
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of an ERC721A compliant contract.
*/
interface IERC721A {
/**
* The caller must own the token or be an approved operator.
*/
error ApprovalCallerNotOwnerNorApproved();
/**
* The token does not exist.
*/
error ApprovalQueryForNonexistentToken();
/**
* The caller cannot approve to their own address.
*/
error ApproveToCaller();
/**
* The caller cannot approve to the current owner.
*/
error ApprovalToCurrentOwner();
/**
* Cannot query the balance for the zero address.
*/
error BalanceQueryForZeroAddress();
/**
* Cannot mint to the zero address.
*/
error MintToZeroAddress();
/**
* The quantity of tokens minted must be more than zero.
*/
error MintZeroQuantity();
/**
* The token does not exist.
*/
error OwnerQueryForNonexistentToken();
/**
* The caller must own the token or be an approved operator.
*/
error TransferCallerNotOwnerNorApproved();
/**
* The token must be owned by `from`.
*/
error TransferFromIncorrectOwner();
/**
* Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
*/
error TransferToNonERC721ReceiverImplementer();
/**
* Cannot transfer to the zero address.
*/
error TransferToZeroAddress();
/**
* The token does not exist.
*/
error URIQueryForNonexistentToken();
struct TokenOwnership {
// The address of the owner.
address addr;
// Keeps track of the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
}
/**
* @dev Returns the total amount of tokens stored by the contract.
*
* Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
*/
function totalSupply() external view returns (uint256);
// ==============================
// 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);
// ==============================
// IERC721
// ==============================
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account 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);
// ==============================
// IERC721Metadata
// ==============================
/**
* @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/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;
}
}{
"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":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_MINT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY_TEAM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"hasUserMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_who","type":"address"}],"name":"readNFTs","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxsupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamMintMax","type":"uint256"}],"name":"setTeamMintMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"name":"setTeamWalletAddress","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":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"userMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526115b360095561012c600a55666a94d74f430000600b556040518060400160405280601a81526020017f68747470733a2f2f6469636b746f776e2e78797a2f646174612f000000000000815250600f908162000061919062000528565b506040518060600160405280602581526020016200514260259139601090816200008c919062000528565b506001601160006101000a81548160ff021916908315150217905550731229d228f1d5c542b65ff23133012f9529c260da601160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200010a57600080fd5b506040518060400160405280600881526020017f4469636b546f776e0000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d724469636b0000000000000000000000000000000000000000000000000000815250620001976200018b620001d960201b60201c565b620001e160201b60201c565b8160039081620001a8919062000528565b508060049081620001ba919062000528565b50620001cb620002a560201b60201c565b60018190555050506200060f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033057607f821691505b602082108103620003465762000345620002e8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003b07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000371565b620003bc868362000371565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200040962000403620003fd84620003d4565b620003de565b620003d4565b9050919050565b6000819050919050565b6200042583620003e8565b6200043d620004348262000410565b8484546200037e565b825550505050565b600090565b6200045462000445565b620004618184846200041a565b505050565b5b8181101562000489576200047d6000826200044a565b60018101905062000467565b5050565b601f821115620004d857620004a2816200034c565b620004ad8462000361565b81016020851015620004bd578190505b620004d5620004cc8562000361565b83018262000466565b50505b505050565b600082821c905092915050565b6000620004fd60001984600802620004dd565b1980831691505092915050565b6000620005188383620004ea565b9150826002028217905092915050565b6200053382620002ae565b67ffffffffffffffff8111156200054f576200054e620002b9565b5b6200055b825462000317565b620005688282856200048d565b600060209050601f831160018114620005a057600084156200058b578287015190505b6200059785826200050a565b86555062000607565b601f198416620005b0866200034c565b60005b82811015620005da57848901518255600182019150602085019450602081019050620005b3565b86831015620005fa5784890151620005f6601f891682620004ea565b8355505b6001600288020188555050505b505050505050565b614b23806200061f6000396000f3fe6080604052600436106102675760003560e01c80636b39fca411610144578063a945bf80116100b6578063c87b56dd1161007a578063c87b56dd146108fe578063dbddb26a1461093b578063e8a3d48514610966578063e985e9c514610991578063f2fde38b146109ce578063f326440c146109f757610267565b8063a945bf8014610819578063b88d4fde14610844578063bceae77b1461086d578063c250340514610898578063c6275255146108d557610267565b80637aeb7242116101085780637aeb72421461070b5780638da5cb5b146107485780639007bd7214610773578063938e3d7b1461079c57806395d89b41146107c5578063a22cb465146107f057610267565b80636b39fca4146106385780636f8b44b01461066357806370a082311461068c578063715018a6146106c9578063763ea95f146106e057610267565b80632fecf20b116101dd57806355f804b3116101a157806355f804b31461051457806356b4f6731461053d57806359927044146105685780635c975abb146105935780636352211e146105be57806364f64076146105fb57610267565b80632fecf20b1461044157806332cb6b0c1461046c5780633ccfd60b1461049757806342842e0e146104ae578063438b6300146104d757610267565b806316c38b3c1161022f57806316c38b3c1461036357806318160ddd1461038c57806323b872dd146103b75780632c4b2334146103e05780632db11544146104095780632fbba1151461042557610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630f15ad8d1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906135a0565b610a34565b6040516102a091906135e8565b60405180910390f35b3480156102b557600080fd5b506102be610ac6565b6040516102cb919061369c565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906136f4565b610b58565b6040516103089190613762565b60405180910390f35b34801561031d57600080fd5b50610338600480360381019061033391906137a9565b610bd4565b005b34801561034657600080fd5b50610361600480360381019061035c91906136f4565b610d7a565b005b34801561036f57600080fd5b5061038a60048036038101906103859190613815565b610e00565b005b34801561039857600080fd5b506103a1610e99565b6040516103ae9190613851565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d9919061386c565b610eb0565b005b3480156103ec57600080fd5b50610407600480360381019061040291906138bf565b610ec0565b005b610423600480360381019061041e91906136f4565b610f80565b005b61043f600480360381019061043a91906136f4565b6112ea565b005b34801561044d57600080fd5b50610456611509565b6040516104639190613851565b60405180910390f35b34801561047857600080fd5b5061048161150e565b60405161048e9190613851565b60405180910390f35b3480156104a357600080fd5b506104ac611514565b005b3480156104ba57600080fd5b506104d560048036038101906104d0919061386c565b611661565b005b3480156104e357600080fd5b506104fe60048036038101906104f991906138bf565b611681565b60405161050b91906139aa565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190613b01565b61178b565b005b34801561054957600080fd5b5061055261181a565b60405161055f919061369c565b60405180910390f35b34801561057457600080fd5b5061057d6118a8565b60405161058a9190613762565b60405180910390f35b34801561059f57600080fd5b506105a86118ce565b6040516105b591906135e8565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e091906136f4565b6118e1565b6040516105f29190613762565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d91906138bf565b6118f3565b60405161062f91906135e8565b60405180910390f35b34801561064457600080fd5b5061064d611913565b60405161065a9190613851565b60405180910390f35b34801561066f57600080fd5b5061068a600480360381019061068591906136f4565b611919565b005b34801561069857600080fd5b506106b360048036038101906106ae91906138bf565b61199f565b6040516106c09190613851565b60405180910390f35b3480156106d557600080fd5b506106de611a57565b005b3480156106ec57600080fd5b506106f5611adf565b6040516107029190613851565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d91906138bf565b611ae5565b60405161073f9190613851565b60405180910390f35b34801561075457600080fd5b5061075d611afd565b60405161076a9190613762565b60405180910390f35b34801561077f57600080fd5b5061079a60048036038101906107959190613b4a565b611b26565b005b3480156107a857600080fd5b506107c360048036038101906107be9190613b01565b611cc7565b005b3480156107d157600080fd5b506107da611d56565b6040516107e7919061369c565b60405180910390f35b3480156107fc57600080fd5b5061081760048036038101906108129190613b8a565b611de8565b005b34801561082557600080fd5b5061082e611f5f565b60405161083b9190613851565b60405180910390f35b34801561085057600080fd5b5061086b60048036038101906108669190613c6b565b611f65565b005b34801561087957600080fd5b50610882611fd8565b60405161088f9190613851565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba91906138bf565b611fdd565b6040516108cc91906135e8565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f791906136f4565b612033565b005b34801561090a57600080fd5b50610925600480360381019061092091906136f4565b6120b9565b604051610932919061369c565b60405180910390f35b34801561094757600080fd5b50610950612135565b60405161095d919061369c565b60405180910390f35b34801561097257600080fd5b5061097b6121c3565b604051610988919061369c565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b39190613cee565b612255565b6040516109c591906135e8565b60405180910390f35b3480156109da57600080fd5b506109f560048036038101906109f091906138bf565b6122e9565b005b348015610a0357600080fd5b50610a1e6004803603810190610a1991906138bf565b6123e0565b604051610a2b91906139aa565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abf5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610ad590613d5d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0190613d5d565b8015610b4e5780601f10610b2357610100808354040283529160200191610b4e565b820191906000526020600020905b815481529060010190602001808311610b3157829003601f168201915b5050505050905090565b6000610b6382612477565b610b99576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bdf826124d6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c46576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c656125a2565b73ffffffffffffffffffffffffffffffffffffffff1614610cc857610c9181610c8c6125a2565b612255565b610cc7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610d826125aa565b73ffffffffffffffffffffffffffffffffffffffff16610da0611afd565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90613dda565b60405180910390fd5b80600a8190555050565b610e086125aa565b73ffffffffffffffffffffffffffffffffffffffff16610e26611afd565b73ffffffffffffffffffffffffffffffffffffffff1614610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7390613dda565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610ea36125b2565b6002546001540303905090565b610ebb8383836125bb565b505050565b610ec86125aa565b73ffffffffffffffffffffffffffffffffffffffff16610ee6611afd565b73ffffffffffffffffffffffffffffffffffffffff1614610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3390613dda565b60405180910390fd5b80601160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b80601160009054906101000a900460ff1615610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890613e46565b60405180910390fd5b60095481610fdd610e99565b610fe79190613e95565b1115611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f90613f37565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d90613fa3565b60405180910390fd5b60148211156110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d19061400f565b60405180910390fd5b600182101561111e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111159061407b565b60405180910390fd5b6000600b5490506000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008490506064858361117c9190613e95565b11156111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b4906140e7565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611276576001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001816112739190614107565b90505b61128a8184611285919061413b565b612962565b84826112969190613e95565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112e33386612a6e565b5050505050565b80601160009054906101000a900460ff161561133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290613e46565b60405180910390fd5b60095481611347610e99565b6113519190613e95565b1115611392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138990613f37565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790613fa3565b60405180910390fd5b601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611487906141e1565b60405180910390fd5b600a5482600e546114a19190613e95565b11156114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d99061424d565b60405180910390fd5b81600e60008282546114f49190613e95565b925050819055506115053383612a6e565b5050565b601481565b60095481565b61151c6125aa565b73ffffffffffffffffffffffffffffffffffffffff1661153a611afd565b73ffffffffffffffffffffffffffffffffffffffff1614611590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158790613dda565b60405180910390fd5b6000601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516115d89061429e565b60006040518083038185875af1925050503d8060008114611615576040519150601f19603f3d011682016040523d82523d6000602084013e61161a565b606091505b505090508061165e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611655906142ff565b60405180910390fd5b50565b61167c83838360405180602001604052806000815250611f65565b505050565b6060600061168e8361199f565b905060008167ffffffffffffffff8111156116ac576116ab6139d6565b5b6040519080825280602002602001820160405280156116da5781602001602082028036833780820191505090505b50905060006001905060005b83811080156116f757506009548211155b1561177f576000611707836118e1565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361176b57828483815181106117505761174f61431f565b5b60200260200101818152505081806117679061434e565b9250505b82806117769061434e565b935050506116e6565b82945050505050919050565b6117936125aa565b73ffffffffffffffffffffffffffffffffffffffff166117b1611afd565b73ffffffffffffffffffffffffffffffffffffffff1614611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe90613dda565b60405180910390fd5b80600f90816118169190614542565b5050565b6010805461182790613d5d565b80601f016020809104026020016040519081016040528092919081815260200182805461185390613d5d565b80156118a05780601f10611875576101008083540402835291602001916118a0565b820191906000526020600020905b81548152906001019060200180831161188357829003601f168201915b505050505081565b601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160009054906101000a900460ff1681565b60006118ec826124d6565b9050919050565b60126020528060005260406000206000915054906101000a900460ff1681565b600a5481565b6119216125aa565b73ffffffffffffffffffffffffffffffffffffffff1661193f611afd565b73ffffffffffffffffffffffffffffffffffffffff1614611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90613dda565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a06576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611a5f6125aa565b73ffffffffffffffffffffffffffffffffffffffff16611a7d611afd565b73ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90613dda565b60405180910390fd5b611add6000612a8c565b565b600e5481565b60136020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b2e6125aa565b73ffffffffffffffffffffffffffffffffffffffff16611b4c611afd565b73ffffffffffffffffffffffffffffffffffffffff1614611ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9990613dda565b60405180910390fd5b81601160009054906101000a900460ff1615611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea90613e46565b60405180910390fd5b60095481611bff610e99565b611c099190613e95565b1115611c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4190613f37565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf90613fa3565b60405180910390fd5b611cc28284612a6e565b505050565b611ccf6125aa565b73ffffffffffffffffffffffffffffffffffffffff16611ced611afd565b73ffffffffffffffffffffffffffffffffffffffff1614611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a90613dda565b60405180910390fd5b8060109081611d529190614542565b5050565b606060048054611d6590613d5d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9190613d5d565b8015611dde5780601f10611db357610100808354040283529160200191611dde565b820191906000526020600020905b815481529060010190602001808311611dc157829003601f168201915b5050505050905090565b611df06125a2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e54576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611e616125a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f0e6125a2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f5391906135e8565b60405180910390a35050565b600b5481565b611f708484846125bb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fd257611f9b84848484612b50565b611fd1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606481565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61203b6125aa565b73ffffffffffffffffffffffffffffffffffffffff16612059611afd565b73ffffffffffffffffffffffffffffffffffffffff16146120af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a690613dda565b60405180910390fd5b80600b8190555050565b60606120c482612477565b612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa90614686565b60405180910390fd5b600f61210e83612ca0565b60405160200161211f9291906147b1565b6040516020818303038152906040529050919050565b600f805461214290613d5d565b80601f016020809104026020016040519081016040528092919081815260200182805461216e90613d5d565b80156121bb5780601f10612190576101008083540402835291602001916121bb565b820191906000526020600020905b81548152906001019060200180831161219e57829003601f168201915b505050505081565b6060601080546121d290613d5d565b80601f01602080910402602001604051908101604052809291908181526020018280546121fe90613d5d565b801561224b5780601f106122205761010080835404028352916020019161224b565b820191906000526020600020905b81548152906001019060200180831161222e57829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122f16125aa565b73ffffffffffffffffffffffffffffffffffffffff1661230f611afd565b73ffffffffffffffffffffffffffffffffffffffff1614612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c90613dda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb90614852565b60405180910390fd5b6123dd81612a8c565b50565b6060600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561246b57602002820191906000526020600020905b815481526020019060010190808311612457575b50505050509050919050565b6000816124826125b2565b11158015612491575060015482105b80156124cf575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600080829050806124e56125b2565b1161256b5760015481101561256a5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612568575b6000810361255e576005600083600190039350838152602001908152602001600020549050612534565b809250505061259d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b60006125c6826124d6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461262d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661264e6125a2565b73ffffffffffffffffffffffffffffffffffffffff16148061267d575061267c856126776125a2565b612255565b5b806126c2575061268b6125a2565b73ffffffffffffffffffffffffffffffffffffffff166126aa84610b58565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126fb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612761576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61276e8585856001612e00565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61286b86612f22565b1717600560008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036128f357600060018401905060006005600083815260200190815260200160002054036128f15760015481146128f0578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461295b8585856001612f2c565b5050505050565b80341115612a275760003373ffffffffffffffffffffffffffffffffffffffff16823461298f9190614107565b60405161299b9061429e565b60006040518083038185875af1925050503d80600081146129d8576040519150601f19603f3d011682016040523d82523d6000602084013e6129dd565b606091505b5050905080612a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a18906148be565b60405180910390fd5b50612a6b565b80341015612a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a619061492a565b60405180910390fd5b5b50565b612a88828260405180602001604052806000815250612f32565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b766125a2565b8786866040518563ffffffff1660e01b8152600401612b98949392919061499f565b6020604051808303816000875af1925050508015612bd457506040513d601f19601f82011682018060405250810190612bd19190614a00565b60015b612c4d573d8060008114612c04576040519150601f19603f3d011682016040523d82523d6000602084013e612c09565b606091505b506000815103612c45576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612ce7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dfb565b600082905060005b60008214612d19578080612d029061434e565b915050600a82612d129190614a5c565b9150612cef565b60008167ffffffffffffffff811115612d3557612d346139d6565b5b6040519080825280601f01601f191660200182016040528015612d675781602001600182028036833780820191505090505b5090505b60008514612df457600182612d809190614107565b9150600a85612d8f9190614a8d565b6030612d9b9190613e95565b60f81b818381518110612db157612db061431f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ded9190614a5c565b9450612d6b565b8093505050505b919050565b600d6000612e0e91906134f6565b60005b81811015612e6057600d8184612e279190613e95565b90806001815401808255809150506001900390600052602060002001600090919091909150558080612e589061434e565b915050612e11565b506000600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905014612eb657612eb584836131e6565b5b612f1083600d805480602002602001604051908101604052809291908181526020018280548015612f0657602002820191906000526020600020905b815481526020019060010190808311612ef2575b5050505050613367565b612f1c8484848461340b565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612f9f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612fd9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612fe66000858386612e00565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161304b60018514613411565b901b60a042901b61305b86612f22565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461315f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461310f6000878480600101955087612b50565b613145576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106130a057826001541461315a57600080fd5b6131ca565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613160575b8160018190555050506131e06000858386612f2c565b50505050565b60006131f2838361341b565b9050600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506132829190614107565b815481106132935761329261431f565b5b9060005260206000200154600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481106132ef576132ee61431f565b5b9060005260206000200181905550600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548061334c5761334b614abe565b5b60019003818190600052602060002001600090559055505050565b60005b815181101561340657600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208282815181106133c5576133c461431f565b5b6020026020010151908060018154018082558091505060019003906000526020600020016000909190919091505580806133fe9061434e565b91505061336a565b505050565b50505050565b6000819050919050565b600080600090505b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508110156134eb5782600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481106134bf576134be61431f565b5b9060005260206000200154036134d857809150506134f0565b80806134e39061434e565b915050613423565b600080fd5b92915050565b50805460008255906000526020600020908101906135149190613517565b50565b5b80821115613530576000816000905550600101613518565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61357d81613548565b811461358857600080fd5b50565b60008135905061359a81613574565b92915050565b6000602082840312156135b6576135b561353e565b5b60006135c48482850161358b565b91505092915050565b60008115159050919050565b6135e2816135cd565b82525050565b60006020820190506135fd60008301846135d9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561363d578082015181840152602081019050613622565b8381111561364c576000848401525b50505050565b6000601f19601f8301169050919050565b600061366e82613603565b613678818561360e565b935061368881856020860161361f565b61369181613652565b840191505092915050565b600060208201905081810360008301526136b68184613663565b905092915050565b6000819050919050565b6136d1816136be565b81146136dc57600080fd5b50565b6000813590506136ee816136c8565b92915050565b60006020828403121561370a5761370961353e565b5b6000613718848285016136df565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061374c82613721565b9050919050565b61375c81613741565b82525050565b60006020820190506137776000830184613753565b92915050565b61378681613741565b811461379157600080fd5b50565b6000813590506137a38161377d565b92915050565b600080604083850312156137c0576137bf61353e565b5b60006137ce85828601613794565b92505060206137df858286016136df565b9150509250929050565b6137f2816135cd565b81146137fd57600080fd5b50565b60008135905061380f816137e9565b92915050565b60006020828403121561382b5761382a61353e565b5b600061383984828501613800565b91505092915050565b61384b816136be565b82525050565b60006020820190506138666000830184613842565b92915050565b6000806000606084860312156138855761388461353e565b5b600061389386828701613794565b93505060206138a486828701613794565b92505060406138b5868287016136df565b9150509250925092565b6000602082840312156138d5576138d461353e565b5b60006138e384828501613794565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613921816136be565b82525050565b60006139338383613918565b60208301905092915050565b6000602082019050919050565b6000613957826138ec565b61396181856138f7565b935061396c83613908565b8060005b8381101561399d5781516139848882613927565b975061398f8361393f565b925050600181019050613970565b5085935050505092915050565b600060208201905081810360008301526139c4818461394c565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a0e82613652565b810181811067ffffffffffffffff82111715613a2d57613a2c6139d6565b5b80604052505050565b6000613a40613534565b9050613a4c8282613a05565b919050565b600067ffffffffffffffff821115613a6c57613a6b6139d6565b5b613a7582613652565b9050602081019050919050565b82818337600083830152505050565b6000613aa4613a9f84613a51565b613a36565b905082815260208101848484011115613ac057613abf6139d1565b5b613acb848285613a82565b509392505050565b600082601f830112613ae857613ae76139cc565b5b8135613af8848260208601613a91565b91505092915050565b600060208284031215613b1757613b1661353e565b5b600082013567ffffffffffffffff811115613b3557613b34613543565b5b613b4184828501613ad3565b91505092915050565b60008060408385031215613b6157613b6061353e565b5b6000613b6f858286016136df565b9250506020613b8085828601613794565b9150509250929050565b60008060408385031215613ba157613ba061353e565b5b6000613baf85828601613794565b9250506020613bc085828601613800565b9150509250929050565b600067ffffffffffffffff821115613be557613be46139d6565b5b613bee82613652565b9050602081019050919050565b6000613c0e613c0984613bca565b613a36565b905082815260208101848484011115613c2a57613c296139d1565b5b613c35848285613a82565b509392505050565b600082601f830112613c5257613c516139cc565b5b8135613c62848260208601613bfb565b91505092915050565b60008060008060808587031215613c8557613c8461353e565b5b6000613c9387828801613794565b9450506020613ca487828801613794565b9350506040613cb5878288016136df565b925050606085013567ffffffffffffffff811115613cd657613cd5613543565b5b613ce287828801613c3d565b91505092959194509250565b60008060408385031215613d0557613d0461353e565b5b6000613d1385828601613794565b9250506020613d2485828601613794565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d7557607f821691505b602082108103613d8857613d87613d2e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613dc460208361360e565b9150613dcf82613d8e565b602082019050919050565b60006020820190508181036000830152613df381613db7565b9050919050565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b6000613e3060128361360e565b9150613e3b82613dfa565b602082019050919050565b60006020820190508181036000830152613e5f81613e23565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ea0826136be565b9150613eab836136be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ee057613edf613e66565b5b828201905092915050565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b6000613f2160158361360e565b9150613f2c82613eeb565b602082019050919050565b60006020820190508181036000830152613f5081613f14565b9050919050565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b6000613f8d60138361360e565b9150613f9882613f57565b602082019050919050565b60006020820190508181036000830152613fbc81613f80565b9050919050565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b6000613ff960118361360e565b915061400482613fc3565b602082019050919050565b6000602082019050818103600083015261402881613fec565b9050919050565b7f4d696e696d756d20746f206d696e742069732031000000000000000000000000600082015250565b600061406560148361360e565b91506140708261402f565b602082019050919050565b6000602082019050818103600083015261409481614058565b9050919050565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b60006140d160138361360e565b91506140dc8261409b565b602082019050919050565b60006020820190508181036000830152614100816140c4565b9050919050565b6000614112826136be565b915061411d836136be565b9250828210156141305761412f613e66565b5b828203905092915050565b6000614146826136be565b9150614151836136be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561418a57614189613e66565b5b828202905092915050565b7f5465616d206d696e74696e67206f6e6c79000000000000000000000000000000600082015250565b60006141cb60118361360e565b91506141d682614195565b602082019050919050565b600060208201905081810360008301526141fa816141be565b9050919050565b7f4e6f207465616d206d696e7473206c6566740000000000000000000000000000600082015250565b600061423760128361360e565b915061424282614201565b602082019050919050565b600060208201905081810360008301526142668161422a565b9050919050565b600081905092915050565b50565b600061428860008361426d565b915061429382614278565b600082019050919050565b60006142a98261427b565b9150819050919050565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b60006142e9600f8361360e565b91506142f4826142b3565b602082019050919050565b60006020820190508181036000830152614318816142dc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614359826136be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361438b5761438a613e66565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026143f87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826143bb565b61440286836143bb565b95508019841693508086168417925050509392505050565b6000819050919050565b600061443f61443a614435846136be565b61441a565b6136be565b9050919050565b6000819050919050565b61445983614424565b61446d61446582614446565b8484546143c8565b825550505050565b600090565b614482614475565b61448d818484614450565b505050565b5b818110156144b1576144a660008261447a565b600181019050614493565b5050565b601f8211156144f6576144c781614396565b6144d0846143ab565b810160208510156144df578190505b6144f36144eb856143ab565b830182614492565b50505b505050565b600082821c905092915050565b6000614519600019846008026144fb565b1980831691505092915050565b60006145328383614508565b9150826002028217905092915050565b61454b82613603565b67ffffffffffffffff811115614564576145636139d6565b5b61456e8254613d5d565b6145798282856144b5565b600060209050601f8311600181146145ac576000841561459a578287015190505b6145a48582614526565b86555061460c565b601f1984166145ba86614396565b60005b828110156145e2578489015182556001820191506020850194506020810190506145bd565b868310156145ff57848901516145fb601f891682614508565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614670602f8361360e565b915061467b82614614565b604082019050919050565b6000602082019050818103600083015261469f81614663565b9050919050565b600081905092915050565b600081546146be81613d5d565b6146c881866146a6565b945060018216600081146146e357600181146146f85761472b565b60ff198316865281151582028601935061472b565b61470185614396565b60005b8381101561472357815481890152600182019150602081019050614704565b838801955050505b50505092915050565b600061473f82613603565b61474981856146a6565b935061475981856020860161361f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061479b6005836146a6565b91506147a682614765565b600582019050919050565b60006147bd82856146b1565b91506147c98284614734565b91506147d48261478e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061483c60268361360e565b9150614847826147e0565b604082019050919050565b6000602082019050818103600083015261486b8161482f565b9050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b60006148a8600f8361360e565b91506148b382614872565b602082019050919050565b600060208201905081810360008301526148d78161489b565b9050919050565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b600061491460138361360e565b915061491f826148de565b602082019050919050565b6000602082019050818103600083015261494381614907565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006149718261494a565b61497b8185614955565b935061498b81856020860161361f565b61499481613652565b840191505092915050565b60006080820190506149b46000830187613753565b6149c16020830186613753565b6149ce6040830185613842565b81810360608301526149e08184614966565b905095945050505050565b6000815190506149fa81613574565b92915050565b600060208284031215614a1657614a1561353e565b5b6000614a24848285016149eb565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a67826136be565b9150614a72836136be565b925082614a8257614a81614a2d565b5b828204905092915050565b6000614a98826136be565b9150614aa3836136be565b925082614ab357614ab2614a2d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212200add86163aa70a573e89c07f65d8f6e286b0486a603b536bed4419207faaf4b664736f6c634300080f003368747470733a2f2f6469636b746f776e2e78797a2f646174612f676c6f62616c2e6a736f6e
Deployed Bytecode
0x6080604052600436106102675760003560e01c80636b39fca411610144578063a945bf80116100b6578063c87b56dd1161007a578063c87b56dd146108fe578063dbddb26a1461093b578063e8a3d48514610966578063e985e9c514610991578063f2fde38b146109ce578063f326440c146109f757610267565b8063a945bf8014610819578063b88d4fde14610844578063bceae77b1461086d578063c250340514610898578063c6275255146108d557610267565b80637aeb7242116101085780637aeb72421461070b5780638da5cb5b146107485780639007bd7214610773578063938e3d7b1461079c57806395d89b41146107c5578063a22cb465146107f057610267565b80636b39fca4146106385780636f8b44b01461066357806370a082311461068c578063715018a6146106c9578063763ea95f146106e057610267565b80632fecf20b116101dd57806355f804b3116101a157806355f804b31461051457806356b4f6731461053d57806359927044146105685780635c975abb146105935780636352211e146105be57806364f64076146105fb57610267565b80632fecf20b1461044157806332cb6b0c1461046c5780633ccfd60b1461049757806342842e0e146104ae578063438b6300146104d757610267565b806316c38b3c1161022f57806316c38b3c1461036357806318160ddd1461038c57806323b872dd146103b75780632c4b2334146103e05780632db11544146104095780632fbba1151461042557610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630f15ad8d1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906135a0565b610a34565b6040516102a091906135e8565b60405180910390f35b3480156102b557600080fd5b506102be610ac6565b6040516102cb919061369c565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906136f4565b610b58565b6040516103089190613762565b60405180910390f35b34801561031d57600080fd5b50610338600480360381019061033391906137a9565b610bd4565b005b34801561034657600080fd5b50610361600480360381019061035c91906136f4565b610d7a565b005b34801561036f57600080fd5b5061038a60048036038101906103859190613815565b610e00565b005b34801561039857600080fd5b506103a1610e99565b6040516103ae9190613851565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d9919061386c565b610eb0565b005b3480156103ec57600080fd5b50610407600480360381019061040291906138bf565b610ec0565b005b610423600480360381019061041e91906136f4565b610f80565b005b61043f600480360381019061043a91906136f4565b6112ea565b005b34801561044d57600080fd5b50610456611509565b6040516104639190613851565b60405180910390f35b34801561047857600080fd5b5061048161150e565b60405161048e9190613851565b60405180910390f35b3480156104a357600080fd5b506104ac611514565b005b3480156104ba57600080fd5b506104d560048036038101906104d0919061386c565b611661565b005b3480156104e357600080fd5b506104fe60048036038101906104f991906138bf565b611681565b60405161050b91906139aa565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190613b01565b61178b565b005b34801561054957600080fd5b5061055261181a565b60405161055f919061369c565b60405180910390f35b34801561057457600080fd5b5061057d6118a8565b60405161058a9190613762565b60405180910390f35b34801561059f57600080fd5b506105a86118ce565b6040516105b591906135e8565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e091906136f4565b6118e1565b6040516105f29190613762565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d91906138bf565b6118f3565b60405161062f91906135e8565b60405180910390f35b34801561064457600080fd5b5061064d611913565b60405161065a9190613851565b60405180910390f35b34801561066f57600080fd5b5061068a600480360381019061068591906136f4565b611919565b005b34801561069857600080fd5b506106b360048036038101906106ae91906138bf565b61199f565b6040516106c09190613851565b60405180910390f35b3480156106d557600080fd5b506106de611a57565b005b3480156106ec57600080fd5b506106f5611adf565b6040516107029190613851565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d91906138bf565b611ae5565b60405161073f9190613851565b60405180910390f35b34801561075457600080fd5b5061075d611afd565b60405161076a9190613762565b60405180910390f35b34801561077f57600080fd5b5061079a60048036038101906107959190613b4a565b611b26565b005b3480156107a857600080fd5b506107c360048036038101906107be9190613b01565b611cc7565b005b3480156107d157600080fd5b506107da611d56565b6040516107e7919061369c565b60405180910390f35b3480156107fc57600080fd5b5061081760048036038101906108129190613b8a565b611de8565b005b34801561082557600080fd5b5061082e611f5f565b60405161083b9190613851565b60405180910390f35b34801561085057600080fd5b5061086b60048036038101906108669190613c6b565b611f65565b005b34801561087957600080fd5b50610882611fd8565b60405161088f9190613851565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba91906138bf565b611fdd565b6040516108cc91906135e8565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f791906136f4565b612033565b005b34801561090a57600080fd5b50610925600480360381019061092091906136f4565b6120b9565b604051610932919061369c565b60405180910390f35b34801561094757600080fd5b50610950612135565b60405161095d919061369c565b60405180910390f35b34801561097257600080fd5b5061097b6121c3565b604051610988919061369c565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b39190613cee565b612255565b6040516109c591906135e8565b60405180910390f35b3480156109da57600080fd5b506109f560048036038101906109f091906138bf565b6122e9565b005b348015610a0357600080fd5b50610a1e6004803603810190610a1991906138bf565b6123e0565b604051610a2b91906139aa565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abf5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610ad590613d5d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0190613d5d565b8015610b4e5780601f10610b2357610100808354040283529160200191610b4e565b820191906000526020600020905b815481529060010190602001808311610b3157829003601f168201915b5050505050905090565b6000610b6382612477565b610b99576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bdf826124d6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c46576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c656125a2565b73ffffffffffffffffffffffffffffffffffffffff1614610cc857610c9181610c8c6125a2565b612255565b610cc7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610d826125aa565b73ffffffffffffffffffffffffffffffffffffffff16610da0611afd565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90613dda565b60405180910390fd5b80600a8190555050565b610e086125aa565b73ffffffffffffffffffffffffffffffffffffffff16610e26611afd565b73ffffffffffffffffffffffffffffffffffffffff1614610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7390613dda565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610ea36125b2565b6002546001540303905090565b610ebb8383836125bb565b505050565b610ec86125aa565b73ffffffffffffffffffffffffffffffffffffffff16610ee6611afd565b73ffffffffffffffffffffffffffffffffffffffff1614610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3390613dda565b60405180910390fd5b80601160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b80601160009054906101000a900460ff1615610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890613e46565b60405180910390fd5b60095481610fdd610e99565b610fe79190613e95565b1115611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f90613f37565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d90613fa3565b60405180910390fd5b60148211156110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d19061400f565b60405180910390fd5b600182101561111e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111159061407b565b60405180910390fd5b6000600b5490506000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008490506064858361117c9190613e95565b11156111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b4906140e7565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611276576001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001816112739190614107565b90505b61128a8184611285919061413b565b612962565b84826112969190613e95565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112e33386612a6e565b5050505050565b80601160009054906101000a900460ff161561133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290613e46565b60405180910390fd5b60095481611347610e99565b6113519190613e95565b1115611392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138990613f37565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790613fa3565b60405180910390fd5b601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611487906141e1565b60405180910390fd5b600a5482600e546114a19190613e95565b11156114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d99061424d565b60405180910390fd5b81600e60008282546114f49190613e95565b925050819055506115053383612a6e565b5050565b601481565b60095481565b61151c6125aa565b73ffffffffffffffffffffffffffffffffffffffff1661153a611afd565b73ffffffffffffffffffffffffffffffffffffffff1614611590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158790613dda565b60405180910390fd5b6000601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516115d89061429e565b60006040518083038185875af1925050503d8060008114611615576040519150601f19603f3d011682016040523d82523d6000602084013e61161a565b606091505b505090508061165e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611655906142ff565b60405180910390fd5b50565b61167c83838360405180602001604052806000815250611f65565b505050565b6060600061168e8361199f565b905060008167ffffffffffffffff8111156116ac576116ab6139d6565b5b6040519080825280602002602001820160405280156116da5781602001602082028036833780820191505090505b50905060006001905060005b83811080156116f757506009548211155b1561177f576000611707836118e1565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361176b57828483815181106117505761174f61431f565b5b60200260200101818152505081806117679061434e565b9250505b82806117769061434e565b935050506116e6565b82945050505050919050565b6117936125aa565b73ffffffffffffffffffffffffffffffffffffffff166117b1611afd565b73ffffffffffffffffffffffffffffffffffffffff1614611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe90613dda565b60405180910390fd5b80600f90816118169190614542565b5050565b6010805461182790613d5d565b80601f016020809104026020016040519081016040528092919081815260200182805461185390613d5d565b80156118a05780601f10611875576101008083540402835291602001916118a0565b820191906000526020600020905b81548152906001019060200180831161188357829003601f168201915b505050505081565b601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160009054906101000a900460ff1681565b60006118ec826124d6565b9050919050565b60126020528060005260406000206000915054906101000a900460ff1681565b600a5481565b6119216125aa565b73ffffffffffffffffffffffffffffffffffffffff1661193f611afd565b73ffffffffffffffffffffffffffffffffffffffff1614611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90613dda565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a06576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611a5f6125aa565b73ffffffffffffffffffffffffffffffffffffffff16611a7d611afd565b73ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90613dda565b60405180910390fd5b611add6000612a8c565b565b600e5481565b60136020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b2e6125aa565b73ffffffffffffffffffffffffffffffffffffffff16611b4c611afd565b73ffffffffffffffffffffffffffffffffffffffff1614611ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9990613dda565b60405180910390fd5b81601160009054906101000a900460ff1615611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea90613e46565b60405180910390fd5b60095481611bff610e99565b611c099190613e95565b1115611c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4190613f37565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf90613fa3565b60405180910390fd5b611cc28284612a6e565b505050565b611ccf6125aa565b73ffffffffffffffffffffffffffffffffffffffff16611ced611afd565b73ffffffffffffffffffffffffffffffffffffffff1614611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a90613dda565b60405180910390fd5b8060109081611d529190614542565b5050565b606060048054611d6590613d5d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9190613d5d565b8015611dde5780601f10611db357610100808354040283529160200191611dde565b820191906000526020600020905b815481529060010190602001808311611dc157829003601f168201915b5050505050905090565b611df06125a2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e54576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611e616125a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f0e6125a2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f5391906135e8565b60405180910390a35050565b600b5481565b611f708484846125bb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fd257611f9b84848484612b50565b611fd1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606481565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61203b6125aa565b73ffffffffffffffffffffffffffffffffffffffff16612059611afd565b73ffffffffffffffffffffffffffffffffffffffff16146120af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a690613dda565b60405180910390fd5b80600b8190555050565b60606120c482612477565b612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa90614686565b60405180910390fd5b600f61210e83612ca0565b60405160200161211f9291906147b1565b6040516020818303038152906040529050919050565b600f805461214290613d5d565b80601f016020809104026020016040519081016040528092919081815260200182805461216e90613d5d565b80156121bb5780601f10612190576101008083540402835291602001916121bb565b820191906000526020600020905b81548152906001019060200180831161219e57829003601f168201915b505050505081565b6060601080546121d290613d5d565b80601f01602080910402602001604051908101604052809291908181526020018280546121fe90613d5d565b801561224b5780601f106122205761010080835404028352916020019161224b565b820191906000526020600020905b81548152906001019060200180831161222e57829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122f16125aa565b73ffffffffffffffffffffffffffffffffffffffff1661230f611afd565b73ffffffffffffffffffffffffffffffffffffffff1614612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c90613dda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb90614852565b60405180910390fd5b6123dd81612a8c565b50565b6060600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561246b57602002820191906000526020600020905b815481526020019060010190808311612457575b50505050509050919050565b6000816124826125b2565b11158015612491575060015482105b80156124cf575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600080829050806124e56125b2565b1161256b5760015481101561256a5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612568575b6000810361255e576005600083600190039350838152602001908152602001600020549050612534565b809250505061259d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b60006125c6826124d6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461262d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661264e6125a2565b73ffffffffffffffffffffffffffffffffffffffff16148061267d575061267c856126776125a2565b612255565b5b806126c2575061268b6125a2565b73ffffffffffffffffffffffffffffffffffffffff166126aa84610b58565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126fb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612761576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61276e8585856001612e00565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61286b86612f22565b1717600560008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036128f357600060018401905060006005600083815260200190815260200160002054036128f15760015481146128f0578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461295b8585856001612f2c565b5050505050565b80341115612a275760003373ffffffffffffffffffffffffffffffffffffffff16823461298f9190614107565b60405161299b9061429e565b60006040518083038185875af1925050503d80600081146129d8576040519150601f19603f3d011682016040523d82523d6000602084013e6129dd565b606091505b5050905080612a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a18906148be565b60405180910390fd5b50612a6b565b80341015612a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a619061492a565b60405180910390fd5b5b50565b612a88828260405180602001604052806000815250612f32565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b766125a2565b8786866040518563ffffffff1660e01b8152600401612b98949392919061499f565b6020604051808303816000875af1925050508015612bd457506040513d601f19601f82011682018060405250810190612bd19190614a00565b60015b612c4d573d8060008114612c04576040519150601f19603f3d011682016040523d82523d6000602084013e612c09565b606091505b506000815103612c45576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612ce7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dfb565b600082905060005b60008214612d19578080612d029061434e565b915050600a82612d129190614a5c565b9150612cef565b60008167ffffffffffffffff811115612d3557612d346139d6565b5b6040519080825280601f01601f191660200182016040528015612d675781602001600182028036833780820191505090505b5090505b60008514612df457600182612d809190614107565b9150600a85612d8f9190614a8d565b6030612d9b9190613e95565b60f81b818381518110612db157612db061431f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ded9190614a5c565b9450612d6b565b8093505050505b919050565b600d6000612e0e91906134f6565b60005b81811015612e6057600d8184612e279190613e95565b90806001815401808255809150506001900390600052602060002001600090919091909150558080612e589061434e565b915050612e11565b506000600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905014612eb657612eb584836131e6565b5b612f1083600d805480602002602001604051908101604052809291908181526020018280548015612f0657602002820191906000526020600020905b815481526020019060010190808311612ef2575b5050505050613367565b612f1c8484848461340b565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612f9f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612fd9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612fe66000858386612e00565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161304b60018514613411565b901b60a042901b61305b86612f22565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461315f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461310f6000878480600101955087612b50565b613145576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106130a057826001541461315a57600080fd5b6131ca565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613160575b8160018190555050506131e06000858386612f2c565b50505050565b60006131f2838361341b565b9050600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506132829190614107565b815481106132935761329261431f565b5b9060005260206000200154600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481106132ef576132ee61431f565b5b9060005260206000200181905550600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548061334c5761334b614abe565b5b60019003818190600052602060002001600090559055505050565b60005b815181101561340657600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208282815181106133c5576133c461431f565b5b6020026020010151908060018154018082558091505060019003906000526020600020016000909190919091505580806133fe9061434e565b91505061336a565b505050565b50505050565b6000819050919050565b600080600090505b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508110156134eb5782600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481106134bf576134be61431f565b5b9060005260206000200154036134d857809150506134f0565b80806134e39061434e565b915050613423565b600080fd5b92915050565b50805460008255906000526020600020908101906135149190613517565b50565b5b80821115613530576000816000905550600101613518565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61357d81613548565b811461358857600080fd5b50565b60008135905061359a81613574565b92915050565b6000602082840312156135b6576135b561353e565b5b60006135c48482850161358b565b91505092915050565b60008115159050919050565b6135e2816135cd565b82525050565b60006020820190506135fd60008301846135d9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561363d578082015181840152602081019050613622565b8381111561364c576000848401525b50505050565b6000601f19601f8301169050919050565b600061366e82613603565b613678818561360e565b935061368881856020860161361f565b61369181613652565b840191505092915050565b600060208201905081810360008301526136b68184613663565b905092915050565b6000819050919050565b6136d1816136be565b81146136dc57600080fd5b50565b6000813590506136ee816136c8565b92915050565b60006020828403121561370a5761370961353e565b5b6000613718848285016136df565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061374c82613721565b9050919050565b61375c81613741565b82525050565b60006020820190506137776000830184613753565b92915050565b61378681613741565b811461379157600080fd5b50565b6000813590506137a38161377d565b92915050565b600080604083850312156137c0576137bf61353e565b5b60006137ce85828601613794565b92505060206137df858286016136df565b9150509250929050565b6137f2816135cd565b81146137fd57600080fd5b50565b60008135905061380f816137e9565b92915050565b60006020828403121561382b5761382a61353e565b5b600061383984828501613800565b91505092915050565b61384b816136be565b82525050565b60006020820190506138666000830184613842565b92915050565b6000806000606084860312156138855761388461353e565b5b600061389386828701613794565b93505060206138a486828701613794565b92505060406138b5868287016136df565b9150509250925092565b6000602082840312156138d5576138d461353e565b5b60006138e384828501613794565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613921816136be565b82525050565b60006139338383613918565b60208301905092915050565b6000602082019050919050565b6000613957826138ec565b61396181856138f7565b935061396c83613908565b8060005b8381101561399d5781516139848882613927565b975061398f8361393f565b925050600181019050613970565b5085935050505092915050565b600060208201905081810360008301526139c4818461394c565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a0e82613652565b810181811067ffffffffffffffff82111715613a2d57613a2c6139d6565b5b80604052505050565b6000613a40613534565b9050613a4c8282613a05565b919050565b600067ffffffffffffffff821115613a6c57613a6b6139d6565b5b613a7582613652565b9050602081019050919050565b82818337600083830152505050565b6000613aa4613a9f84613a51565b613a36565b905082815260208101848484011115613ac057613abf6139d1565b5b613acb848285613a82565b509392505050565b600082601f830112613ae857613ae76139cc565b5b8135613af8848260208601613a91565b91505092915050565b600060208284031215613b1757613b1661353e565b5b600082013567ffffffffffffffff811115613b3557613b34613543565b5b613b4184828501613ad3565b91505092915050565b60008060408385031215613b6157613b6061353e565b5b6000613b6f858286016136df565b9250506020613b8085828601613794565b9150509250929050565b60008060408385031215613ba157613ba061353e565b5b6000613baf85828601613794565b9250506020613bc085828601613800565b9150509250929050565b600067ffffffffffffffff821115613be557613be46139d6565b5b613bee82613652565b9050602081019050919050565b6000613c0e613c0984613bca565b613a36565b905082815260208101848484011115613c2a57613c296139d1565b5b613c35848285613a82565b509392505050565b600082601f830112613c5257613c516139cc565b5b8135613c62848260208601613bfb565b91505092915050565b60008060008060808587031215613c8557613c8461353e565b5b6000613c9387828801613794565b9450506020613ca487828801613794565b9350506040613cb5878288016136df565b925050606085013567ffffffffffffffff811115613cd657613cd5613543565b5b613ce287828801613c3d565b91505092959194509250565b60008060408385031215613d0557613d0461353e565b5b6000613d1385828601613794565b9250506020613d2485828601613794565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d7557607f821691505b602082108103613d8857613d87613d2e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613dc460208361360e565b9150613dcf82613d8e565b602082019050919050565b60006020820190508181036000830152613df381613db7565b9050919050565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b6000613e3060128361360e565b9150613e3b82613dfa565b602082019050919050565b60006020820190508181036000830152613e5f81613e23565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ea0826136be565b9150613eab836136be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ee057613edf613e66565b5b828201905092915050565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b6000613f2160158361360e565b9150613f2c82613eeb565b602082019050919050565b60006020820190508181036000830152613f5081613f14565b9050919050565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b6000613f8d60138361360e565b9150613f9882613f57565b602082019050919050565b60006020820190508181036000830152613fbc81613f80565b9050919050565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b6000613ff960118361360e565b915061400482613fc3565b602082019050919050565b6000602082019050818103600083015261402881613fec565b9050919050565b7f4d696e696d756d20746f206d696e742069732031000000000000000000000000600082015250565b600061406560148361360e565b91506140708261402f565b602082019050919050565b6000602082019050818103600083015261409481614058565b9050919050565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b60006140d160138361360e565b91506140dc8261409b565b602082019050919050565b60006020820190508181036000830152614100816140c4565b9050919050565b6000614112826136be565b915061411d836136be565b9250828210156141305761412f613e66565b5b828203905092915050565b6000614146826136be565b9150614151836136be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561418a57614189613e66565b5b828202905092915050565b7f5465616d206d696e74696e67206f6e6c79000000000000000000000000000000600082015250565b60006141cb60118361360e565b91506141d682614195565b602082019050919050565b600060208201905081810360008301526141fa816141be565b9050919050565b7f4e6f207465616d206d696e7473206c6566740000000000000000000000000000600082015250565b600061423760128361360e565b915061424282614201565b602082019050919050565b600060208201905081810360008301526142668161422a565b9050919050565b600081905092915050565b50565b600061428860008361426d565b915061429382614278565b600082019050919050565b60006142a98261427b565b9150819050919050565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b60006142e9600f8361360e565b91506142f4826142b3565b602082019050919050565b60006020820190508181036000830152614318816142dc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614359826136be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361438b5761438a613e66565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026143f87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826143bb565b61440286836143bb565b95508019841693508086168417925050509392505050565b6000819050919050565b600061443f61443a614435846136be565b61441a565b6136be565b9050919050565b6000819050919050565b61445983614424565b61446d61446582614446565b8484546143c8565b825550505050565b600090565b614482614475565b61448d818484614450565b505050565b5b818110156144b1576144a660008261447a565b600181019050614493565b5050565b601f8211156144f6576144c781614396565b6144d0846143ab565b810160208510156144df578190505b6144f36144eb856143ab565b830182614492565b50505b505050565b600082821c905092915050565b6000614519600019846008026144fb565b1980831691505092915050565b60006145328383614508565b9150826002028217905092915050565b61454b82613603565b67ffffffffffffffff811115614564576145636139d6565b5b61456e8254613d5d565b6145798282856144b5565b600060209050601f8311600181146145ac576000841561459a578287015190505b6145a48582614526565b86555061460c565b601f1984166145ba86614396565b60005b828110156145e2578489015182556001820191506020850194506020810190506145bd565b868310156145ff57848901516145fb601f891682614508565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614670602f8361360e565b915061467b82614614565b604082019050919050565b6000602082019050818103600083015261469f81614663565b9050919050565b600081905092915050565b600081546146be81613d5d565b6146c881866146a6565b945060018216600081146146e357600181146146f85761472b565b60ff198316865281151582028601935061472b565b61470185614396565b60005b8381101561472357815481890152600182019150602081019050614704565b838801955050505b50505092915050565b600061473f82613603565b61474981856146a6565b935061475981856020860161361f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061479b6005836146a6565b91506147a682614765565b600582019050919050565b60006147bd82856146b1565b91506147c98284614734565b91506147d48261478e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061483c60268361360e565b9150614847826147e0565b604082019050919050565b6000602082019050818103600083015261486b8161482f565b9050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b60006148a8600f8361360e565b91506148b382614872565b602082019050919050565b600060208201905081810360008301526148d78161489b565b9050919050565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b600061491460138361360e565b915061491f826148de565b602082019050919050565b6000602082019050818103600083015261494381614907565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006149718261494a565b61497b8185614955565b935061498b81856020860161361f565b61499481613652565b840191505092915050565b60006080820190506149b46000830187613753565b6149c16020830186613753565b6149ce6040830185613842565b81810360608301526149e08184614966565b905095945050505050565b6000815190506149fa81613574565b92915050565b600060208284031215614a1657614a1561353e565b5b6000614a24848285016149eb565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614a67826136be565b9150614a72836136be565b925082614a8257614a81614a2d565b5b828204905092915050565b6000614a98826136be565b9150614aa3836136be565b925082614ab357614ab2614a2d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212200add86163aa70a573e89c07f65d8f6e286b0486a603b536bed4419207faaf4b664736f6c634300080f0033
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 ]
[ 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.