ERC-721
Overview
Max Total Supply
451 BlueFragment
Holders
147
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 BlueFragmentLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BlueFragment
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity Multiple files format)
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&#&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@&#P!^!PGP55Y55PGB&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@G!~?P@@@@@@@@@@GJ~:. .:!JB@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@B. .^?P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@~ .#@@@@@@@P^ ~JYJ~ ^5&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@&P^ !GGB#####BPY~ ^B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&: !@@@@@@&7 ~B@@@@@B7. .G@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@5!!7Y#@@@@@@@@@@@ @@@@@@@@@~ 5@@@@@@@@@@@@~ ~@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&: J@@@@@&~ 7@@@@@@@@@&#&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@^ ?@@@@@@@@@@@ @@@@@@@@@~ P@@@@@@@@@@@G: ?@@@@@@@@@@#GPGGB#&@@@@@@@@@@@@@BPYYY5G&#. 5@@@@@? ~@@@@@@@@@@@@@@@@@@@@@@@@@@@&#BGGB#@@@@@@@@@@@@@^ G@@@@@@@@@@@ @@@@@@@@@~ G@@@@@@@&B5! .?&@@@@@@@#J^ :~JB@@@@@@@@5^ .~ G@@@@G G@@@@@@@@@@@@@@@@@@@@@@&GJ!:. .^?B@@@@@B555Y. ?JJYP@@@@@@@ @@@@@@@@@! 5BGPYJ7~: .~Y#@@@@@@@@5. !5GG5J~ ~B@@@@#~ .?PGPY^ G@@@@7 ~@@@@@@@@@@@@@@@@@@@@@@J. .!J55Y7. J@@@@? .:^J&@@@@@@ @@@@@@@B!. :~7YG#@@@@@@@@@@? .P@@@@@@@Y !@@@&^ ^#@@@@@@7 G@@@&^ ?@@@@@@@@@@@@@@@@@@@@@@J::~5&@@@@@@B: J@@@&P55Y. ~#&@@@@@@@@@@ @@@@@@@B!. ~J7: ^Y&@@@@@@@@@@@@P ^G&&&&#BY^ :P@@@J .#@@@@@@@G B@@@#. Y@@@@@@@@@@@@@@BG#@@@@@@@&#BPY?!~^^:. ^@@@@@@@#. 7@@@@@@@@@@@@ @@@@@@@@@? J@@&G?: .7P@@@@@@@@@@! . ..:.. :75&@@@@^ !@@@@@@@@Y .B@@@@^ ?@@@@@@@@@@@@P~ G@@@@BJ~. .:~!7??^ :&@@@@@@B ?@@@@@@@@@@@@ @@@@@@@@@J ?@@@@@&P!. ^J#@@@@@@@? Y#P555PG#@@@@@@@@~ ~@@@@@@@#: .#@@@@P .5@@@@@@@@BY^ ^P@@@@Y 7B&@@@@@@! :&@@@@@@B ?@@@@@@@@@@@@ @@@@@@@@@J !@@@@@@@@#Y^ .!5#&@@@#^ .5&@@@@@&GY!~5@@@G. J#@@@#Y. .#@@@@@G^ ^JY5YJ!: ~5@@@@@@7 ?B&&&#BY~ :&@@@@@@&^ !@@&BG&@@@@@@ @@@@@@@@@G. P@@@@@@@@@@G!. .P@@@&J^. .^~~^:. .~P@@@@#?: ::: :7 G@@@@@@@G?^. .^75B@@@@@@@@&Y~. ... ^: .&@@@@@@@B^ ~?: .G@@@@@@ @@@@@@@@@@#P5P&@@@@@@@@@@@@#57!Y&@@@@@@#PY?777??YPB&@@@@@@@@&BPY???YG&@Y~^!B@@@@@@@@@@&BBGGB#&@@@@@@@@@@@@@@@&BP55Y5PB#@G~:^J@@@@@@@@@@GY?7?YG&@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import './ERC721A.sol'; import './Strings.sol'; contract BlueFragment is ERC721A { // library using Strings for uint256; // constant uint constant public maxMint = 3; uint constant public maxTotal = 6666; uint constant public mintTime = 1655125200; // attributes bool public freeMintOpen = false; bool public blindBoxOpen = false; address public withdrawAddress; string public baseTokenURI; string public blindTokenURI; mapping(address => uint) public buyRecord; // modifiers modifier onlyOwner { require(msg.sender == withdrawAddress, "not owner"); _; } constructor(string memory name, string memory symbol, string memory _blindTokenURI) ERC721A(name, symbol) { blindTokenURI = _blindTokenURI; withdrawAddress = msg.sender; } //Free Mint function freeMint(uint256 num) public { uint256 supply = totalSupply(); require(freeMintOpen, "not open"); require(num + buyRecord[msg.sender] <= maxMint, "You can mint a maximum of 3 NFT"); require(supply + num <= maxTotal, "Exceeds maximum NFT supply"); require(block.timestamp >= mintTime, "no mint time"); buyRecord[msg.sender] += num; _safeMint(msg.sender, num); } //Only Owner function getAirDrop(address recipient, uint16 _num) public onlyOwner { _safeMint(recipient, _num); } function setWithdrawAddress(address _withdrawAddress) public onlyOwner { withdrawAddress = _withdrawAddress; } function setFreeMintOpened() public onlyOwner { freeMintOpen = !freeMintOpen; } function setBlindBoxOpened() public onlyOwner { blindBoxOpen = !blindBoxOpen; } function setBaseURI(string memory _baseTokenURI) public onlyOwner { baseTokenURI = _baseTokenURI; } function setBlindTokenURI(string memory _blindTokenURI) public onlyOwner { blindTokenURI = _blindTokenURI; } function withdrawAll() public onlyOwner { (bool success, ) = withdrawAddress.call{value : address(this).balance}(""); require(success, "withdrawAddress error"); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); if (blindBoxOpen) { string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } else { return blindTokenURI; } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 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; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event 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 (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 offset; do { emit Transfer(address(0), to, startTokenId + offset++); } while (offset < quantity); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (_addressToUint256(to) == 0) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); address approvedAddress = _tokenApprovals[tokenId]; if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.13; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"_blindTokenURI","type":"string"}],"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":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blindBoxOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blindTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"buyRecord","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint16","name":"_num","type":"uint16"}],"name":"getAirDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setBlindBoxOpened","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_blindTokenURI","type":"string"}],"name":"setBlindTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setFreeMintOpened","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_withdrawAddress","type":"address"}],"name":"setWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526008805461ffff191690553480156200001c57600080fd5b5060405162001be338038062001be38339810160408190526200003f9162000221565b82518390839062000058906002906020850190620000ae565b5080516200006e906003906020840190620000ae565b5060008055505080516200008a90600a906020840190620000ae565b50506008805462010000600160b01b03191633620100000217905550620002ee9050565b828054620000bc90620002b2565b90600052602060002090601f016020900481019282620000e057600085556200012b565b82601f10620000fb57805160ff19168380011785556200012b565b828001600101855582156200012b579182015b828111156200012b5782518255916020019190600101906200010e565b50620001399291506200013d565b5090565b5b808211156200013957600081556001016200013e565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200017c57600080fd5b81516001600160401b038082111562000199576200019962000154565b604051601f8301601f19908116603f01168101908282118183101715620001c457620001c462000154565b81604052838152602092508683858801011115620001e157600080fd5b600091505b83821015620002055785820183015181830184015290820190620001e6565b83821115620002175760008385830101525b9695505050505050565b6000806000606084860312156200023757600080fd5b83516001600160401b03808211156200024f57600080fd5b6200025d878388016200016a565b945060208601519150808211156200027457600080fd5b62000282878388016200016a565b935060408601519150808211156200029957600080fd5b50620002a8868287016200016a565b9150509250925092565b600181811c90821680620002c757607f821691505b602082108103620002e857634e487b7160e01b600052602260045260246000fd5b50919050565b6118e580620002fe6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c80637501f7411161010f578063a22cb465116100a2578063dc2295d411610071578063dc2295d4146103d7578063e985e9c5146103ea578063f0112aee14610426578063f8e4dc161461043957600080fd5b8063a22cb46514610396578063b88d4fde146103a9578063c87b56dd146103bc578063d547cfb7146103cf57600080fd5b8063853828b6116100de578063853828b61461035b57806386478122146103635780638a57b7d61461036e57806395d89b411461038e57600080fd5b80637501f7411461032b57806375b136cb14610333578063777fa9ab1461033b5780637c928fe91461034857600080fd5b806323b872dd1161018757806355f804b31161015657806355f804b3146102e95780636352211e146102fc578063648e3c261461030f57806370a082311461031857600080fd5b806323b872dd146102a85780632ae0846d146102bb5780633ab1a494146102c357806342842e0e146102d657600080fd5b8063095ea7b3116101c3578063095ea7b3146102525780630b4d9371146102675780631581b6001461027957806318160ddd1461029257600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f83660046113eb565b610441565b60405190151581526020015b60405180910390f35b61021a610493565b6040516102099190611460565b61023a610235366004611473565b610525565b6040516001600160a01b039091168152602001610209565b6102656102603660046114a3565b610569565b005b6008546101fd90610100900460ff1681565b60085461023a906201000090046001600160a01b031681565b600154600054035b604051908152602001610209565b6102656102b63660046114cd565b610609565b61021a610619565b6102656102d1366004611509565b6106a7565b6102656102e43660046114cd565b61070a565b6102656102f73660046115b0565b610725565b61023a61030a366004611473565b61076c565b61029a611a0a81565b61029a610326366004611509565b610777565b61029a600381565b6102656107c0565b6008546101fd9060ff1681565b610265610356366004611473565b610804565b61026561098b565b61029a6362a734d081565b61029a61037c366004611509565b600b6020526000908152604090205481565b61021a610a5f565b6102656103a43660046115f9565b610a6e565b6102656103b7366004611635565b610b03565b61021a6103ca366004611473565b610b4d565b61021a610cbf565b6102656103e53660046115b0565b610ccc565b6101fd6103f83660046116b1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102656104343660046116e4565b610d0f565b610265610d4d565b60006301ffc9a760e01b6001600160e01b03198316148061047257506380ac58cd60e01b6001600160e01b03198316145b8061048d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104a290611717565b80601f01602080910402602001604051908101604052809291908181526020018280546104ce90611717565b801561051b5780601f106104f05761010080835404028352916020019161051b565b820191906000526020600020905b8154815290600101906020018083116104fe57829003601f168201915b5050505050905090565b600061053082610d9a565b61054d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061057482610dc1565b9050336001600160a01b038216146105ad5761059081336103f8565b6105ad576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610614838383610e28565b505050565b600a805461062690611717565b80601f016020809104026020016040519081016040528092919081815260200182805461065290611717565b801561069f5780601f106106745761010080835404028352916020019161069f565b820191906000526020600020905b81548152906001019060200180831161068257829003601f168201915b505050505081565b6008546201000090046001600160a01b031633146106e05760405162461bcd60e51b81526004016106d790611751565b60405180910390fd5b600880546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b61061483838360405180602001604052806000815250610b03565b6008546201000090046001600160a01b031633146107555760405162461bcd60e51b81526004016106d790611751565b805161076890600990602084019061133c565b5050565b600061048d82610dc1565b60008160000361079a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546201000090046001600160a01b031633146107f05760405162461bcd60e51b81526004016106d790611751565b6008805460ff19811660ff90911615179055565b60006108136001546000540390565b60085490915060ff166108535760405162461bcd60e51b81526020600482015260086024820152673737ba1037b832b760c11b60448201526064016106d7565b336000908152600b6020526040902054600390610870908461178a565b11156108be5760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e206d696e742061206d6178696d756d206f662033204e46540060448201526064016106d7565b611a0a6108cb838361178a565b11156109195760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d6178696d756d204e465420737570706c7900000000000060448201526064016106d7565b6362a734d042101561095c5760405162461bcd60e51b815260206004820152600c60248201526b6e6f206d696e742074696d6560a01b60448201526064016106d7565b336000908152600b60205260408120805484929061097b90849061178a565b9091555061076890503383610fe1565b6008546201000090046001600160a01b031633146109bb5760405162461bcd60e51b81526004016106d790611751565b6008546040516000916201000090046001600160a01b03169047908381818185875af1925050503d8060008114610a0e576040519150601f19603f3d011682016040523d82523d6000602084013e610a13565b606091505b5050905080610a5c5760405162461bcd60e51b81526020600482015260156024820152743bb4ba34323930bba0b2323932b9b99032b93937b960591b60448201526064016106d7565b50565b6060600380546104a290611717565b336001600160a01b03831603610a975760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b0e848484610e28565b6001600160a01b0383163b15610b4757610b2a84848484610ffb565b610b47576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b5882610d9a565b610bbc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106d7565b600854610100900460ff1615610c28576000610bd66110e7565b90508051600003610bf65760405180602001604052806000815250610c21565b80610c00846110f6565b604051602001610c119291906117a2565b6040516020818303038152906040525b9392505050565b600a8054610c3590611717565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6190611717565b8015610cae5780601f10610c8357610100808354040283529160200191610cae565b820191906000526020600020905b815481529060010190602001808311610c9157829003601f168201915b50505050509050919050565b919050565b6009805461062690611717565b6008546201000090046001600160a01b03163314610cfc5760405162461bcd60e51b81526004016106d790611751565b805161076890600a90602084019061133c565b6008546201000090046001600160a01b03163314610d3f5760405162461bcd60e51b81526004016106d790611751565b610768828261ffff16610fe1565b6008546201000090046001600160a01b03163314610d7d5760405162461bcd60e51b81526004016106d790611751565b6008805461ff001981166101009182900460ff1615909102179055565b600080548210801561048d575050600090815260046020526040902054600160e01b161590565b600081600054811015610e0f5760008181526004602052604081205490600160e01b82169003610e0d575b80600003610c21575060001901600081815260046020526040902054610dec565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e3382610dc1565b9050836001600160a01b0316816001600160a01b031614610e665760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610e965750610e9686336103f8565b80610ea957506001600160a01b03821633145b905080610ec957604051632ce44b5f60e11b815260040160405180910390fd5b84600003610eea57604051633a954ecd60e21b815260040160405180910390fd5b8115610f0d57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610f9857600184016000818152600460205260408120549003610f96576000548114610f965760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6107688282604051806020016040528060008152506111f7565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110309033908990889088906004016117d1565b6020604051808303816000875af192505050801561106b575060408051601f3d908101601f191682019092526110689181019061180e565b60015b6110c9573d808015611099576040519150601f19603f3d011682016040523d82523d6000602084013e61109e565b606091505b5080516000036110c1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546104a290611717565b60608160000361111d5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561114757806111318161182b565b91506111409050600a8361185a565b9150611121565b60008167ffffffffffffffff81111561116257611162611524565b6040519080825280601f01601f19166020018201604052801561118c576020820181803683370190505b5090505b84156110df576111a160018361186e565b91506111ae600a86611885565b6111b990603061178a565b60f81b8183815181106111ce576111ce611899565b60200101906001600160f81b031916908160001a9053506111f0600a8661185a565b9450611190565b6112018383611264565b6001600160a01b0383163b15610614576000548281035b61122b6000868380600101945086610ffb565b611248576040516368d2bf6b60e11b815260040160405180910390fd5b81811061121857816000541461125d57600080fd5b5050505050565b6000548260000361128757604051622e076360e81b815260040160405180910390fd5b816000036112a85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48281106112ef57500160005550565b82805461134890611717565b90600052602060002090601f01602090048101928261136a57600085556113b0565b82601f1061138357805160ff19168380011785556113b0565b828001600101855582156113b0579182015b828111156113b0578251825591602001919060010190611395565b506113bc9291506113c0565b5090565b5b808211156113bc57600081556001016113c1565b6001600160e01b031981168114610a5c57600080fd5b6000602082840312156113fd57600080fd5b8135610c21816113d5565b60005b8381101561142357818101518382015260200161140b565b83811115610b475750506000910152565b6000815180845261144c816020860160208601611408565b601f01601f19169290920160200192915050565b602081526000610c216020830184611434565b60006020828403121561148557600080fd5b5035919050565b80356001600160a01b0381168114610cba57600080fd5b600080604083850312156114b657600080fd5b6114bf8361148c565b946020939093013593505050565b6000806000606084860312156114e257600080fd5b6114eb8461148c565b92506114f96020850161148c565b9150604084013590509250925092565b60006020828403121561151b57600080fd5b610c218261148c565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561155557611555611524565b604051601f8501601f19908116603f0116810190828211818310171561157d5761157d611524565b8160405280935085815286868601111561159657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156115c257600080fd5b813567ffffffffffffffff8111156115d957600080fd5b8201601f810184136115ea57600080fd5b6110df8482356020840161153a565b6000806040838503121561160c57600080fd5b6116158361148c565b91506020830135801515811461162a57600080fd5b809150509250929050565b6000806000806080858703121561164b57600080fd5b6116548561148c565b93506116626020860161148c565b925060408501359150606085013567ffffffffffffffff81111561168557600080fd5b8501601f8101871361169657600080fd5b6116a58782356020840161153a565b91505092959194509250565b600080604083850312156116c457600080fd5b6116cd8361148c565b91506116db6020840161148c565b90509250929050565b600080604083850312156116f757600080fd5b6117008361148c565b9150602083013561ffff8116811461162a57600080fd5b600181811c9082168061172b57607f821691505b60208210810361174b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600990820152683737ba1037bbb732b960b91b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561179d5761179d611774565b500190565b600083516117b4818460208801611408565b8351908301906117c8818360208801611408565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061180490830184611434565b9695505050505050565b60006020828403121561182057600080fd5b8151610c21816113d5565b60006001820161183d5761183d611774565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261186957611869611844565b500490565b60008282101561188057611880611774565b500390565b60008261189457611894611844565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212208be1d458d5086197f36f3ae9b6b52cbe59ff8639f190509805471404d7c819b964736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d426c756520467261676d656e7400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c426c7565467261676d656e740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f6f70656e7365612e6d7970696e6174612e636c6f75642f697066732f516d58557856765866704e6e70414b384d4a786b6870684133756b6e6b4a5754316a464c53444b386233414544702f00000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c80637501f7411161010f578063a22cb465116100a2578063dc2295d411610071578063dc2295d4146103d7578063e985e9c5146103ea578063f0112aee14610426578063f8e4dc161461043957600080fd5b8063a22cb46514610396578063b88d4fde146103a9578063c87b56dd146103bc578063d547cfb7146103cf57600080fd5b8063853828b6116100de578063853828b61461035b57806386478122146103635780638a57b7d61461036e57806395d89b411461038e57600080fd5b80637501f7411461032b57806375b136cb14610333578063777fa9ab1461033b5780637c928fe91461034857600080fd5b806323b872dd1161018757806355f804b31161015657806355f804b3146102e95780636352211e146102fc578063648e3c261461030f57806370a082311461031857600080fd5b806323b872dd146102a85780632ae0846d146102bb5780633ab1a494146102c357806342842e0e146102d657600080fd5b8063095ea7b3116101c3578063095ea7b3146102525780630b4d9371146102675780631581b6001461027957806318160ddd1461029257600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f83660046113eb565b610441565b60405190151581526020015b60405180910390f35b61021a610493565b6040516102099190611460565b61023a610235366004611473565b610525565b6040516001600160a01b039091168152602001610209565b6102656102603660046114a3565b610569565b005b6008546101fd90610100900460ff1681565b60085461023a906201000090046001600160a01b031681565b600154600054035b604051908152602001610209565b6102656102b63660046114cd565b610609565b61021a610619565b6102656102d1366004611509565b6106a7565b6102656102e43660046114cd565b61070a565b6102656102f73660046115b0565b610725565b61023a61030a366004611473565b61076c565b61029a611a0a81565b61029a610326366004611509565b610777565b61029a600381565b6102656107c0565b6008546101fd9060ff1681565b610265610356366004611473565b610804565b61026561098b565b61029a6362a734d081565b61029a61037c366004611509565b600b6020526000908152604090205481565b61021a610a5f565b6102656103a43660046115f9565b610a6e565b6102656103b7366004611635565b610b03565b61021a6103ca366004611473565b610b4d565b61021a610cbf565b6102656103e53660046115b0565b610ccc565b6101fd6103f83660046116b1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102656104343660046116e4565b610d0f565b610265610d4d565b60006301ffc9a760e01b6001600160e01b03198316148061047257506380ac58cd60e01b6001600160e01b03198316145b8061048d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104a290611717565b80601f01602080910402602001604051908101604052809291908181526020018280546104ce90611717565b801561051b5780601f106104f05761010080835404028352916020019161051b565b820191906000526020600020905b8154815290600101906020018083116104fe57829003601f168201915b5050505050905090565b600061053082610d9a565b61054d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061057482610dc1565b9050336001600160a01b038216146105ad5761059081336103f8565b6105ad576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610614838383610e28565b505050565b600a805461062690611717565b80601f016020809104026020016040519081016040528092919081815260200182805461065290611717565b801561069f5780601f106106745761010080835404028352916020019161069f565b820191906000526020600020905b81548152906001019060200180831161068257829003601f168201915b505050505081565b6008546201000090046001600160a01b031633146106e05760405162461bcd60e51b81526004016106d790611751565b60405180910390fd5b600880546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b61061483838360405180602001604052806000815250610b03565b6008546201000090046001600160a01b031633146107555760405162461bcd60e51b81526004016106d790611751565b805161076890600990602084019061133c565b5050565b600061048d82610dc1565b60008160000361079a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546201000090046001600160a01b031633146107f05760405162461bcd60e51b81526004016106d790611751565b6008805460ff19811660ff90911615179055565b60006108136001546000540390565b60085490915060ff166108535760405162461bcd60e51b81526020600482015260086024820152673737ba1037b832b760c11b60448201526064016106d7565b336000908152600b6020526040902054600390610870908461178a565b11156108be5760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e206d696e742061206d6178696d756d206f662033204e46540060448201526064016106d7565b611a0a6108cb838361178a565b11156109195760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d6178696d756d204e465420737570706c7900000000000060448201526064016106d7565b6362a734d042101561095c5760405162461bcd60e51b815260206004820152600c60248201526b6e6f206d696e742074696d6560a01b60448201526064016106d7565b336000908152600b60205260408120805484929061097b90849061178a565b9091555061076890503383610fe1565b6008546201000090046001600160a01b031633146109bb5760405162461bcd60e51b81526004016106d790611751565b6008546040516000916201000090046001600160a01b03169047908381818185875af1925050503d8060008114610a0e576040519150601f19603f3d011682016040523d82523d6000602084013e610a13565b606091505b5050905080610a5c5760405162461bcd60e51b81526020600482015260156024820152743bb4ba34323930bba0b2323932b9b99032b93937b960591b60448201526064016106d7565b50565b6060600380546104a290611717565b336001600160a01b03831603610a975760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b0e848484610e28565b6001600160a01b0383163b15610b4757610b2a84848484610ffb565b610b47576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b5882610d9a565b610bbc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106d7565b600854610100900460ff1615610c28576000610bd66110e7565b90508051600003610bf65760405180602001604052806000815250610c21565b80610c00846110f6565b604051602001610c119291906117a2565b6040516020818303038152906040525b9392505050565b600a8054610c3590611717565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6190611717565b8015610cae5780601f10610c8357610100808354040283529160200191610cae565b820191906000526020600020905b815481529060010190602001808311610c9157829003601f168201915b50505050509050919050565b919050565b6009805461062690611717565b6008546201000090046001600160a01b03163314610cfc5760405162461bcd60e51b81526004016106d790611751565b805161076890600a90602084019061133c565b6008546201000090046001600160a01b03163314610d3f5760405162461bcd60e51b81526004016106d790611751565b610768828261ffff16610fe1565b6008546201000090046001600160a01b03163314610d7d5760405162461bcd60e51b81526004016106d790611751565b6008805461ff001981166101009182900460ff1615909102179055565b600080548210801561048d575050600090815260046020526040902054600160e01b161590565b600081600054811015610e0f5760008181526004602052604081205490600160e01b82169003610e0d575b80600003610c21575060001901600081815260046020526040902054610dec565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e3382610dc1565b9050836001600160a01b0316816001600160a01b031614610e665760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610e965750610e9686336103f8565b80610ea957506001600160a01b03821633145b905080610ec957604051632ce44b5f60e11b815260040160405180910390fd5b84600003610eea57604051633a954ecd60e21b815260040160405180910390fd5b8115610f0d57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610f9857600184016000818152600460205260408120549003610f96576000548114610f965760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6107688282604051806020016040528060008152506111f7565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110309033908990889088906004016117d1565b6020604051808303816000875af192505050801561106b575060408051601f3d908101601f191682019092526110689181019061180e565b60015b6110c9573d808015611099576040519150601f19603f3d011682016040523d82523d6000602084013e61109e565b606091505b5080516000036110c1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546104a290611717565b60608160000361111d5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561114757806111318161182b565b91506111409050600a8361185a565b9150611121565b60008167ffffffffffffffff81111561116257611162611524565b6040519080825280601f01601f19166020018201604052801561118c576020820181803683370190505b5090505b84156110df576111a160018361186e565b91506111ae600a86611885565b6111b990603061178a565b60f81b8183815181106111ce576111ce611899565b60200101906001600160f81b031916908160001a9053506111f0600a8661185a565b9450611190565b6112018383611264565b6001600160a01b0383163b15610614576000548281035b61122b6000868380600101945086610ffb565b611248576040516368d2bf6b60e11b815260040160405180910390fd5b81811061121857816000541461125d57600080fd5b5050505050565b6000548260000361128757604051622e076360e81b815260040160405180910390fd5b816000036112a85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48281106112ef57500160005550565b82805461134890611717565b90600052602060002090601f01602090048101928261136a57600085556113b0565b82601f1061138357805160ff19168380011785556113b0565b828001600101855582156113b0579182015b828111156113b0578251825591602001919060010190611395565b506113bc9291506113c0565b5090565b5b808211156113bc57600081556001016113c1565b6001600160e01b031981168114610a5c57600080fd5b6000602082840312156113fd57600080fd5b8135610c21816113d5565b60005b8381101561142357818101518382015260200161140b565b83811115610b475750506000910152565b6000815180845261144c816020860160208601611408565b601f01601f19169290920160200192915050565b602081526000610c216020830184611434565b60006020828403121561148557600080fd5b5035919050565b80356001600160a01b0381168114610cba57600080fd5b600080604083850312156114b657600080fd5b6114bf8361148c565b946020939093013593505050565b6000806000606084860312156114e257600080fd5b6114eb8461148c565b92506114f96020850161148c565b9150604084013590509250925092565b60006020828403121561151b57600080fd5b610c218261148c565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561155557611555611524565b604051601f8501601f19908116603f0116810190828211818310171561157d5761157d611524565b8160405280935085815286868601111561159657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156115c257600080fd5b813567ffffffffffffffff8111156115d957600080fd5b8201601f810184136115ea57600080fd5b6110df8482356020840161153a565b6000806040838503121561160c57600080fd5b6116158361148c565b91506020830135801515811461162a57600080fd5b809150509250929050565b6000806000806080858703121561164b57600080fd5b6116548561148c565b93506116626020860161148c565b925060408501359150606085013567ffffffffffffffff81111561168557600080fd5b8501601f8101871361169657600080fd5b6116a58782356020840161153a565b91505092959194509250565b600080604083850312156116c457600080fd5b6116cd8361148c565b91506116db6020840161148c565b90509250929050565b600080604083850312156116f757600080fd5b6117008361148c565b9150602083013561ffff8116811461162a57600080fd5b600181811c9082168061172b57607f821691505b60208210810361174b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600990820152683737ba1037bbb732b960b91b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561179d5761179d611774565b500190565b600083516117b4818460208801611408565b8351908301906117c8818360208801611408565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061180490830184611434565b9695505050505050565b60006020828403121561182057600080fd5b8151610c21816113d5565b60006001820161183d5761183d611774565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261186957611869611844565b500490565b60008282101561188057611880611774565b500390565b60008261189457611894611844565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212208be1d458d5086197f36f3ae9b6b52cbe59ff8639f190509805471404d7c819b964736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d426c756520467261676d656e7400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c426c7565467261676d656e740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f6f70656e7365612e6d7970696e6174612e636c6f75642f697066732f516d58557856765866704e6e70414b384d4a786b6870684133756b6e6b4a5754316a464c53444b386233414544702f00000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Blue Fragment
Arg [1] : symbol (string): BlueFragment
Arg [2] : _blindTokenURI (string): https://opensea.mypinata.cloud/ipfs/QmXUxVvXfpNnpAK8MJxkhphA3uknkJWT1jFLSDK8b3AEDp/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 426c756520467261676d656e7400000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 426c7565467261676d656e740000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000053
Arg [8] : 68747470733a2f2f6f70656e7365612e6d7970696e6174612e636c6f75642f69
Arg [9] : 7066732f516d58557856765866704e6e70414b384d4a786b6870684133756b6e
Arg [10] : 6b4a5754316a464c53444b386233414544702f00000000000000000000000000
Deployed Bytecode Sourcemap
3315:2774:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5025:615:1;;;;;;:::i;:::-;;:::i;:::-;;;565:14:4;;558:22;540:41;;528:2;513:18;5025:615:1;;;;;;;;10061:100;;;:::i;:::-;;;;;;;:::i;12074:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:4;;;1674:51;;1662:2;1647:18;12074:204:1;1528:203:4;11593:415:1;;;;;;:::i;:::-;;:::i;:::-;;3620:32:0;;;;;;;;;;;;3659:30;;;;;;;;-1:-1:-1;;;;;3659:30:0;;;4079:315:1;4345:12;;4132:7;4329:13;:28;4079:315;;;2319:25:4;;;2307:2;2292:18;4079:315:1;2173:177:4;12960:170:1;;;;;;:::i;:::-;;:::i;3729:27:0:-;;;:::i;4751:124::-;;;;;;:::i;:::-;;:::i;13201:185:1:-;;;;;;:::i;:::-;;:::i;5085:113:0:-;;;;;;:::i;:::-;;:::i;9850:144:1:-;;;;;;:::i;:::-;;:::i;3464:36:0:-;;3496:4;3464:36;;5704:234:1;;;;;;:::i;:::-;;:::i;3425:32:0:-;;3456:1;3425:32;;4883:93;;;:::i;3581:32::-;;;;;;;;;4164:439;;;;;;:::i;:::-;;:::i;5336:185::-;;;:::i;3507:42::-;;3539:10;3507:42;;3763:41;;;;;;:::i;:::-;;;;;;;;;;;;;;10230:104:1;;;:::i;12350:308::-;;;;;;:::i;:::-;;:::i;13457:396::-;;;;;;:::i;:::-;;:::i;5650:436:0:-;;;;;;:::i;:::-;;:::i;3696:26::-;;;:::i;5206:122::-;;;;;;:::i;:::-;;:::i;12729:164:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;12850:25:1;;;12826:4;12850:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12729:164;4629:114:0;;;;;;:::i;:::-;;:::i;4984:93::-;;;:::i;5025:615:1:-;5110:4;-1:-1:-1;;;;;;;;;5410:25:1;;;;:102;;-1:-1:-1;;;;;;;;;;5487:25:1;;;5410:102;:179;;;-1:-1:-1;;;;;;;;;;5564:25:1;;;5410:179;5390:199;5025:615;-1:-1:-1;;5025:615:1:o;10061:100::-;10115:13;10148:5;10141:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10061:100;:::o;12074:204::-;12142:7;12167:16;12175:7;12167;:16::i;:::-;12162:64;;12192:34;;-1:-1:-1;;;12192:34:1;;;;;;;;;;;12162:64;-1:-1:-1;12246:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;12246:24:1;;12074:204::o;11593:415::-;11666:13;11698:27;11717:7;11698:18;:27::i;:::-;11666:61;-1:-1:-1;26869:10:1;-1:-1:-1;;;;;11744:28:1;;;11740:175;;11792:44;11809:5;26869:10;12729:164;:::i;11792:44::-;11787:128;;11864:35;;-1:-1:-1;;;11864:35:1;;;;;;;;;;;11787:128;11927:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11927:29:1;-1:-1:-1;;;;;11927:29:1;;;;;;;;;11972:28;;11927:24;;11972:28;;;;;;;11655:353;11593:415;;:::o;12960:170::-;13094:28;13104:4;13110:2;13114:7;13094:9;:28::i;:::-;12960:170;;;:::o;3729:27:0:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4751:124::-;3887:15;;;;;-1:-1:-1;;;;;3887:15:0;3873:10;:29;3865:51;;;;-1:-1:-1;;;3865:51:0;;;;;;;:::i;:::-;;;;;;;;;4833:15:::1;:34:::0;;-1:-1:-1;;;;;4833:34:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;4833:34:0;;::::1;::::0;;;::::1;::::0;;4751:124::o;13201:185:1:-;13339:39;13356:4;13362:2;13366:7;13339:39;;;;;;;;;;;;:16;:39::i;5085:113:0:-;3887:15;;;;;-1:-1:-1;;;;;3887:15:0;3873:10;:29;3865:51;;;;-1:-1:-1;;;3865:51:0;;;;;;;:::i;:::-;5162:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;5085:113:::0;:::o;9850:144:1:-;9914:7;9957:27;9976:7;9957:18;:27::i;5704:234::-;5768:7;5810:5;5820:1;5792:29;5788:70;;5830:28;;-1:-1:-1;;;5830:28:1;;;;;;;;;;;5788:70;-1:-1:-1;;;;;;5876:25:1;;;;;:18;:25;;;;;;1049:13;5876:54;;5704:234::o;4883:93:0:-;3887:15;;;;;-1:-1:-1;;;;;3887:15:0;3873:10;:29;3865:51;;;;-1:-1:-1;;;3865:51:0;;;;;;;:::i;:::-;4956:12:::1;::::0;;-1:-1:-1;;4940:28:0;::::1;4956:12;::::0;;::::1;4955:13;4940:28;::::0;;4883:93::o;4164:439::-;4213:14;4230:13;4345:12:1;;4132:7;4329:13;:28;;4079:315;4230:13:0;4262:12;;4213:30;;-1:-1:-1;4262:12:0;;4254:33;;;;-1:-1:-1;;;4254:33:0;;6668:2:4;4254:33:0;;;6650:21:4;6707:1;6687:18;;;6680:29;-1:-1:-1;;;6725:18:4;;;6718:38;6773:18;;4254:33:0;6466:331:4;4254:33:0;4322:10;4312:21;;;;:9;:21;;;;;;3456:1;;4306:27;;:3;:27;:::i;:::-;:38;;4298:82;;;;-1:-1:-1;;;4298:82:0;;7269:2:4;4298:82:0;;;7251:21:4;7308:2;7288:18;;;7281:30;7347:33;7327:18;;;7320:61;7398:18;;4298:82:0;7067:355:4;4298:82:0;3496:4;4399:12;4408:3;4399:6;:12;:::i;:::-;:24;;4391:63;;;;-1:-1:-1;;;4391:63:0;;7629:2:4;4391:63:0;;;7611:21:4;7668:2;7648:18;;;7641:30;7707:28;7687:18;;;7680:56;7753:18;;4391:63:0;7427:350:4;4391:63:0;3539:10;4473:15;:27;;4465:52;;;;-1:-1:-1;;;4465:52:0;;7984:2:4;4465:52:0;;;7966:21:4;8023:2;8003:18;;;7996:30;-1:-1:-1;;;8042:18:4;;;8035:42;8094:18;;4465:52:0;7782:336:4;4465:52:0;4540:10;4530:21;;;;:9;:21;;;;;:28;;4555:3;;4530:21;:28;;4555:3;;4530:28;:::i;:::-;;;;-1:-1:-1;4569:26:0;;-1:-1:-1;4579:10:0;4591:3;4569:9;:26::i;5336:185::-;3887:15;;;;;-1:-1:-1;;;;;3887:15:0;3873:10;:29;3865:51;;;;-1:-1:-1;;;3865:51:0;;;;;;;:::i;:::-;5406:15:::1;::::0;:55:::1;::::0;5388:12:::1;::::0;5406:15;;::::1;-1:-1:-1::0;;;;;5406:15:0::1;::::0;5435:21:::1;::::0;5388:12;5406:55;5388:12;5406:55;5435:21;5406:15;:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5387:74;;;5480:7;5472:41;;;::::0;-1:-1:-1;;;5472:41:0;;8535:2:4;5472:41:0::1;::::0;::::1;8517:21:4::0;8574:2;8554:18;;;8547:30;-1:-1:-1;;;8593:18:4;;;8586:51;8654:18;;5472:41:0::1;8333:345:4::0;5472:41:0::1;5376:145;5336:185::o:0;10230:104:1:-;10286:13;10319:7;10312:14;;;;;:::i;12350:308::-;26869:10;-1:-1:-1;;;;;12449:31:1;;;12445:61;;12489:17;;-1:-1:-1;;;12489:17:1;;;;;;;;;;;12445:61;26869:10;12519:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12519:49:1;;;;;;;;;;;;:60;;-1:-1:-1;;12519:60:1;;;;;;;;;;12595:55;;540:41:4;;;12519:49:1;;26869:10;12595:55;;513:18:4;12595:55:1;;;;;;;12350:308;;:::o;13457:396::-;13624:28;13634:4;13640:2;13644:7;13624:9;:28::i;:::-;-1:-1:-1;;;;;13667:14:1;;;:19;13663:183;;13706:56;13737:4;13743:2;13747:7;13756:5;13706:30;:56::i;:::-;13701:145;;13790:40;;-1:-1:-1;;;13790:40:1;;;;;;;;;;;13701:145;13457:396;;;;:::o;5650:436:0:-;5723:13;5757:16;5765:7;5757;:16::i;:::-;5749:76;;;;-1:-1:-1;;;5749:76:0;;8885:2:4;5749:76:0;;;8867:21:4;8924:2;8904:18;;;8897:30;8963:34;8943:18;;;8936:62;-1:-1:-1;;;9014:18:4;;;9007:45;9069:19;;5749:76:0;8683:411:4;5749:76:0;5842:12;;;;;;;5838:241;;;5871:21;5895:10;:8;:10::i;:::-;5871:34;;5933:7;5927:21;5952:1;5927:26;:87;;;;;;;;;;;;;;;;;5980:7;5989:18;:7;:16;:18::i;:::-;5963:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5927:87;5920:94;5650:436;-1:-1:-1;;;5650:436:0:o;5838:241::-;6054:13;6047:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5650:436;;;:::o;5838:241::-;5650:436;;;:::o;3696:26::-;;;;;;;:::i;5206:122::-;3887:15;;;;;-1:-1:-1;;;;;3887:15:0;3873:10;:29;3865:51;;;;-1:-1:-1;;;3865:51:0;;;;;;;:::i;:::-;5290:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;4629:114::-:0;3887:15;;;;;-1:-1:-1;;;;;3887:15:0;3873:10;:29;3865:51;;;;-1:-1:-1;;;3865:51:0;;;;;;;:::i;:::-;4709:26:::1;4719:9;4730:4;4709:26;;:9;:26::i;4984:93::-:0;3887:15;;;;;-1:-1:-1;;;;;3887:15:0;3873:10;:29;3865:51;;;;-1:-1:-1;;;3865:51:0;;;;;;;:::i;:::-;5057:12:::1;::::0;;-1:-1:-1;;5041:28:0;::::1;5057:12;::::0;;;::::1;;;5056:13;5041:28:::0;;::::1;;::::0;;4984:93::o;14108:273:1:-;14165:4;14255:13;;14245:7;:23;14202:152;;;;-1:-1:-1;;14306:26:1;;;;:17;:26;;;;;;-1:-1:-1;;;14306:43:1;:48;;14108:273::o;7365:1129::-;7432:7;7467;7569:13;;7562:4;:20;7558:869;;;7607:14;7624:23;;;:17;:23;;;;;;;-1:-1:-1;;;7713:23:1;;:28;;7709:699;;8232:113;8239:6;8249:1;8239:11;8232:113;;-1:-1:-1;;;8310:6:1;8292:25;;;;:17;:25;;;;;;8232:113;;7709:699;7584:843;7558:869;8455:31;;-1:-1:-1;;;8455:31:1;;;;;;;;;;;17774:2654;17889:27;17919;17938:7;17919:18;:27::i;:::-;17889:57;;18004:4;-1:-1:-1;;;;;17963:45:1;17979:19;-1:-1:-1;;;;;17963:45:1;;17959:86;;18017:28;;-1:-1:-1;;;18017:28:1;;;;;;;;;;;17959:86;18058:23;18084:24;;;:15;:24;;;;;;-1:-1:-1;;;;;18084:24:1;;;;18058:23;18147:27;;26869:10;18147:27;;:87;;-1:-1:-1;18191:43:1;18208:4;26869:10;12729:164;:::i;18191:43::-;18147:142;;;-1:-1:-1;;;;;;18251:38:1;;26869:10;18251:38;18147:142;18121:169;;18308:17;18303:66;;18334:35;;-1:-1:-1;;;18334:35:1;;;;;;;;;;;18303:66;18402:2;18409:1;18384:26;18380:62;;18419:23;;-1:-1:-1;;;18419:23:1;;;;;;;;;;;18380:62;18586:15;18568:39;18564:103;;18631:24;;;;:15;:24;;;;;18624:31;;-1:-1:-1;;;;;;18624:31:1;;;18564:103;-1:-1:-1;;;;;19034:24:1;;;;;;;:18;:24;;;;;;;;19032:26;;-1:-1:-1;;19032:26:1;;;19103:22;;;;;;;;19101:24;;-1:-1:-1;19101:24:1;;;19396:26;;;:17;:26;;;;;-1:-1:-1;;;19484:15:1;1703:3;19484:41;19442:84;;:128;;19396:174;;;19690:46;;:51;;19686:626;;19794:1;19784:11;;19762:19;19917:30;;;:17;:30;;;;;;:35;;19913:384;;20055:13;;20040:11;:28;20036:242;;20202:30;;;;:17;:30;;;;;:52;;;20036:242;19743:569;19686:626;20359:7;20355:2;-1:-1:-1;;;;;20340:27:1;20349:4;-1:-1:-1;;;;;20340:27:1;;;;;;;;;;;17878:2550;;;17774:2654;;;:::o;14465:104::-;14534:27;14544:2;14548:8;14534:27;;;;;;;;;;;;:9;:27::i;24251:716::-;24435:88;;-1:-1:-1;;;24435:88:1;;24414:4;;-1:-1:-1;;;;;24435:45:1;;;;;:88;;26869:10;;24502:4;;24508:7;;24517:5;;24435:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24435:88:1;;;;;;;;-1:-1:-1;;24435:88:1;;;;;;;;;;;;:::i;:::-;;;24431:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24718:6;:13;24735:1;24718:18;24714:235;;24764:40;;-1:-1:-1;;;24764:40:1;;;;;;;;;;;24714:235;24907:6;24901:13;24892:6;24888:2;24884:15;24877:38;24431:529;-1:-1:-1;;;;;;24594:64:1;-1:-1:-1;;;24594:64:1;;-1:-1:-1;24431:529:1;24251:716;;;;;;:::o;5529:113:0:-;5589:13;5622:12;5615:19;;;;;:::i;343:723:3:-;399:13;620:5;629:1;620:10;616:53;;-1:-1:-1;;647:10:3;;;;;;;;;;;;-1:-1:-1;;;647:10:3;;;;;343:723::o;616:53::-;694:5;679:12;735:78;742:9;;735:78;;768:8;;;;:::i;:::-;;-1:-1:-1;791:10:3;;-1:-1:-1;799:2:3;791:10;;:::i;:::-;;;735:78;;;823:19;855:6;845:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;845:17:3;;823:39;;873:154;880:10;;873:154;;907:11;917:1;907:11;;:::i;:::-;;-1:-1:-1;976:10:3;984:2;976:5;:10;:::i;:::-;963:24;;:2;:24;:::i;:::-;950:39;;933:6;940;933:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;933:56:3;;;;;;;;-1:-1:-1;1004:11:3;1013:2;1004:11;;:::i;:::-;;;873:154;;14956:681:1;15079:19;15085:2;15089:8;15079:5;:19::i;:::-;-1:-1:-1;;;;;15140:14:1;;;:19;15136:483;;15180:11;15194:13;15242:14;;;15275:233;15306:62;15345:1;15349:2;15353:7;;;;;;15362:5;15306:30;:62::i;:::-;15301:167;;15404:40;;-1:-1:-1;;;15404:40:1;;;;;;;;;;;15301:167;15503:3;15495:5;:11;15275:233;;15590:3;15573:13;;:20;15569:34;;15595:8;;;15569:34;15161:458;;14956:681;;;:::o;15910:1610::-;15975:20;15998:13;16044:2;16051:1;16026:26;16022:58;;16061:19;;-1:-1:-1;;;16061:19:1;;;;;;;;;;;16022:58;16095:8;16107:1;16095:13;16091:44;;16117:18;;-1:-1:-1;;;16117:18:1;;;;;;;;;;;16091:44;-1:-1:-1;;;;;16684:22:1;;;;;;:18;:22;;;;1186:2;16684:22;;;:70;;16722:31;16710:44;;16684:70;;;16997:31;;;:17;:31;;;;;17090:15;1703:3;17090:41;17048:84;;-1:-1:-1;17168:13:1;;1962:3;17153:56;17048:162;16997:213;;17256:119;17283:49;;17323:8;;;;17308:23;;;-1:-1:-1;;;;;17283:49:1;;;17300:1;;17283:49;;17300:1;;17283:49;17365:8;17356:6;:17;17256:119;;-1:-1:-1;17407:23:1;17391:13;:39;-1:-1:-1;12960:170:1:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:4;-1:-1:-1;;;;;;88:32:4;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:4;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:4;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:4:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:4;;1343:180;-1:-1:-1;1343:180:4:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:4;;1843:42;;1833:70;;1899:1;1896;1889:12;1914:254;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:4:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:4;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:4;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:4;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:346::-;5460:6;5468;5521:2;5509:9;5500:7;5496:23;5492:32;5489:52;;;5537:1;5534;5527:12;5489:52;5560:29;5579:9;5560:29;:::i;:::-;5550:39;;5639:2;5628:9;5624:18;5611:32;5683:6;5676:5;5672:18;5665:5;5662:29;5652:57;;5705:1;5702;5695:12;5744:380;5823:1;5819:12;;;;5866;;;5887:61;;5941:4;5933:6;5929:17;5919:27;;5887:61;5994:2;5986:6;5983:14;5963:18;5960:38;5957:161;;6040:10;6035:3;6031:20;6028:1;6021:31;6075:4;6072:1;6065:15;6103:4;6100:1;6093:15;5957:161;;5744:380;;;:::o;6129:332::-;6331:2;6313:21;;;6370:1;6350:18;;;6343:29;-1:-1:-1;;;6403:2:4;6388:18;;6381:39;6452:2;6437:18;;6129:332::o;6802:127::-;6863:10;6858:3;6854:20;6851:1;6844:31;6894:4;6891:1;6884:15;6918:4;6915:1;6908:15;6934:128;6974:3;7005:1;7001:6;6998:1;6995:13;6992:39;;;7011:18;;:::i;:::-;-1:-1:-1;7047:9:4;;6934:128::o;9099:470::-;9278:3;9316:6;9310:13;9332:53;9378:6;9373:3;9366:4;9358:6;9354:17;9332:53;:::i;:::-;9448:13;;9407:16;;;;9470:57;9448:13;9407:16;9504:4;9492:17;;9470:57;:::i;:::-;9543:20;;9099:470;-1:-1:-1;;;;9099:470:4:o;9574:489::-;-1:-1:-1;;;;;9843:15:4;;;9825:34;;9895:15;;9890:2;9875:18;;9868:43;9942:2;9927:18;;9920:34;;;9990:3;9985:2;9970:18;;9963:31;;;9768:4;;10011:46;;10037:19;;10029:6;10011:46;:::i;:::-;10003:54;9574:489;-1:-1:-1;;;;;;9574:489:4:o;10068:249::-;10137:6;10190:2;10178:9;10169:7;10165:23;10161:32;10158:52;;;10206:1;10203;10196:12;10158:52;10238:9;10232:16;10257:30;10281:5;10257:30;:::i;10322:135::-;10361:3;10382:17;;;10379:43;;10402:18;;:::i;:::-;-1:-1:-1;10449:1:4;10438:13;;10322:135::o;10462:127::-;10523:10;10518:3;10514:20;10511:1;10504:31;10554:4;10551:1;10544:15;10578:4;10575:1;10568:15;10594:120;10634:1;10660;10650:35;;10665:18;;:::i;:::-;-1:-1:-1;10699:9:4;;10594:120::o;10719:125::-;10759:4;10787:1;10784;10781:8;10778:34;;;10792:18;;:::i;:::-;-1:-1:-1;10829:9:4;;10719:125::o;10849:112::-;10881:1;10907;10897:35;;10912:18;;:::i;:::-;-1:-1:-1;10946:9:4;;10849:112::o;10966:127::-;11027:10;11022:3;11018:20;11015:1;11008:31;11058:4;11055:1;11048:15;11082:4;11079:1;11072:15
Swarm Source
ipfs://8be1d458d5086197f36f3ae9b6b52cbe59ff8639f190509805471404d7c819b9
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.