Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
6 ANF-A
Holders
6
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 ANF-ALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AnimalsFrendsA
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "erc721a/contracts/ERC721A.sol"; contract AnimalsFrendsA is ERC721A { bool public saleActive; bool public whitelistActive; bool public presaleActive; uint256 private price; bool private priceFixed; uint256 private valueSale; uint256 private actualMintSale; uint256 private whiteList; uint256 private reserved; uint256 private gift; uint256 public constant MAX_SUPPLY = 10000; uint256 private constant MAX_MINT_PER_TX = 20; uint256 private constant MAX_MINT_PRESALE = 500; uint256 private constant MAX_MINT_SALE = 9000; string private baseTokenURI = "https://api-anf.spaceart-nft.com/"; address private partner_25; address private partner_20_A; address private partner_20_B; address private partner_35; mapping (address => uint256) private _whitelistReserved; mapping(uint256 => address) private _whitelistAddress; mapping(uint256 => addressCount) private _giftAddress; uint256 private _countGiftAddress; struct addressCount{ address wallet; uint count; } constructor () ERC721A ("Animal Frends", "ANF-A") { presaleActive = true; saleActive = false; price = 0.028 ether; actualMintSale = 0; valueSale = 0; gift = 500; partner_25 = address(0x9798fc62D562989c7854891B058c8Ec48B0549e8); partner_20_A = address(0x0A2DB25e1683BbCFD581846b546E1F30fe47d37f); partner_20_B = address(0x8DBaDa4b6aEcC0007218e79442712DA80C0F977E); partner_35 = address(0xF9A0098977987f23FA4403542fE1A19d45718073); } modifier onlyOwner() { require(0x84701a6B1C9D46dcb491b62502a8B7514F150557 == msg.sender, "Ownable: caller is not the owner"); _; } // Presale function mintPresale(uint256 _amount) public payable { require( _amount > 0 && _amount <= MAX_MINT_PER_TX, "Can only mint between 1 and 20 tokens at once" ); require( actualMintSale + _amount <= MAX_MINT_PRESALE, "Can't mint more than max supply" ); require( msg.value == price * _amount, "Wrong amount of ETH sent" ); valueSale += (price * _amount); actualMintSale += _amount; _mint(msg.sender, _amount); if(actualMintSale >= MAX_MINT_PRESALE){ saleActive = true; presaleActive = false; if(actualMintSale < MAX_MINT_SALE + MAX_MINT_PRESALE && !priceFixed){ price = 0.048 ether; } } } // Sale function mintToken(uint256 _amount) public payable { require( saleActive, "Sale isn't active" ); require( _amount > 0 && _amount <= MAX_MINT_PER_TX, "Can only mint between 1 and 20 tokens at once" ); require( actualMintSale + _amount <= (MAX_SUPPLY - (reserved + gift + whiteList)), "Can't mint more than max supply" ); require( msg.value == price * _amount, "Wrong amount of ETH sent" ); valueSale += (price * _amount); actualMintSale += _amount; _mint( msg.sender, _amount); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } //Only Owner function mintGift(address _a,uint256 _amount) public onlyOwner { uint256 supply = totalSupply(); require( _amount <= gift, "Can't reserve more than set amount" ); require( supply + _amount <= MAX_SUPPLY, "Can't mint more than max supply" ); gift -= _amount; _mint( _a, _amount); uint count = _countGiftAddress; bool edited = false; for(uint256 i; i <= count; i++) { if(_giftAddress[i].wallet == _a){ _giftAddress[i].count += _amount; edited = true; break; } } if(!edited){ _giftAddress[count].wallet = _a; _giftAddress[count].count = _amount; _countGiftAddress += 1; } } function setPresaleActive(bool val) public onlyOwner { presaleActive = val; if(val == true){ saleActive = false; } } function setSaleActive(bool val) public onlyOwner { saleActive = val; if(val == true){ presaleActive = false; } } function withdrawTeam() public payable onlyOwner { if(valueSale > 0){ uint256 percent = valueSale / 100; require(payable(partner_25).send(percent * 25)); require(payable(partner_20_A).send(percent * 20)); require(payable(partner_20_B).send(percent * 20)); // require(payable(partner_35) TYYOU67cvd;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;.send(percent * 20)); valueSale = 0; } } function setPrice(uint256 newPrice) public onlyOwner { price = newPrice; priceFixed = true; } // Public View function getValueSale() public view returns(uint256){ return valueSale; } function getCountGift() public view returns (uint256){ return gift; } function tokenOfOwnerByIndex(address ownerAddress, uint256 index) public view returns (uint256) { require(index < balanceOf(ownerAddress), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownershipAt(i); if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == ownerAddress) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } function tokensOfOwner(address addr) public view returns(uint256[] memory) { uint256 tokenCount = balanceOf(addr); uint256[] memory tokensId = new uint256[](tokenCount); for(uint256 i; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(addr, i); } return tokensId; } function getGift( ) public view returns(addressCount[] memory) { uint256 count = _countGiftAddress; addressCount[] memory tokensId = new addressCount[](count); for(uint256 i; i < count; i++){ tokensId[i] = _giftAddress[i]; } return tokensId; } function getPrice() public view returns(uint256) { return price; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.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 bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // 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` // - [232..255] `extraData` 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 auxiliary 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 auxiliary 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; // Cast `aux` with assembly to avoid redundant masking. assembly { 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; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * 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 Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); 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-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 { transferFrom(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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @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 for each mint. */ 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` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @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 transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // 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)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // 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 Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @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 // ERC721A Contracts v4.1.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(); /** * 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(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); 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; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @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); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"MAX_SUPPLY","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCountGift","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGift","outputs":[{"components":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"internalType":"struct AnimalsFrendsA.addressCount[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getValueSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_a","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintGift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleActive","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":"address","name":"ownerAddress","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawTeam","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405260405180606001604052806021815260200162003b06602191396010908051906020019062000035929190620002b6565b503480156200004357600080fd5b506040518060400160405280600d81526020017f416e696d616c204672656e6473000000000000000000000000000000000000008152506040518060400160405280600581526020017f414e462d410000000000000000000000000000000000000000000000000000008152508160029080519060200190620000c8929190620002b6565b508060039080519060200190620000e1929190620002b6565b50620000f2620002b160201b60201c565b60008190555050506001600860026101000a81548160ff0219169083151502179055506000600860006101000a81548160ff021916908315150217905550666379da05b600006009819055506000600c819055506000600b819055506101f4600f81905550739798fc62d562989c7854891b058c8ec48b0549e8601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730a2db25e1683bbcfd581846b546e1f30fe47d37f601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738dbada4b6aecc0007218e79442712da80c0f977e601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f9a0098977987f23fa4403542fe1a19d45718073601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003cb565b600090565b828054620002c49062000366565b90600052602060002090601f016020900481019282620002e8576000855562000334565b82601f106200030357805160ff191683800117855562000334565b8280016001018555821562000334579182015b828111156200033357825182559160200191906001019062000316565b5b50905062000343919062000347565b5090565b5b808211156200036257600081600090555060010162000348565b5090565b600060028204905060018216806200037f57607f821691505b602082108114156200039657620003956200039c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61372b80620003db6000396000f3fe6080604052600436106101d85760003560e01c806355fbf3631161010257806398d5fdca11610095578063c634d03211610064578063c634d0321461069f578063c87b56dd146106bb578063e985e9c5146106f8578063f759867a14610735576101d8565b806398d5fdca14610618578063a22cb46514610643578063b88d4fde1461066c578063bb51f32d14610695576101d8565b8063841718a6116100d1578063841718a61461055e5780638462151c1461058757806391b7f5ed146105c457806395d89b41146105ed576101d8565b806355fbf3631461048e5780636352211e146104b957806368428a1b146104f657806370a0823114610521576101d8565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103e6578063489a0fdc1461040f57806353135ca01461043857806354e4c6b914610463576101d8565b806323b872dd1461032c5780632f745c591461035557806332cb6b0c146103925780633f8121a2146103bd576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad57806309a710fb146102d657806318160ddd14610301576101d8565b806301ffc9a7146101dd57806302ce58131461021a57806306fdde0314610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612aa7565b610751565b6040516102119190612f12565b60405180910390f35b34801561022657600080fd5b5061022f6107e3565b60405161023c9190612f12565b60405180910390f35b34801561025157600080fd5b5061025a6107f6565b6040516102679190612f2d565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190612af9565b610888565b6040516102a49190612e67565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612a42565b610904565b005b3480156102e257600080fd5b506102eb610a45565b6040516102f89190612ece565b60405180910390f35b34801561030d57600080fd5b50610316610bb5565b604051610323919061304f565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e919061293c565b610bcc565b005b34801561036157600080fd5b5061037c60048036038101906103779190612a42565b610ef1565b604051610389919061304f565b60405180910390f35b34801561039e57600080fd5b506103a7611052565b6040516103b4919061304f565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190612a7e565b611058565b005b3480156103f257600080fd5b5061040d6004803603810190610408919061293c565b611120565b005b34801561041b57600080fd5b5061043660048036038101906104319190612a42565b611140565b005b34801561044457600080fd5b5061044d6113e3565b60405161045a9190612f12565b60405180910390f35b34801561046f57600080fd5b506104786113f6565b604051610485919061304f565b60405180910390f35b34801561049a57600080fd5b506104a3611400565b6040516104b0919061304f565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612af9565b61140a565b6040516104ed9190612e67565b60405180910390f35b34801561050257600080fd5b5061050b61141c565b6040516105189190612f12565b60405180910390f35b34801561052d57600080fd5b50610548600480360381019061054391906128d7565b61142f565b604051610555919061304f565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190612a7e565b6114e8565b005b34801561059357600080fd5b506105ae60048036038101906105a991906128d7565b6115b0565b6040516105bb9190612ef0565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190612af9565b6116aa565b005b3480156105f957600080fd5b50610602611751565b60405161060f9190612f2d565b60405180910390f35b34801561062457600080fd5b5061062d6117e3565b60405161063a919061304f565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190612a06565b6117ed565b005b34801561067857600080fd5b50610693600480360381019061068e919061298b565b611965565b005b61069d6119d8565b005b6106b960048036038101906106b49190612af9565b611bc8565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190612af9565b611d7b565b6040516106ef9190612f2d565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190612900565b611e1a565b60405161072c9190612f12565b60405180910390f35b61074f600480360381019061074a9190612af9565b611eae565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ac57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107dc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600860019054906101000a900460ff1681565b60606002805461080590613340565b80601f016020809104026020016040519081016040528092919081815260200182805461083190613340565b801561087e5780601f106108535761010080835404028352916020019161087e565b820191906000526020600020905b81548152906001019060200180831161086157829003601f168201915b5050505050905090565b60006108938261206e565b6108c9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090f8261140a565b90508073ffffffffffffffffffffffffffffffffffffffff166109306120cd565b73ffffffffffffffffffffffffffffffffffffffff16146109935761095c816109576120cd565b611e1a565b610992576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60606000601854905060008167ffffffffffffffff811115610a90577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ac957816020015b610ab6612787565b815260200190600190039081610aae5790505b50905060005b82811015610bac57601760008281526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015481525050828281518110610b8e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101819052508080610ba4906133a3565b915050610acf565b50809250505090565b6000610bbf6120d5565b6001546000540303905090565b6000610bd7826120da565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c3e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c4a846121a8565b91509150610c608187610c5b6120cd565b6121ca565b610cac57610c7586610c706120cd565b611e1a565b610cab576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d13576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d20868686600161220e565b8015610d2b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610df985610dd5888887612214565b7c02000000000000000000000000000000000000000000000000000000001761223c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e81576000600185019050600060046000838152602001908152602001600020541415610e7f576000548114610e7e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ee98686866001612267565b505050505050565b6000610efc8361142f565b8210610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3490612f4f565b60405180910390fd5b6000610f47610bb5565b905060008060005b83811015611010576000610f628261226d565b9050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fa457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ffc5786841415610fed57819550505050505061104c565b8380610ff8906133a3565b9450505b508080611008906133a3565b915050610f4f565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110439061300f565b60405180910390fd5b92915050565b61271081565b3373ffffffffffffffffffffffffffffffffffffffff167384701a6b1c9d46dcb491b62502a8b7514f15055773ffffffffffffffffffffffffffffffffffffffff16146110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190612fcf565b60405180910390fd5b80600860026101000a81548160ff02191690831515021790555060011515811515141561111d576000600860006101000a81548160ff0219169083151502179055505b50565b61113b83838360405180602001604052806000815250611965565b505050565b3373ffffffffffffffffffffffffffffffffffffffff167384701a6b1c9d46dcb491b62502a8b7514f15055773ffffffffffffffffffffffffffffffffffffffff16146111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990612fcf565b60405180910390fd5b60006111cc610bb5565b9050600f54821115611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a90612faf565b60405180910390fd5b61271082826112229190613175565b1115611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90612f8f565b60405180910390fd5b81600f60008282546112759190613256565b925050819055506112868383612298565b600060185490506000805b82811161134b578573ffffffffffffffffffffffffffffffffffffffff166017600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561133857846017600083815260200190815260200160002060010160008282546113289190613175565b925050819055506001915061134b565b8080611343906133a3565b915050611291565b50806113dc57846017600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360176000848152602001908152602001600020600101819055506001601860008282546113d49190613175565b925050819055505b5050505050565b600860029054906101000a900460ff1681565b6000600b54905090565b6000600f54905090565b6000611415826120da565b9050919050565b600860009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611497576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b3373ffffffffffffffffffffffffffffffffffffffff167384701a6b1c9d46dcb491b62502a8b7514f15055773ffffffffffffffffffffffffffffffffffffffff161461156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190612fcf565b60405180910390fd5b80600860006101000a81548160ff0219169083151502179055506001151581151514156115ad576000600860026101000a81548160ff0219169083151502179055505b50565b606060006115bd8361142f565b905060008167ffffffffffffffff811115611601577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561162f5781602001602082028036833780820191505090505b50905060005b8281101561169f576116478582610ef1565b828281518110611680577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611697906133a3565b915050611635565b508092505050919050565b3373ffffffffffffffffffffffffffffffffffffffff167384701a6b1c9d46dcb491b62502a8b7514f15055773ffffffffffffffffffffffffffffffffffffffff161461172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390612fcf565b60405180910390fd5b806009819055506001600a60006101000a81548160ff02191690831515021790555050565b60606003805461176090613340565b80601f016020809104026020016040519081016040528092919081815260200182805461178c90613340565b80156117d95780601f106117ae576101008083540402835291602001916117d9565b820191906000526020600020905b8154815290600101906020018083116117bc57829003601f168201915b5050505050905090565b6000600954905090565b6117f56120cd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118676120cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119146120cd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119599190612f12565b60405180910390a35050565b611970848484610bcc565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119d25761199b8484848461246c565b6119d1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff167384701a6b1c9d46dcb491b62502a8b7514f15055773ffffffffffffffffffffffffffffffffffffffff1614611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5190612fcf565b60405180910390fd5b6000600b541115611bc65760006064600b54611a7691906131cb565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc601983611ac191906131fc565b9081150290604051600060405180830381858888f19350505050611ae457600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc601483611b2d91906131fc565b9081150290604051600060405180830381858888f19350505050611b5057600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc601483611b9991906131fc565b9081150290604051600060405180830381858888f19350505050611bbc57600080fd5b6000600b81905550505b565b600860009054906101000a900460ff16611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e90612fef565b60405180910390fd5b600081118015611c28575060148111155b611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e90612f6f565b60405180910390fd5b600d54600f54600e54611c7a9190613175565b611c849190613175565b612710611c919190613256565b81600c54611c9f9190613175565b1115611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd790612f8f565b60405180910390fd5b80600954611cee91906131fc565b3414611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d269061302f565b60405180910390fd5b80600954611d3d91906131fc565b600b6000828254611d4e9190613175565b9250508190555080600c6000828254611d679190613175565b92505081905550611d783382612298565b50565b6060611d868261206e565b611dbc576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611dc66125cc565b9050600081511415611de75760405180602001604052806000815250611e12565b80611df18461265e565b604051602001611e02929190612e43565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081118015611ebf575060148111155b611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590612f6f565b60405180910390fd5b6101f481600c54611f0f9190613175565b1115611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4790612f8f565b60405180910390fd5b80600954611f5e91906131fc565b3414611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f969061302f565b60405180910390fd5b80600954611fad91906131fc565b600b6000828254611fbe9190613175565b9250508190555080600c6000828254611fd79190613175565b92505081905550611fe83382612298565b6101f4600c541061206b576001600860006101000a81548160ff0219169083151502179055506000600860026101000a81548160ff0219169083151502179055506101f46123286120399190613175565b600c541080156120565750600a60009054906101000a900460ff16155b1561206a5766aa87bee53800006009819055505b5b50565b6000816120796120d5565b11158015612088575060005482105b80156120c6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806120e96120d5565b11612171576000548110156121705760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561216e575b6000811415612164576004600083600190039350838152602001908152602001600020549050612139565b80925050506121a3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861222b8686846126b8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6122756127b7565b61229160046000848152602001908152602001600020546126c1565b9050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612305576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612340576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61234d600084838561220e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123c4836123b56000866000612214565b6123be85612777565b1761223c565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106123e8578060008190555050506124676000848385612267565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124926120cd565b8786866040518563ffffffff1660e01b81526004016124b49493929190612e82565b602060405180830381600087803b1580156124ce57600080fd5b505af19250505080156124ff57506040513d601f19601f820116820180604052508101906124fc9190612ad0565b60015b612579573d806000811461252f576040519150601f19603f3d011682016040523d82523d6000602084013e612534565b606091505b50600081511415612571576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546125db90613340565b80601f016020809104026020016040519081016040528092919081815260200182805461260790613340565b80156126545780601f1061262957610100808354040283529160200191612654565b820191906000526020600020905b81548152906001019060200180831161263757829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156126a457600183039250600a81066030018353600a81049050612684565b508181036020830392508083525050919050565b60009392505050565b6126c96127b7565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60006001821460e11b9050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600081525090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b60006128196128148461308f565b61306a565b90508281526020810184848401111561283157600080fd5b61283c8482856132fe565b509392505050565b60008135905061285381613699565b92915050565b600081359050612868816136b0565b92915050565b60008135905061287d816136c7565b92915050565b600081519050612892816136c7565b92915050565b600082601f8301126128a957600080fd5b81356128b9848260208601612806565b91505092915050565b6000813590506128d1816136de565b92915050565b6000602082840312156128e957600080fd5b60006128f784828501612844565b91505092915050565b6000806040838503121561291357600080fd5b600061292185828601612844565b925050602061293285828601612844565b9150509250929050565b60008060006060848603121561295157600080fd5b600061295f86828701612844565b935050602061297086828701612844565b9250506040612981868287016128c2565b9150509250925092565b600080600080608085870312156129a157600080fd5b60006129af87828801612844565b94505060206129c087828801612844565b93505060406129d1878288016128c2565b925050606085013567ffffffffffffffff8111156129ee57600080fd5b6129fa87828801612898565b91505092959194509250565b60008060408385031215612a1957600080fd5b6000612a2785828601612844565b9250506020612a3885828601612859565b9150509250929050565b60008060408385031215612a5557600080fd5b6000612a6385828601612844565b9250506020612a74858286016128c2565b9150509250929050565b600060208284031215612a9057600080fd5b6000612a9e84828501612859565b91505092915050565b600060208284031215612ab957600080fd5b6000612ac78482850161286e565b91505092915050565b600060208284031215612ae257600080fd5b6000612af084828501612883565b91505092915050565b600060208284031215612b0b57600080fd5b6000612b19848285016128c2565b91505092915050565b6000612b2e8383612df6565b60408301905092915050565b6000612b468383612e25565b60208301905092915050565b612b5b8161328a565b82525050565b612b6a8161328a565b82525050565b6000612b7b826130e0565b612b858185613126565b9350612b90836130c0565b8060005b83811015612bc1578151612ba88882612b22565b9750612bb38361310c565b925050600181019050612b94565b5085935050505092915050565b6000612bd9826130eb565b612be38185613137565b9350612bee836130d0565b8060005b83811015612c1f578151612c068882612b3a565b9750612c1183613119565b925050600181019050612bf2565b5085935050505092915050565b612c358161329c565b82525050565b6000612c46826130f6565b612c508185613148565b9350612c6081856020860161330d565b612c69816134a8565b840191505092915050565b6000612c7f82613101565b612c898185613159565b9350612c9981856020860161330d565b612ca2816134a8565b840191505092915050565b6000612cb882613101565b612cc2818561316a565b9350612cd281856020860161330d565b80840191505092915050565b6000612ceb602283613159565b9150612cf6826134b9565b604082019050919050565b6000612d0e602d83613159565b9150612d1982613508565b604082019050919050565b6000612d31601f83613159565b9150612d3c82613557565b602082019050919050565b6000612d54602283613159565b9150612d5f82613580565b604082019050919050565b6000612d77602083613159565b9150612d82826135cf565b602082019050919050565b6000612d9a601183613159565b9150612da5826135f8565b602082019050919050565b6000612dbd602e83613159565b9150612dc882613621565b604082019050919050565b6000612de0601883613159565b9150612deb82613670565b602082019050919050565b604082016000820151612e0c6000850182612b52565b506020820151612e1f6020850182612e25565b50505050565b612e2e816132f4565b82525050565b612e3d816132f4565b82525050565b6000612e4f8285612cad565b9150612e5b8284612cad565b91508190509392505050565b6000602082019050612e7c6000830184612b61565b92915050565b6000608082019050612e976000830187612b61565b612ea46020830186612b61565b612eb16040830185612e34565b8181036060830152612ec38184612c3b565b905095945050505050565b60006020820190508181036000830152612ee88184612b70565b905092915050565b60006020820190508181036000830152612f0a8184612bce565b905092915050565b6000602082019050612f276000830184612c2c565b92915050565b60006020820190508181036000830152612f478184612c74565b905092915050565b60006020820190508181036000830152612f6881612cde565b9050919050565b60006020820190508181036000830152612f8881612d01565b9050919050565b60006020820190508181036000830152612fa881612d24565b9050919050565b60006020820190508181036000830152612fc881612d47565b9050919050565b60006020820190508181036000830152612fe881612d6a565b9050919050565b6000602082019050818103600083015261300881612d8d565b9050919050565b6000602082019050818103600083015261302881612db0565b9050919050565b6000602082019050818103600083015261304881612dd3565b9050919050565b60006020820190506130646000830184612e34565b92915050565b6000613074613085565b90506130808282613372565b919050565b6000604051905090565b600067ffffffffffffffff8211156130aa576130a9613479565b5b6130b3826134a8565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613180826132f4565b915061318b836132f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131c0576131bf6133ec565b5b828201905092915050565b60006131d6826132f4565b91506131e1836132f4565b9250826131f1576131f061341b565b5b828204905092915050565b6000613207826132f4565b9150613212836132f4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561324b5761324a6133ec565b5b828202905092915050565b6000613261826132f4565b915061326c836132f4565b92508282101561327f5761327e6133ec565b5b828203905092915050565b6000613295826132d4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561332b578082015181840152602081019050613310565b8381111561333a576000848401525b50505050565b6000600282049050600182168061335857607f821691505b6020821081141561336c5761336b61344a565b5b50919050565b61337b826134a8565b810181811067ffffffffffffffff8211171561339a57613399613479565b5b80604052505050565b60006133ae826132f4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133e1576133e06133ec565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74206265747765656e203120616e64203230207460008201527f6f6b656e73206174206f6e636500000000000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265207468616e206d617820737570706c7900600082015250565b7f43616e27742072657365727665206d6f7265207468616e2073657420616d6f7560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c652069736e277420616374697665000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f57726f6e6720616d6f756e74206f66204554482073656e740000000000000000600082015250565b6136a28161328a565b81146136ad57600080fd5b50565b6136b98161329c565b81146136c457600080fd5b50565b6136d0816132a8565b81146136db57600080fd5b50565b6136e7816132f4565b81146136f257600080fd5b5056fea2646970667358221220df259d1cdafeeef4c3f8ba63f00aff02de1eae91b74c1a28c670c4d537148f0d64736f6c6343000804003368747470733a2f2f6170692d616e662e73706163656172742d6e66742e636f6d2f
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806355fbf3631161010257806398d5fdca11610095578063c634d03211610064578063c634d0321461069f578063c87b56dd146106bb578063e985e9c5146106f8578063f759867a14610735576101d8565b806398d5fdca14610618578063a22cb46514610643578063b88d4fde1461066c578063bb51f32d14610695576101d8565b8063841718a6116100d1578063841718a61461055e5780638462151c1461058757806391b7f5ed146105c457806395d89b41146105ed576101d8565b806355fbf3631461048e5780636352211e146104b957806368428a1b146104f657806370a0823114610521576101d8565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103e6578063489a0fdc1461040f57806353135ca01461043857806354e4c6b914610463576101d8565b806323b872dd1461032c5780632f745c591461035557806332cb6b0c146103925780633f8121a2146103bd576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad57806309a710fb146102d657806318160ddd14610301576101d8565b806301ffc9a7146101dd57806302ce58131461021a57806306fdde0314610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612aa7565b610751565b6040516102119190612f12565b60405180910390f35b34801561022657600080fd5b5061022f6107e3565b60405161023c9190612f12565b60405180910390f35b34801561025157600080fd5b5061025a6107f6565b6040516102679190612f2d565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190612af9565b610888565b6040516102a49190612e67565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612a42565b610904565b005b3480156102e257600080fd5b506102eb610a45565b6040516102f89190612ece565b60405180910390f35b34801561030d57600080fd5b50610316610bb5565b604051610323919061304f565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e919061293c565b610bcc565b005b34801561036157600080fd5b5061037c60048036038101906103779190612a42565b610ef1565b604051610389919061304f565b60405180910390f35b34801561039e57600080fd5b506103a7611052565b6040516103b4919061304f565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190612a7e565b611058565b005b3480156103f257600080fd5b5061040d6004803603810190610408919061293c565b611120565b005b34801561041b57600080fd5b5061043660048036038101906104319190612a42565b611140565b005b34801561044457600080fd5b5061044d6113e3565b60405161045a9190612f12565b60405180910390f35b34801561046f57600080fd5b506104786113f6565b604051610485919061304f565b60405180910390f35b34801561049a57600080fd5b506104a3611400565b6040516104b0919061304f565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612af9565b61140a565b6040516104ed9190612e67565b60405180910390f35b34801561050257600080fd5b5061050b61141c565b6040516105189190612f12565b60405180910390f35b34801561052d57600080fd5b50610548600480360381019061054391906128d7565b61142f565b604051610555919061304f565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190612a7e565b6114e8565b005b34801561059357600080fd5b506105ae60048036038101906105a991906128d7565b6115b0565b6040516105bb9190612ef0565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190612af9565b6116aa565b005b3480156105f957600080fd5b50610602611751565b60405161060f9190612f2d565b60405180910390f35b34801561062457600080fd5b5061062d6117e3565b60405161063a919061304f565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190612a06565b6117ed565b005b34801561067857600080fd5b50610693600480360381019061068e919061298b565b611965565b005b61069d6119d8565b005b6106b960048036038101906106b49190612af9565b611bc8565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190612af9565b611d7b565b6040516106ef9190612f2d565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190612900565b611e1a565b60405161072c9190612f12565b60405180910390f35b61074f600480360381019061074a9190612af9565b611eae565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ac57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107dc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600860019054906101000a900460ff1681565b60606002805461080590613340565b80601f016020809104026020016040519081016040528092919081815260200182805461083190613340565b801561087e5780601f106108535761010080835404028352916020019161087e565b820191906000526020600020905b81548152906001019060200180831161086157829003601f168201915b5050505050905090565b60006108938261206e565b6108c9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090f8261140a565b90508073ffffffffffffffffffffffffffffffffffffffff166109306120cd565b73ffffffffffffffffffffffffffffffffffffffff16146109935761095c816109576120cd565b611e1a565b610992576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60606000601854905060008167ffffffffffffffff811115610a90577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ac957816020015b610ab6612787565b815260200190600190039081610aae5790505b50905060005b82811015610bac57601760008281526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015481525050828281518110610b8e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101819052508080610ba4906133a3565b915050610acf565b50809250505090565b6000610bbf6120d5565b6001546000540303905090565b6000610bd7826120da565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c3e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c4a846121a8565b91509150610c608187610c5b6120cd565b6121ca565b610cac57610c7586610c706120cd565b611e1a565b610cab576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d13576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d20868686600161220e565b8015610d2b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610df985610dd5888887612214565b7c02000000000000000000000000000000000000000000000000000000001761223c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e81576000600185019050600060046000838152602001908152602001600020541415610e7f576000548114610e7e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ee98686866001612267565b505050505050565b6000610efc8361142f565b8210610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3490612f4f565b60405180910390fd5b6000610f47610bb5565b905060008060005b83811015611010576000610f628261226d565b9050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fa457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ffc5786841415610fed57819550505050505061104c565b8380610ff8906133a3565b9450505b508080611008906133a3565b915050610f4f565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110439061300f565b60405180910390fd5b92915050565b61271081565b3373ffffffffffffffffffffffffffffffffffffffff167384701a6b1c9d46dcb491b62502a8b7514f15055773ffffffffffffffffffffffffffffffffffffffff16146110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190612fcf565b60405180910390fd5b80600860026101000a81548160ff02191690831515021790555060011515811515141561111d576000600860006101000a81548160ff0219169083151502179055505b50565b61113b83838360405180602001604052806000815250611965565b505050565b3373ffffffffffffffffffffffffffffffffffffffff167384701a6b1c9d46dcb491b62502a8b7514f15055773ffffffffffffffffffffffffffffffffffffffff16146111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990612fcf565b60405180910390fd5b60006111cc610bb5565b9050600f54821115611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a90612faf565b60405180910390fd5b61271082826112229190613175565b1115611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90612f8f565b60405180910390fd5b81600f60008282546112759190613256565b925050819055506112868383612298565b600060185490506000805b82811161134b578573ffffffffffffffffffffffffffffffffffffffff166017600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561133857846017600083815260200190815260200160002060010160008282546113289190613175565b925050819055506001915061134b565b8080611343906133a3565b915050611291565b50806113dc57846017600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360176000848152602001908152602001600020600101819055506001601860008282546113d49190613175565b925050819055505b5050505050565b600860029054906101000a900460ff1681565b6000600b54905090565b6000600f54905090565b6000611415826120da565b9050919050565b600860009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611497576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b3373ffffffffffffffffffffffffffffffffffffffff167384701a6b1c9d46dcb491b62502a8b7514f15055773ffffffffffffffffffffffffffffffffffffffff161461156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190612fcf565b60405180910390fd5b80600860006101000a81548160ff0219169083151502179055506001151581151514156115ad576000600860026101000a81548160ff0219169083151502179055505b50565b606060006115bd8361142f565b905060008167ffffffffffffffff811115611601577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561162f5781602001602082028036833780820191505090505b50905060005b8281101561169f576116478582610ef1565b828281518110611680577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611697906133a3565b915050611635565b508092505050919050565b3373ffffffffffffffffffffffffffffffffffffffff167384701a6b1c9d46dcb491b62502a8b7514f15055773ffffffffffffffffffffffffffffffffffffffff161461172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390612fcf565b60405180910390fd5b806009819055506001600a60006101000a81548160ff02191690831515021790555050565b60606003805461176090613340565b80601f016020809104026020016040519081016040528092919081815260200182805461178c90613340565b80156117d95780601f106117ae576101008083540402835291602001916117d9565b820191906000526020600020905b8154815290600101906020018083116117bc57829003601f168201915b5050505050905090565b6000600954905090565b6117f56120cd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118676120cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119146120cd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119599190612f12565b60405180910390a35050565b611970848484610bcc565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119d25761199b8484848461246c565b6119d1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff167384701a6b1c9d46dcb491b62502a8b7514f15055773ffffffffffffffffffffffffffffffffffffffff1614611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5190612fcf565b60405180910390fd5b6000600b541115611bc65760006064600b54611a7691906131cb565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc601983611ac191906131fc565b9081150290604051600060405180830381858888f19350505050611ae457600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc601483611b2d91906131fc565b9081150290604051600060405180830381858888f19350505050611b5057600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc601483611b9991906131fc565b9081150290604051600060405180830381858888f19350505050611bbc57600080fd5b6000600b81905550505b565b600860009054906101000a900460ff16611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e90612fef565b60405180910390fd5b600081118015611c28575060148111155b611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e90612f6f565b60405180910390fd5b600d54600f54600e54611c7a9190613175565b611c849190613175565b612710611c919190613256565b81600c54611c9f9190613175565b1115611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd790612f8f565b60405180910390fd5b80600954611cee91906131fc565b3414611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d269061302f565b60405180910390fd5b80600954611d3d91906131fc565b600b6000828254611d4e9190613175565b9250508190555080600c6000828254611d679190613175565b92505081905550611d783382612298565b50565b6060611d868261206e565b611dbc576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611dc66125cc565b9050600081511415611de75760405180602001604052806000815250611e12565b80611df18461265e565b604051602001611e02929190612e43565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081118015611ebf575060148111155b611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590612f6f565b60405180910390fd5b6101f481600c54611f0f9190613175565b1115611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4790612f8f565b60405180910390fd5b80600954611f5e91906131fc565b3414611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f969061302f565b60405180910390fd5b80600954611fad91906131fc565b600b6000828254611fbe9190613175565b9250508190555080600c6000828254611fd79190613175565b92505081905550611fe83382612298565b6101f4600c541061206b576001600860006101000a81548160ff0219169083151502179055506000600860026101000a81548160ff0219169083151502179055506101f46123286120399190613175565b600c541080156120565750600a60009054906101000a900460ff16155b1561206a5766aa87bee53800006009819055505b5b50565b6000816120796120d5565b11158015612088575060005482105b80156120c6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806120e96120d5565b11612171576000548110156121705760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561216e575b6000811415612164576004600083600190039350838152602001908152602001600020549050612139565b80925050506121a3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861222b8686846126b8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6122756127b7565b61229160046000848152602001908152602001600020546126c1565b9050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612305576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612340576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61234d600084838561220e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123c4836123b56000866000612214565b6123be85612777565b1761223c565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106123e8578060008190555050506124676000848385612267565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124926120cd565b8786866040518563ffffffff1660e01b81526004016124b49493929190612e82565b602060405180830381600087803b1580156124ce57600080fd5b505af19250505080156124ff57506040513d601f19601f820116820180604052508101906124fc9190612ad0565b60015b612579573d806000811461252f576040519150601f19603f3d011682016040523d82523d6000602084013e612534565b606091505b50600081511415612571576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546125db90613340565b80601f016020809104026020016040519081016040528092919081815260200182805461260790613340565b80156126545780601f1061262957610100808354040283529160200191612654565b820191906000526020600020905b81548152906001019060200180831161263757829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156126a457600183039250600a81066030018353600a81049050612684565b508181036020830392508083525050919050565b60009392505050565b6126c96127b7565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60006001821460e11b9050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600081525090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b60006128196128148461308f565b61306a565b90508281526020810184848401111561283157600080fd5b61283c8482856132fe565b509392505050565b60008135905061285381613699565b92915050565b600081359050612868816136b0565b92915050565b60008135905061287d816136c7565b92915050565b600081519050612892816136c7565b92915050565b600082601f8301126128a957600080fd5b81356128b9848260208601612806565b91505092915050565b6000813590506128d1816136de565b92915050565b6000602082840312156128e957600080fd5b60006128f784828501612844565b91505092915050565b6000806040838503121561291357600080fd5b600061292185828601612844565b925050602061293285828601612844565b9150509250929050565b60008060006060848603121561295157600080fd5b600061295f86828701612844565b935050602061297086828701612844565b9250506040612981868287016128c2565b9150509250925092565b600080600080608085870312156129a157600080fd5b60006129af87828801612844565b94505060206129c087828801612844565b93505060406129d1878288016128c2565b925050606085013567ffffffffffffffff8111156129ee57600080fd5b6129fa87828801612898565b91505092959194509250565b60008060408385031215612a1957600080fd5b6000612a2785828601612844565b9250506020612a3885828601612859565b9150509250929050565b60008060408385031215612a5557600080fd5b6000612a6385828601612844565b9250506020612a74858286016128c2565b9150509250929050565b600060208284031215612a9057600080fd5b6000612a9e84828501612859565b91505092915050565b600060208284031215612ab957600080fd5b6000612ac78482850161286e565b91505092915050565b600060208284031215612ae257600080fd5b6000612af084828501612883565b91505092915050565b600060208284031215612b0b57600080fd5b6000612b19848285016128c2565b91505092915050565b6000612b2e8383612df6565b60408301905092915050565b6000612b468383612e25565b60208301905092915050565b612b5b8161328a565b82525050565b612b6a8161328a565b82525050565b6000612b7b826130e0565b612b858185613126565b9350612b90836130c0565b8060005b83811015612bc1578151612ba88882612b22565b9750612bb38361310c565b925050600181019050612b94565b5085935050505092915050565b6000612bd9826130eb565b612be38185613137565b9350612bee836130d0565b8060005b83811015612c1f578151612c068882612b3a565b9750612c1183613119565b925050600181019050612bf2565b5085935050505092915050565b612c358161329c565b82525050565b6000612c46826130f6565b612c508185613148565b9350612c6081856020860161330d565b612c69816134a8565b840191505092915050565b6000612c7f82613101565b612c898185613159565b9350612c9981856020860161330d565b612ca2816134a8565b840191505092915050565b6000612cb882613101565b612cc2818561316a565b9350612cd281856020860161330d565b80840191505092915050565b6000612ceb602283613159565b9150612cf6826134b9565b604082019050919050565b6000612d0e602d83613159565b9150612d1982613508565b604082019050919050565b6000612d31601f83613159565b9150612d3c82613557565b602082019050919050565b6000612d54602283613159565b9150612d5f82613580565b604082019050919050565b6000612d77602083613159565b9150612d82826135cf565b602082019050919050565b6000612d9a601183613159565b9150612da5826135f8565b602082019050919050565b6000612dbd602e83613159565b9150612dc882613621565b604082019050919050565b6000612de0601883613159565b9150612deb82613670565b602082019050919050565b604082016000820151612e0c6000850182612b52565b506020820151612e1f6020850182612e25565b50505050565b612e2e816132f4565b82525050565b612e3d816132f4565b82525050565b6000612e4f8285612cad565b9150612e5b8284612cad565b91508190509392505050565b6000602082019050612e7c6000830184612b61565b92915050565b6000608082019050612e976000830187612b61565b612ea46020830186612b61565b612eb16040830185612e34565b8181036060830152612ec38184612c3b565b905095945050505050565b60006020820190508181036000830152612ee88184612b70565b905092915050565b60006020820190508181036000830152612f0a8184612bce565b905092915050565b6000602082019050612f276000830184612c2c565b92915050565b60006020820190508181036000830152612f478184612c74565b905092915050565b60006020820190508181036000830152612f6881612cde565b9050919050565b60006020820190508181036000830152612f8881612d01565b9050919050565b60006020820190508181036000830152612fa881612d24565b9050919050565b60006020820190508181036000830152612fc881612d47565b9050919050565b60006020820190508181036000830152612fe881612d6a565b9050919050565b6000602082019050818103600083015261300881612d8d565b9050919050565b6000602082019050818103600083015261302881612db0565b9050919050565b6000602082019050818103600083015261304881612dd3565b9050919050565b60006020820190506130646000830184612e34565b92915050565b6000613074613085565b90506130808282613372565b919050565b6000604051905090565b600067ffffffffffffffff8211156130aa576130a9613479565b5b6130b3826134a8565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613180826132f4565b915061318b836132f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131c0576131bf6133ec565b5b828201905092915050565b60006131d6826132f4565b91506131e1836132f4565b9250826131f1576131f061341b565b5b828204905092915050565b6000613207826132f4565b9150613212836132f4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561324b5761324a6133ec565b5b828202905092915050565b6000613261826132f4565b915061326c836132f4565b92508282101561327f5761327e6133ec565b5b828203905092915050565b6000613295826132d4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561332b578082015181840152602081019050613310565b8381111561333a576000848401525b50505050565b6000600282049050600182168061335857607f821691505b6020821081141561336c5761336b61344a565b5b50919050565b61337b826134a8565b810181811067ffffffffffffffff8211171561339a57613399613479565b5b80604052505050565b60006133ae826132f4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133e1576133e06133ec565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74206265747765656e203120616e64203230207460008201527f6f6b656e73206174206f6e636500000000000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265207468616e206d617820737570706c7900600082015250565b7f43616e27742072657365727665206d6f7265207468616e2073657420616d6f7560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c652069736e277420616374697665000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f57726f6e6720616d6f756e74206f66204554482073656e740000000000000000600082015250565b6136a28161328a565b81146136ad57600080fd5b50565b6136b98161329c565b81146136c457600080fd5b50565b6136d0816132a8565b81146136db57600080fd5b50565b6136e7816132f4565b81146136f257600080fd5b5056fea2646970667358221220df259d1cdafeeef4c3f8ba63f00aff02de1eae91b74c1a28c670c4d537148f0d64736f6c63430008040033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.