ERC-721
Overview
Max Total Supply
5,225 ATOID
Holders
1,582
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 ATOIDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Atoids
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity Multiple files format)
pragma solidity 0.8.15; // SPDX-License-Identifier: MIT import "./ERC721A.sol"; import "./Ownable.sol"; import "./MerkleProof.sol"; contract Atoids is ERC721A, Ownable { mapping(address => uint256) public whitelistClaimed; string public baseURI; string public baseExtension = ".json"; uint256 public whitelistCost = 0 ether; uint256 public publicCost = 0.001 ether; bool public whitelistEnabled = false; bool public paused = true; bytes32 public merkleRoot; uint256 public maxWhitelist = 5; uint256 public maxPublic = 5; uint256 public maxSupply = 5225; string public UnrevealedURI; bool public revealed = false; constructor() ERC721A("ATOIDS", "ATOID") { setBaseURI("ipfs://QmUSZdMkWVpXd1FFAe7gaTcGRgT2n4Xh84CEcqKoSdD4BZ/"); setUnrevealedUri( "ipfs://bafkreib5s4fzynpzeger6k57tfl3wei7xzjrbwesd6bbwg2tfoz5s5m4me" ); } function whitelistMint(uint256 quantity, bytes32[] calldata _merkleProof) public payable { uint256 supply = totalSupply(); require(quantity > 0, "Quantity Must Be Higher Than Zero"); require(supply + quantity <= maxSupply, "Max Supply Reached"); require(whitelistEnabled, "The whitelist sale is not enabled!"); require( whitelistClaimed[msg.sender] + quantity <= maxWhitelist, "You're not allowed to mint this Much!" ); require(msg.value >= whitelistCost * quantity, "Insufficient Funds"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid proof!" ); whitelistClaimed[msg.sender] += quantity; _safeMint(msg.sender, quantity); } function mint(uint256 quantity) external payable { uint256 supply = totalSupply(); require(!paused, "The contract is paused!"); require(quantity > 0, "Quantity Must Be Higher Than Zero"); require(supply + quantity <= maxSupply, "Max Supply Reached"); if (msg.sender != owner()) { require( quantity <= maxPublic, "You're Not Allowed To Mint more than maxMint Amount" ); require(msg.value >= publicCost * quantity, "Insufficient Funds"); } _safeMint(msg.sender, quantity); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return UnrevealedURI; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, _toString(tokenId), baseExtension ) ) : ""; } function setCost(uint256 _whitelistCost, uint256 _publicCost) public onlyOwner { whitelistCost = _whitelistCost; publicCost = _publicCost; } function setMax(uint256 _whitelist, uint256 _public) public onlyOwner { maxWhitelist = _whitelist; maxPublic = _public; } function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function setWhitelistEnabled(bool _state) public onlyOwner { whitelistEnabled = _state; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setUnrevealedUri(string memory _UnrevealedUri) public onlyOwner { UnrevealedURI = _UnrevealedUri; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function withdraw() public onlyOwner { (bool ts, ) = payable(owner()).call{value: address(this).balance}(""); require(ts); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // 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 1; } /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"UnrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistCost","type":"uint256"},{"internalType":"uint256","name":"_publicCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelist","type":"uint256"},{"internalType":"uint256","name":"_public","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_UnrevealedUri","type":"string"}],"name":"setUnrevealedUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608090815264173539b7b760d91b60a052600b90620000269082620002dd565b506000600c5566038d7ea4c68000600d55600e805461ffff1916610100179055600560108190556011556114696012556014805460ff191690553480156200006d57600080fd5b506040518060400160405280600681526020016541544f49445360d01b81525060405180604001604052806005815260200164105513d25160da1b8152508160029081620000bc9190620002dd565b506003620000cb8282620002dd565b5050600160005550620000de336200012c565b620001026040518060600160405280603681526020016200251b603691396200017e565b620001266040518060800160405280604281526020016200255160429139620001df565b620003a9565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001cd5760405162461bcd60e51b815260206004820181905260248201526000805160206200259383398151915260448201526064015b60405180910390fd5b600a620001db8282620002dd565b5050565b6008546001600160a01b031633146200022a5760405162461bcd60e51b81526020600482018190526024820152600080516020620025938339815191526044820152606401620001c4565b6013620001db8282620002dd565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200026357607f821691505b6020821081036200028457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002d857600081815260208120601f850160051c81016020861015620002b35750805b601f850160051c820191505b81811015620002d457828155600101620002bf565b5050505b505050565b81516001600160401b03811115620002f957620002f962000238565b62000311816200030a84546200024e565b846200028a565b602080601f831160018114620003495760008415620003305750858301515b600019600386901b1c1916600185901b178555620002d4565b600085815260208120601f198616915b828110156200037a5788860151825594840194600190910190840162000359565b5085821015620003995787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61216280620003b96000396000f3fe6080604052600436106102515760003560e01c80637696e08811610139578063bf0d96c3116100b6578063da3ef23f1161007a578063da3ef23f14610671578063db4bec4414610691578063e0a80853146106be578063e7b99ec7146106de578063e985e9c5146106f4578063f2fde38b1461073d57600080fd5b8063bf0d96c3146105fd578063c668286214610613578063c87b56dd14610628578063d2cab05614610648578063d5abeb011461065b57600080fd5b806390fb5fb9116100fd57806390fb5fb91461057557806395d89b4114610595578063a0712d68146105aa578063a22cb465146105bd578063b88d4fde146105dd57600080fd5b80637696e088146104eb5780637cb647591461050b5780637dc429751461052b5780638693da20146105415780638da5cb5b1461055757600080fd5b80633b91ceef116101d257806355f804b31161019657806355f804b3146104425780635c975abb146104625780636352211e146104815780636c0360eb146104a157806370a08231146104b6578063715018a6146104d657600080fd5b80633b91ceef146103b95780633ccfd60b146103d957806342842e0e146103ee578063518302271461040e57806351fb012d1461042857600080fd5b8063095ea7b311610219578063095ea7b31461031c57806316c38b3c1461033c57806318160ddd1461035c57806323b872dd146103835780632eb4a7ab146103a357600080fd5b806301ffc9a714610256578063052d9e7e1461028b57806305970523146102ad57806306fdde03146102cf578063081812fc146102e4575b600080fd5b34801561026257600080fd5b50610276610271366004611a48565b61075d565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004611a7a565b6107af565b005b3480156102b957600080fd5b506102c26107f5565b6040516102829190611aed565b3480156102db57600080fd5b506102c2610883565b3480156102f057600080fd5b506103046102ff366004611b00565b610915565b6040516001600160a01b039091168152602001610282565b34801561032857600080fd5b506102ab610337366004611b30565b610959565b34801561034857600080fd5b506102ab610357366004611a7a565b6109f9565b34801561036857600080fd5b5060015460005403600019015b604051908152602001610282565b34801561038f57600080fd5b506102ab61039e366004611b5a565b610a3d565b3480156103af57600080fd5b50610375600f5481565b3480156103c557600080fd5b506102ab6103d4366004611b96565b610bd6565b3480156103e557600080fd5b506102ab610c0b565b3480156103fa57600080fd5b506102ab610409366004611b5a565b610ca9565b34801561041a57600080fd5b506014546102769060ff1681565b34801561043457600080fd5b50600e546102769060ff1681565b34801561044e57600080fd5b506102ab61045d366004611c44565b610cc9565b34801561046e57600080fd5b50600e5461027690610100900460ff1681565b34801561048d57600080fd5b5061030461049c366004611b00565b610d03565b3480156104ad57600080fd5b506102c2610d0e565b3480156104c257600080fd5b506103756104d1366004611c8d565b610d1b565b3480156104e257600080fd5b506102ab610d6a565b3480156104f757600080fd5b506102ab610506366004611b96565b610da0565b34801561051757600080fd5b506102ab610526366004611b00565b610dd5565b34801561053757600080fd5b5061037560115481565b34801561054d57600080fd5b50610375600d5481565b34801561056357600080fd5b506008546001600160a01b0316610304565b34801561058157600080fd5b506102ab610590366004611c44565b610e04565b3480156105a157600080fd5b506102c2610e3a565b6102ab6105b8366004611b00565b610e49565b3480156105c957600080fd5b506102ab6105d8366004611ca8565b611005565b3480156105e957600080fd5b506102ab6105f8366004611cdb565b61109a565b34801561060957600080fd5b5061037560105481565b34801561061f57600080fd5b506102c26110e4565b34801561063457600080fd5b506102c2610643366004611b00565b6110f1565b6102ab610656366004611d57565b611260565b34801561066757600080fd5b5061037560125481565b34801561067d57600080fd5b506102ab61068c366004611c44565b6114fd565b34801561069d57600080fd5b506103756106ac366004611c8d565b60096020526000908152604090205481565b3480156106ca57600080fd5b506102ab6106d9366004611a7a565b611533565b3480156106ea57600080fd5b50610375600c5481565b34801561070057600080fd5b5061027661070f366004611dd6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561074957600080fd5b506102ab610758366004611c8d565b611570565b60006301ffc9a760e01b6001600160e01b03198316148061078e57506380ac58cd60e01b6001600160e01b03198316145b806107a95750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107e25760405162461bcd60e51b81526004016107d990611e00565b60405180910390fd5b600e805460ff1916911515919091179055565b6013805461080290611e35565b80601f016020809104026020016040519081016040528092919081815260200182805461082e90611e35565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b505050505081565b60606002805461089290611e35565b80601f01602080910402602001604051908101604052809291908181526020018280546108be90611e35565b801561090b5780601f106108e05761010080835404028352916020019161090b565b820191906000526020600020905b8154815290600101906020018083116108ee57829003601f168201915b5050505050905090565b600061092082611608565b61093d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061096482610d03565b9050336001600160a01b0382161461099d57610980813361070f565b61099d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610a235760405162461bcd60e51b81526004016107d990611e00565b600e80549115156101000261ff0019909216919091179055565b6000610a488261163d565b9050836001600160a01b0316816001600160a01b031614610a7b5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610ac857610aab863361070f565b610ac857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610aef57604051633a954ecd60e21b815260040160405180910390fd5b8015610afa57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610b8c57600184016000818152600460205260408120549003610b8a576000548114610b8a5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610c005760405162461bcd60e51b81526004016107d990611e00565b601091909155601155565b6008546001600160a01b03163314610c355760405162461bcd60e51b81526004016107d990611e00565b6000610c496008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c93576040519150601f19603f3d011682016040523d82523d6000602084013e610c98565b606091505b5050905080610ca657600080fd5b50565b610cc48383836040518060200160405280600081525061109a565b505050565b6008546001600160a01b03163314610cf35760405162461bcd60e51b81526004016107d990611e00565b600a610cff8282611eb5565b5050565b60006107a98261163d565b600a805461080290611e35565b60006001600160a01b038216610d44576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d945760405162461bcd60e51b81526004016107d990611e00565b610d9e60006116ac565b565b6008546001600160a01b03163314610dca5760405162461bcd60e51b81526004016107d990611e00565b600c91909155600d55565b6008546001600160a01b03163314610dff5760405162461bcd60e51b81526004016107d990611e00565b600f55565b6008546001600160a01b03163314610e2e5760405162461bcd60e51b81526004016107d990611e00565b6013610cff8282611eb5565b60606003805461089290611e35565b6000610e5e6001546000546000199190030190565b600e54909150610100900460ff1615610eb95760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016107d9565b60008211610ed95760405162461bcd60e51b81526004016107d990611f75565b601254610ee68383611fcc565b1115610f295760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b60448201526064016107d9565b6008546001600160a01b03163314610ffb57601154821115610fa95760405162461bcd60e51b815260206004820152603360248201527f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f7265206044820152721d1a185b881b585e135a5b9d08105b5bdd5b9d606a1b60648201526084016107d9565b81600d54610fb79190611fe4565b341015610ffb5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b60448201526064016107d9565b610cff33836116fe565b336001600160a01b0383160361102e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110a5848484610a3d565b6001600160a01b0383163b156110de576110c184848484611718565b6110de576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b805461080290611e35565b60606110fc82611608565b6111605760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107d9565b60145460ff161515600003611201576013805461117c90611e35565b80601f01602080910402602001604051908101604052809291908181526020018280546111a890611e35565b80156111f55780601f106111ca576101008083540402835291602001916111f5565b820191906000526020600020905b8154815290600101906020018083116111d857829003601f168201915b50505050509050919050565b600061120b611804565b9050600081511161122b5760405180602001604052806000815250611259565b8061123584611813565b600b60405160200161124993929190612003565b6040516020818303038152906040525b9392505050565b60006112756001546000546000199190030190565b9050600084116112975760405162461bcd60e51b81526004016107d990611f75565b6012546112a48583611fcc565b11156112e75760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b60448201526064016107d9565b600e5460ff166113445760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b60648201526084016107d9565b60105433600090815260096020526040902054611362908690611fcc565b11156113be5760405162461bcd60e51b815260206004820152602560248201527f596f75277265206e6f7420616c6c6f77656420746f206d696e742074686973206044820152644d7563682160d81b60648201526084016107d9565b83600c546113cc9190611fe4565b3410156114105760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b60448201526064016107d9565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061148a84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050611862565b6114c75760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b60448201526064016107d9565b33600090815260096020526040812080548792906114e6908490611fcc565b909155506114f6905033866116fe565b5050505050565b6008546001600160a01b031633146115275760405162461bcd60e51b81526004016107d990611e00565b600b610cff8282611eb5565b6008546001600160a01b0316331461155d5760405162461bcd60e51b81526004016107d990611e00565b6014805460ff1916911515919091179055565b6008546001600160a01b0316331461159a5760405162461bcd60e51b81526004016107d990611e00565b6001600160a01b0381166115ff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d9565b610ca6816116ac565b60008160011115801561161c575060005482105b80156107a9575050600090815260046020526040902054600160e01b161590565b60008180600111611693576000548110156116935760008181526004602052604081205490600160e01b82169003611691575b80600003611259575060001901600081815260046020526040902054611670565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cff828260405180602001604052806000815250611878565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061174d9033908990889088906004016120a3565b6020604051808303816000875af1925050508015611788575060408051601f3d908101601f19168201909252611785918101906120e0565b60015b6117e6573d8080156117b6576040519150601f19603f3d011682016040523d82523d6000602084013e6117bb565b606091505b5080516000036117de576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461089290611e35565b604080516080810191829052607f0190826030600a8206018353600a90045b801561185057600183039250600a81066030018353600a9004611832565b50819003601f19909101908152919050565b60008261186f85846118de565b14949350505050565b6118828383611952565b6001600160a01b0383163b15610cc4576000548281035b6118ac6000868380600101945086611718565b6118c9576040516368d2bf6b60e11b815260040160405180910390fd5b8181106118995781600054146114f657600080fd5b600081815b845181101561194a576000858281518110611900576119006120fd565b602002602001015190508083116119265760008381526020829052604090209250611937565b600081815260208490526040902092505b508061194281612113565b9150506118e3565b509392505050565b6000546001600160a01b03831661197b57604051622e076360e81b815260040160405180910390fd5b8160000361199c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106119e65760005550505050565b6001600160e01b031981168114610ca657600080fd5b600060208284031215611a5a57600080fd5b813561125981611a32565b80358015158114611a7557600080fd5b919050565b600060208284031215611a8c57600080fd5b61125982611a65565b60005b83811015611ab0578181015183820152602001611a98565b838111156110de5750506000910152565b60008151808452611ad9816020860160208601611a95565b601f01601f19169290920160200192915050565b6020815260006112596020830184611ac1565b600060208284031215611b1257600080fd5b5035919050565b80356001600160a01b0381168114611a7557600080fd5b60008060408385031215611b4357600080fd5b611b4c83611b19565b946020939093013593505050565b600080600060608486031215611b6f57600080fd5b611b7884611b19565b9250611b8660208501611b19565b9150604084013590509250925092565b60008060408385031215611ba957600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611be957611be9611bb8565b604051601f8501601f19908116603f01168101908282118183101715611c1157611c11611bb8565b81604052809350858152868686011115611c2a57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c5657600080fd5b813567ffffffffffffffff811115611c6d57600080fd5b8201601f81018413611c7e57600080fd5b6117fc84823560208401611bce565b600060208284031215611c9f57600080fd5b61125982611b19565b60008060408385031215611cbb57600080fd5b611cc483611b19565b9150611cd260208401611a65565b90509250929050565b60008060008060808587031215611cf157600080fd5b611cfa85611b19565b9350611d0860208601611b19565b925060408501359150606085013567ffffffffffffffff811115611d2b57600080fd5b8501601f81018713611d3c57600080fd5b611d4b87823560208401611bce565b91505092959194509250565b600080600060408486031215611d6c57600080fd5b83359250602084013567ffffffffffffffff80821115611d8b57600080fd5b818601915086601f830112611d9f57600080fd5b813581811115611dae57600080fd5b8760208260051b8501011115611dc357600080fd5b6020830194508093505050509250925092565b60008060408385031215611de957600080fd5b611df283611b19565b9150611cd260208401611b19565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611e4957607f821691505b602082108103611e6957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610cc457600081815260208120601f850160051c81016020861015611e965750805b601f850160051c820191505b81811015610bce57828155600101611ea2565b815167ffffffffffffffff811115611ecf57611ecf611bb8565b611ee381611edd8454611e35565b84611e6f565b602080601f831160018114611f185760008415611f005750858301515b600019600386901b1c1916600185901b178555610bce565b600085815260208120601f198616915b82811015611f4757888601518255948401946001909101908401611f28565b5085821015611f655787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526021908201527f5175616e74697479204d75737420426520486967686572205468616e205a65726040820152606f60f81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611fdf57611fdf611fb6565b500190565b6000816000190483118215151615611ffe57611ffe611fb6565b500290565b6000845160206120168285838a01611a95565b8551918401916120298184848a01611a95565b855492019160009061203a81611e35565b60018281168015612052576001811461206757612093565b60ff1984168752821515830287019450612093565b896000528560002060005b8481101561208b57815489820152908301908701612072565b505082870194505b50929a9950505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120d690830184611ac1565b9695505050505050565b6000602082840312156120f257600080fd5b815161125981611a32565b634e487b7160e01b600052603260045260246000fd5b60006001820161212557612125611fb6565b506001019056fea264697066735822122041cbb53531658a994a6666b599abfb45d9d9c133b33247e5923d77cb9923465064736f6c634300080f0033697066733a2f2f516d55535a644d6b57567058643146464165376761546347526754326e3458683834434563714b6f53644434425a2f697066733a2f2f6261666b72656962357334667a796e707a65676572366b353774666c3377656937787a6a72627765736436626277673274666f7a3573356d346d654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102515760003560e01c80637696e08811610139578063bf0d96c3116100b6578063da3ef23f1161007a578063da3ef23f14610671578063db4bec4414610691578063e0a80853146106be578063e7b99ec7146106de578063e985e9c5146106f4578063f2fde38b1461073d57600080fd5b8063bf0d96c3146105fd578063c668286214610613578063c87b56dd14610628578063d2cab05614610648578063d5abeb011461065b57600080fd5b806390fb5fb9116100fd57806390fb5fb91461057557806395d89b4114610595578063a0712d68146105aa578063a22cb465146105bd578063b88d4fde146105dd57600080fd5b80637696e088146104eb5780637cb647591461050b5780637dc429751461052b5780638693da20146105415780638da5cb5b1461055757600080fd5b80633b91ceef116101d257806355f804b31161019657806355f804b3146104425780635c975abb146104625780636352211e146104815780636c0360eb146104a157806370a08231146104b6578063715018a6146104d657600080fd5b80633b91ceef146103b95780633ccfd60b146103d957806342842e0e146103ee578063518302271461040e57806351fb012d1461042857600080fd5b8063095ea7b311610219578063095ea7b31461031c57806316c38b3c1461033c57806318160ddd1461035c57806323b872dd146103835780632eb4a7ab146103a357600080fd5b806301ffc9a714610256578063052d9e7e1461028b57806305970523146102ad57806306fdde03146102cf578063081812fc146102e4575b600080fd5b34801561026257600080fd5b50610276610271366004611a48565b61075d565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004611a7a565b6107af565b005b3480156102b957600080fd5b506102c26107f5565b6040516102829190611aed565b3480156102db57600080fd5b506102c2610883565b3480156102f057600080fd5b506103046102ff366004611b00565b610915565b6040516001600160a01b039091168152602001610282565b34801561032857600080fd5b506102ab610337366004611b30565b610959565b34801561034857600080fd5b506102ab610357366004611a7a565b6109f9565b34801561036857600080fd5b5060015460005403600019015b604051908152602001610282565b34801561038f57600080fd5b506102ab61039e366004611b5a565b610a3d565b3480156103af57600080fd5b50610375600f5481565b3480156103c557600080fd5b506102ab6103d4366004611b96565b610bd6565b3480156103e557600080fd5b506102ab610c0b565b3480156103fa57600080fd5b506102ab610409366004611b5a565b610ca9565b34801561041a57600080fd5b506014546102769060ff1681565b34801561043457600080fd5b50600e546102769060ff1681565b34801561044e57600080fd5b506102ab61045d366004611c44565b610cc9565b34801561046e57600080fd5b50600e5461027690610100900460ff1681565b34801561048d57600080fd5b5061030461049c366004611b00565b610d03565b3480156104ad57600080fd5b506102c2610d0e565b3480156104c257600080fd5b506103756104d1366004611c8d565b610d1b565b3480156104e257600080fd5b506102ab610d6a565b3480156104f757600080fd5b506102ab610506366004611b96565b610da0565b34801561051757600080fd5b506102ab610526366004611b00565b610dd5565b34801561053757600080fd5b5061037560115481565b34801561054d57600080fd5b50610375600d5481565b34801561056357600080fd5b506008546001600160a01b0316610304565b34801561058157600080fd5b506102ab610590366004611c44565b610e04565b3480156105a157600080fd5b506102c2610e3a565b6102ab6105b8366004611b00565b610e49565b3480156105c957600080fd5b506102ab6105d8366004611ca8565b611005565b3480156105e957600080fd5b506102ab6105f8366004611cdb565b61109a565b34801561060957600080fd5b5061037560105481565b34801561061f57600080fd5b506102c26110e4565b34801561063457600080fd5b506102c2610643366004611b00565b6110f1565b6102ab610656366004611d57565b611260565b34801561066757600080fd5b5061037560125481565b34801561067d57600080fd5b506102ab61068c366004611c44565b6114fd565b34801561069d57600080fd5b506103756106ac366004611c8d565b60096020526000908152604090205481565b3480156106ca57600080fd5b506102ab6106d9366004611a7a565b611533565b3480156106ea57600080fd5b50610375600c5481565b34801561070057600080fd5b5061027661070f366004611dd6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561074957600080fd5b506102ab610758366004611c8d565b611570565b60006301ffc9a760e01b6001600160e01b03198316148061078e57506380ac58cd60e01b6001600160e01b03198316145b806107a95750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107e25760405162461bcd60e51b81526004016107d990611e00565b60405180910390fd5b600e805460ff1916911515919091179055565b6013805461080290611e35565b80601f016020809104026020016040519081016040528092919081815260200182805461082e90611e35565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b505050505081565b60606002805461089290611e35565b80601f01602080910402602001604051908101604052809291908181526020018280546108be90611e35565b801561090b5780601f106108e05761010080835404028352916020019161090b565b820191906000526020600020905b8154815290600101906020018083116108ee57829003601f168201915b5050505050905090565b600061092082611608565b61093d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061096482610d03565b9050336001600160a01b0382161461099d57610980813361070f565b61099d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610a235760405162461bcd60e51b81526004016107d990611e00565b600e80549115156101000261ff0019909216919091179055565b6000610a488261163d565b9050836001600160a01b0316816001600160a01b031614610a7b5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610ac857610aab863361070f565b610ac857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610aef57604051633a954ecd60e21b815260040160405180910390fd5b8015610afa57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610b8c57600184016000818152600460205260408120549003610b8a576000548114610b8a5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610c005760405162461bcd60e51b81526004016107d990611e00565b601091909155601155565b6008546001600160a01b03163314610c355760405162461bcd60e51b81526004016107d990611e00565b6000610c496008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c93576040519150601f19603f3d011682016040523d82523d6000602084013e610c98565b606091505b5050905080610ca657600080fd5b50565b610cc48383836040518060200160405280600081525061109a565b505050565b6008546001600160a01b03163314610cf35760405162461bcd60e51b81526004016107d990611e00565b600a610cff8282611eb5565b5050565b60006107a98261163d565b600a805461080290611e35565b60006001600160a01b038216610d44576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d945760405162461bcd60e51b81526004016107d990611e00565b610d9e60006116ac565b565b6008546001600160a01b03163314610dca5760405162461bcd60e51b81526004016107d990611e00565b600c91909155600d55565b6008546001600160a01b03163314610dff5760405162461bcd60e51b81526004016107d990611e00565b600f55565b6008546001600160a01b03163314610e2e5760405162461bcd60e51b81526004016107d990611e00565b6013610cff8282611eb5565b60606003805461089290611e35565b6000610e5e6001546000546000199190030190565b600e54909150610100900460ff1615610eb95760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016107d9565b60008211610ed95760405162461bcd60e51b81526004016107d990611f75565b601254610ee68383611fcc565b1115610f295760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b60448201526064016107d9565b6008546001600160a01b03163314610ffb57601154821115610fa95760405162461bcd60e51b815260206004820152603360248201527f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f7265206044820152721d1a185b881b585e135a5b9d08105b5bdd5b9d606a1b60648201526084016107d9565b81600d54610fb79190611fe4565b341015610ffb5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b60448201526064016107d9565b610cff33836116fe565b336001600160a01b0383160361102e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110a5848484610a3d565b6001600160a01b0383163b156110de576110c184848484611718565b6110de576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b805461080290611e35565b60606110fc82611608565b6111605760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107d9565b60145460ff161515600003611201576013805461117c90611e35565b80601f01602080910402602001604051908101604052809291908181526020018280546111a890611e35565b80156111f55780601f106111ca576101008083540402835291602001916111f5565b820191906000526020600020905b8154815290600101906020018083116111d857829003601f168201915b50505050509050919050565b600061120b611804565b9050600081511161122b5760405180602001604052806000815250611259565b8061123584611813565b600b60405160200161124993929190612003565b6040516020818303038152906040525b9392505050565b60006112756001546000546000199190030190565b9050600084116112975760405162461bcd60e51b81526004016107d990611f75565b6012546112a48583611fcc565b11156112e75760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b60448201526064016107d9565b600e5460ff166113445760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b60648201526084016107d9565b60105433600090815260096020526040902054611362908690611fcc565b11156113be5760405162461bcd60e51b815260206004820152602560248201527f596f75277265206e6f7420616c6c6f77656420746f206d696e742074686973206044820152644d7563682160d81b60648201526084016107d9565b83600c546113cc9190611fe4565b3410156114105760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b60448201526064016107d9565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061148a84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050611862565b6114c75760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b60448201526064016107d9565b33600090815260096020526040812080548792906114e6908490611fcc565b909155506114f6905033866116fe565b5050505050565b6008546001600160a01b031633146115275760405162461bcd60e51b81526004016107d990611e00565b600b610cff8282611eb5565b6008546001600160a01b0316331461155d5760405162461bcd60e51b81526004016107d990611e00565b6014805460ff1916911515919091179055565b6008546001600160a01b0316331461159a5760405162461bcd60e51b81526004016107d990611e00565b6001600160a01b0381166115ff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d9565b610ca6816116ac565b60008160011115801561161c575060005482105b80156107a9575050600090815260046020526040902054600160e01b161590565b60008180600111611693576000548110156116935760008181526004602052604081205490600160e01b82169003611691575b80600003611259575060001901600081815260046020526040902054611670565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cff828260405180602001604052806000815250611878565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061174d9033908990889088906004016120a3565b6020604051808303816000875af1925050508015611788575060408051601f3d908101601f19168201909252611785918101906120e0565b60015b6117e6573d8080156117b6576040519150601f19603f3d011682016040523d82523d6000602084013e6117bb565b606091505b5080516000036117de576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461089290611e35565b604080516080810191829052607f0190826030600a8206018353600a90045b801561185057600183039250600a81066030018353600a9004611832565b50819003601f19909101908152919050565b60008261186f85846118de565b14949350505050565b6118828383611952565b6001600160a01b0383163b15610cc4576000548281035b6118ac6000868380600101945086611718565b6118c9576040516368d2bf6b60e11b815260040160405180910390fd5b8181106118995781600054146114f657600080fd5b600081815b845181101561194a576000858281518110611900576119006120fd565b602002602001015190508083116119265760008381526020829052604090209250611937565b600081815260208490526040902092505b508061194281612113565b9150506118e3565b509392505050565b6000546001600160a01b03831661197b57604051622e076360e81b815260040160405180910390fd5b8160000361199c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106119e65760005550505050565b6001600160e01b031981168114610ca657600080fd5b600060208284031215611a5a57600080fd5b813561125981611a32565b80358015158114611a7557600080fd5b919050565b600060208284031215611a8c57600080fd5b61125982611a65565b60005b83811015611ab0578181015183820152602001611a98565b838111156110de5750506000910152565b60008151808452611ad9816020860160208601611a95565b601f01601f19169290920160200192915050565b6020815260006112596020830184611ac1565b600060208284031215611b1257600080fd5b5035919050565b80356001600160a01b0381168114611a7557600080fd5b60008060408385031215611b4357600080fd5b611b4c83611b19565b946020939093013593505050565b600080600060608486031215611b6f57600080fd5b611b7884611b19565b9250611b8660208501611b19565b9150604084013590509250925092565b60008060408385031215611ba957600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611be957611be9611bb8565b604051601f8501601f19908116603f01168101908282118183101715611c1157611c11611bb8565b81604052809350858152868686011115611c2a57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c5657600080fd5b813567ffffffffffffffff811115611c6d57600080fd5b8201601f81018413611c7e57600080fd5b6117fc84823560208401611bce565b600060208284031215611c9f57600080fd5b61125982611b19565b60008060408385031215611cbb57600080fd5b611cc483611b19565b9150611cd260208401611a65565b90509250929050565b60008060008060808587031215611cf157600080fd5b611cfa85611b19565b9350611d0860208601611b19565b925060408501359150606085013567ffffffffffffffff811115611d2b57600080fd5b8501601f81018713611d3c57600080fd5b611d4b87823560208401611bce565b91505092959194509250565b600080600060408486031215611d6c57600080fd5b83359250602084013567ffffffffffffffff80821115611d8b57600080fd5b818601915086601f830112611d9f57600080fd5b813581811115611dae57600080fd5b8760208260051b8501011115611dc357600080fd5b6020830194508093505050509250925092565b60008060408385031215611de957600080fd5b611df283611b19565b9150611cd260208401611b19565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611e4957607f821691505b602082108103611e6957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610cc457600081815260208120601f850160051c81016020861015611e965750805b601f850160051c820191505b81811015610bce57828155600101611ea2565b815167ffffffffffffffff811115611ecf57611ecf611bb8565b611ee381611edd8454611e35565b84611e6f565b602080601f831160018114611f185760008415611f005750858301515b600019600386901b1c1916600185901b178555610bce565b600085815260208120601f198616915b82811015611f4757888601518255948401946001909101908401611f28565b5085821015611f655787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526021908201527f5175616e74697479204d75737420426520486967686572205468616e205a65726040820152606f60f81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611fdf57611fdf611fb6565b500190565b6000816000190483118215151615611ffe57611ffe611fb6565b500290565b6000845160206120168285838a01611a95565b8551918401916120298184848a01611a95565b855492019160009061203a81611e35565b60018281168015612052576001811461206757612093565b60ff1984168752821515830287019450612093565b896000528560002060005b8481101561208b57815489820152908301908701612072565b505082870194505b50929a9950505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120d690830184611ac1565b9695505050505050565b6000602082840312156120f257600080fd5b815161125981611a32565b634e487b7160e01b600052603260045260246000fd5b60006001820161212557612125611fb6565b506001019056fea264697066735822122041cbb53531658a994a6666b599abfb45d9d9c133b33247e5923d77cb9923465064736f6c634300080f0033
Deployed Bytecode Sourcemap
133:4363:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5653:607:1;;;;;;;;;;-1:-1:-1;5653:607:1;;;;;:::i;:::-;;:::i;:::-;;;565:14:6;;558:22;540:41;;528:2;513:18;5653:607:1;;;;;;;;3679:101:4;;;;;;;;;;-1:-1:-1;3679:101:4;;;;;:::i;:::-;;:::i;:::-;;604:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11161:98:1:-;;;;;;;;;;;;;:::i;13048:200::-;;;;;;;;;;-1:-1:-1;13048:200:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:6;;;2024:51;;2012:2;1997:18;13048:200:1;1878:203:6;12611:376:1;;;;;;;;;;-1:-1:-1;12611:376:1;;;;;:::i;:::-;;:::i;3786:81:4:-;;;;;;;;;;-1:-1:-1;3786:81:4;;;;;:::i;:::-;;:::i;4736:309:1:-;;;;;;;;;;-1:-1:-1;4358:1:1;4998:12;4789:7;4982:13;:28;-1:-1:-1;;4982:46:1;4736:309;;;2669:25:6;;;2657:2;2642:18;4736:309:1;2523:177:6;22055:2739:1;;;;;;;;;;-1:-1:-1;22055:2739:1;;;;;:::i;:::-;;:::i;465:25:4:-;;;;;;;;;;;;;;;;3424:141;;;;;;;;;;-1:-1:-1;3424:141:4;;;;;:::i;:::-;;:::i;4350:144::-;;;;;;;;;;;;;:::i;13912:179:1:-;;;;;;;;;;-1:-1:-1;13912:179:1;;;;;:::i;:::-;;:::i;637:28:4:-;;;;;;;;;;-1:-1:-1;637:28:4;;;;;;;;392:36;;;;;;;;;;-1:-1:-1;392:36:4;;;;;;;;4090:102;;;;;;;;;;-1:-1:-1;4090:102:4;;;;;:::i;:::-;;:::i;434:25::-;;;;;;;;;;-1:-1:-1;434:25:4;;;;;;;;;;;10957:142:1;;;;;;;;;;-1:-1:-1;10957:142:1;;;;;:::i;:::-;;:::i;233:21:4:-;;;;;;;;;;;;;:::i;6319:221:1:-;;;;;;;;;;-1:-1:-1;6319:221:1;;;;;:::i;:::-;;:::i;1628:101:5:-;;;;;;;;;;;;;:::i;3238:180:4:-;;;;;;;;;;-1:-1:-1;3238:180:4;;;;;:::i;:::-;;:::i;3571:102::-;;;;;;;;;;-1:-1:-1;3571:102:4;;;;;:::i;:::-;;:::i;533:28::-;;;;;;;;;;;;;;;;347:39;;;;;;;;;;;;;;;;996:85:5;;;;;;;;;;-1:-1:-1;1068:6:5;;-1:-1:-1;;;;;1068:6:5;996:85;;3964:120:4;;;;;;;;;;-1:-1:-1;3964:120:4;;;;;:::i;:::-;;:::i;11323:102:1:-;;;;;;;;;;;;;:::i;1800:601:4:-;;;;;;:::i;:::-;;:::i;13315:303:1:-;;;;;;;;;;-1:-1:-1;13315:303:1;;;;;:::i;:::-;;:::i;14157:388::-;;;;;;;;;;-1:-1:-1;14157:388:1;;;;;:::i;:::-;;:::i;496:31:4:-;;;;;;;;;;;;;;;;260:37;;;;;;;;;;;;;:::i;2535:697::-;;;;;;;;;;-1:-1:-1;2535:697:4;;;;;:::i;:::-;;:::i;922:872::-;;;;;;:::i;:::-;;:::i;567:31::-;;;;;;;;;;;;;;;;4198:146;;;;;;;;;;-1:-1:-1;4198:146:4;;;;;:::i;:::-;;:::i;175:51::-;;;;;;;;;;-1:-1:-1;175:51:4;;;;;:::i;:::-;;;;;;;;;;;;;;3873:85;;;;;;;;;;-1:-1:-1;3873:85:4;;;;;:::i;:::-;;:::i;303:38::-;;;;;;;;;;;;;;;;13684:162:1;;;;;;;;;;-1:-1:-1;13684:162:1;;;;;:::i;:::-;-1:-1:-1;;;;;13804:25:1;;;13781:4;13804:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;13684:162;1878:232:5;;;;;;;;;;-1:-1:-1;1878:232:5;;;;;:::i;:::-;;:::i;5653:607:1:-;5738:4;-1:-1:-1;;;;;;;;;6033:25:1;;;;:101;;-1:-1:-1;;;;;;;;;;6109:25:1;;;6033:101;:177;;;-1:-1:-1;;;;;;;;;;6185:25:1;;;6033:177;6014:196;5653:607;-1:-1:-1;;5653:607:1:o;3679:101:4:-;1068:6:5;;-1:-1:-1;;;;;1068:6:5;665:10:0;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;;;;;;;;;3748:16:4::1;:25:::0;;-1:-1:-1;;3748:25:4::1;::::0;::::1;;::::0;;;::::1;::::0;;3679:101::o;604:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11161:98:1:-;11215:13;11247:5;11240:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11161:98;:::o;13048:200::-;13116:7;13140:16;13148:7;13140;:16::i;:::-;13135:64;;13165:34;;-1:-1:-1;;;13165:34:1;;;;;;;;;;;13135:64;-1:-1:-1;13217:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;13217:24:1;;13048:200::o;12611:376::-;12683:13;12699:16;12707:7;12699;:16::i;:::-;12683:32;-1:-1:-1;665:10:0;-1:-1:-1;;;;;12730:28:1;;;12726:172;;12777:44;12794:5;665:10:0;13684:162:1;:::i;12777:44::-;12772:126;;12848:35;;-1:-1:-1;;;12848:35:1;;;;;;;;;;;12772:126;12908:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12908:29:1;-1:-1:-1;;;;;12908:29:1;;;;;;;;;12952:28;;12908:24;;12952:28;;;;;;;12673:314;12611:376;;:::o;3786:81:4:-;1068:6:5;;-1:-1:-1;;;;;1068:6:5;665:10:0;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;3845:6:4::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;3845:15:4;;::::1;::::0;;;::::1;::::0;;3786:81::o;22055:2739:1:-;22184:27;22214;22233:7;22214:18;:27::i;:::-;22184:57;;22297:4;-1:-1:-1;;;;;22256:45:1;22272:19;-1:-1:-1;;;;;22256:45:1;;22252:86;;22310:28;;-1:-1:-1;;;22310:28:1;;;;;;;;;;;22252:86;22350:27;20821:21;;;20652:15;20862:4;20855:36;20943:4;20927:21;;21031:26;;665:10:0;21766:30:1;;;-1:-1:-1;;;;;21468:26:1;;21745:19;;;21742:55;22526:173;;22612:43;22629:4;665:10:0;13684:162:1;:::i;22612:43::-;22607:92;;22664:35;;-1:-1:-1;;;22664:35:1;;;;;;;;;;;22607:92;-1:-1:-1;;;;;22714:16:1;;22710:52;;22739:23;;-1:-1:-1;;;22739:23:1;;;;;;;;;;;22710:52;22905:15;22902:157;;;23043:1;23022:19;23015:30;22902:157;-1:-1:-1;;;;;23429:24:1;;;;;;;:18;:24;;;;;;23427:26;;-1:-1:-1;;23427:26:1;;;23497:22;;;;;;;;;23495:24;;-1:-1:-1;23495:24:1;;;10863:11;10839:22;10835:40;10822:62;-1:-1:-1;;;10822:62:1;23783:26;;;;:17;:26;;;;;:171;;;;-1:-1:-1;;;24071:46:1;;:51;;24067:616;;24174:1;24164:11;;24142:19;24295:30;;;:17;:30;;;;;;:35;;24291:378;;24431:13;;24416:11;:28;24412:239;;24576:30;;;;:17;:30;;;;;:52;;;24412:239;24124:559;24067:616;24727:7;24723:2;-1:-1:-1;;;;;24708:27:1;24717:4;-1:-1:-1;;;;;24708:27:1;;;;;;;;;;;24745:42;22174:2620;;;22055:2739;;;:::o;3424:141:4:-;1068:6:5;;-1:-1:-1;;;;;1068:6:5;665:10:0;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;3504:12:4::1;:25:::0;;;;3539:9:::1;:19:::0;3424:141::o;4350:144::-;1068:6:5;;-1:-1:-1;;;;;1068:6:5;665:10:0;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;4398:7:4::1;4419;1068:6:5::0;;-1:-1:-1;;;;;1068:6:5;;996:85;4419:7:4::1;-1:-1:-1::0;;;;;4411:21:4::1;4440;4411:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4397:69;;;4484:2;4476:11;;;::::0;::::1;;4387:107;4350:144::o:0;13912:179:1:-;14045:39;14062:4;14068:2;14072:7;14045:39;;;;;;;;;;;;:16;:39::i;:::-;13912:179;;;:::o;4090:102:4:-;1068:6:5;;-1:-1:-1;;;;;1068:6:5;665:10:0;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;4164:7:4::1;:21;4174:11:::0;4164:7;:21:::1;:::i;:::-;;4090:102:::0;:::o;10957:142:1:-;11021:7;11063:27;11082:7;11063:18;:27::i;233:21:4:-;;;;;;;:::i;6319:221:1:-;6383:7;-1:-1:-1;;;;;6406:19:1;;6402:60;;6434:28;;-1:-1:-1;;;6434:28:1;;;;;;;;;;;6402:60;-1:-1:-1;;;;;;6479:25:1;;;;;:18;:25;;;;;;1022:13;6479:54;;6319:221::o;1628:101:5:-;1068:6;;-1:-1:-1;;;;;1068:6:5;665:10:0;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;1692:30:::1;1719:1;1692:18;:30::i;:::-;1628:101::o:0;3238:180:4:-;1068:6:5;;-1:-1:-1;;;;;1068:6:5;665:10:0;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;3347:13:4::1;:30:::0;;;;3387:10:::1;:24:::0;3238:180::o;3571:102::-;1068:6:5;;-1:-1:-1;;;;;1068:6:5;665:10:0;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;3642:10:4::1;:24:::0;3571:102::o;3964:120::-;1068:6:5;;-1:-1:-1;;;;;1068:6:5;665:10:0;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;4047:13:4::1;:30;4063:14:::0;4047:13;:30:::1;:::i;11323:102:1:-:0;11379:13;11411:7;11404:14;;;;;:::i;1800:601:4:-;1859:14;1876:13;4358:1:1;4998:12;4789:7;4982:13;-1:-1:-1;;4982:28:1;;;:46;;4736:309;1876:13:4;1908:6;;1859:30;;-1:-1:-1;1908:6:4;;;;;1907:7;1899:43;;;;-1:-1:-1;;;1899:43:4;;10320:2:6;1899:43:4;;;10302:21:6;10359:2;10339:18;;;10332:30;10398:25;10378:18;;;10371:53;10441:18;;1899:43:4;10118:347:6;1899:43:4;1971:1;1960:8;:12;1952:58;;;;-1:-1:-1;;;1952:58:4;;;;;;;:::i;:::-;2049:9;;2028:17;2037:8;2028:6;:17;:::i;:::-;:30;;2020:61;;;;-1:-1:-1;;;2020:61:4;;11339:2:6;2020:61:4;;;11321:21:6;11378:2;11358:18;;;11351:30;-1:-1:-1;;;11397:18:6;;;11390:48;11455:18;;2020:61:4;11137:342:6;2020:61:4;1068:6:5;;-1:-1:-1;;;;;1068:6:5;2096:10:4;:21;2092:262;;2170:9;;2158:8;:21;;2133:131;;;;-1:-1:-1;;;2133:131:4;;11686:2:6;2133:131:4;;;11668:21:6;11725:2;11705:18;;;11698:30;11764:34;11744:18;;;11737:62;-1:-1:-1;;;11815:18:6;;;11808:49;11874:19;;2133:131:4;11484:415:6;2133:131:4;2312:8;2299:10;;:21;;;;:::i;:::-;2286:9;:34;;2278:65;;;;-1:-1:-1;;;2278:65:4;;12279:2:6;2278:65:4;;;12261:21:6;12318:2;12298:18;;;12291:30;-1:-1:-1;;;12337:18:6;;;12330:48;12395:18;;2278:65:4;12077:342:6;2278:65:4;2363:31;2373:10;2385:8;2363:9;:31::i;13315:303:1:-;665:10:0;-1:-1:-1;;;;;13413:31:1;;;13409:61;;13453:17;;-1:-1:-1;;;13453:17:1;;;;;;;;;;;13409:61;665:10:0;13481:39:1;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;13481:49:1;;;;;;;;;;;;:60;;-1:-1:-1;;13481:60:1;;;;;;;;;;13556:55;;540:41:6;;;13481:49:1;;665:10:0;13556:55:1;;513:18:6;13556:55:1;;;;;;;13315:303;;:::o;14157:388::-;14318:31;14331:4;14337:2;14341:7;14318:12;:31::i;:::-;-1:-1:-1;;;;;14363:14:1;;;:19;14359:180;;14401:56;14432:4;14438:2;14442:7;14451:5;14401:30;:56::i;:::-;14396:143;;14484:40;;-1:-1:-1;;;14484:40:1;;;;;;;;;;;14396:143;14157:388;;;;:::o;260:37:4:-;;;;;;;:::i;2535:697::-;2648:13;2698:16;2706:7;2698;:16::i;:::-;2677:110;;;;-1:-1:-1;;;2677:110:4;;12626:2:6;2677:110:4;;;12608:21:6;12665:2;12645:18;;;12638:30;12704:34;12684:18;;;12677:62;-1:-1:-1;;;12755:18:6;;;12748:45;12810:19;;2677:110:4;12424:411:6;2677:110:4;2802:8;;;;:17;;:8;:17;2798:68;;2842:13;2835:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2535:697;;;:::o;2798:68::-;2876:28;2907:10;:8;:10::i;:::-;2876:41;;2977:1;2952:14;2946:28;:32;:279;;;;;;;;;;;;;;;;;3067:14;3107:18;3117:7;3107:9;:18::i;:::-;3151:13;3025:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2946:279;2927:298;2535:697;-1:-1:-1;;;2535:697:4:o;922:872::-;1041:14;1058:13;4358:1:1;4998:12;4789:7;4982:13;-1:-1:-1;;4982:28:1;;;:46;;4736:309;1058:13:4;1041:30;;1100:1;1089:8;:12;1081:58;;;;-1:-1:-1;;;1081:58:4;;;;;;;:::i;:::-;1178:9;;1157:17;1166:8;1157:6;:17;:::i;:::-;:30;;1149:61;;;;-1:-1:-1;;;1149:61:4;;11339:2:6;1149:61:4;;;11321:21:6;11378:2;11358:18;;;11351:30;-1:-1:-1;;;11397:18:6;;;11390:48;11455:18;;1149:61:4;11137:342:6;1149:61:4;1228:16;;;;1220:63;;;;-1:-1:-1;;;1220:63:4;;14277:2:6;1220:63:4;;;14259:21:6;14316:2;14296:18;;;14289:30;14355:34;14335:18;;;14328:62;-1:-1:-1;;;14406:18:6;;;14399:32;14448:19;;1220:63:4;14075:398:6;1220:63:4;1357:12;;1331:10;1314:28;;;;:16;:28;;;;;;:39;;1345:8;;1314:39;:::i;:::-;:55;;1293:139;;;;-1:-1:-1;;;1293:139:4;;14680:2:6;1293:139:4;;;14662:21:6;14719:2;14699:18;;;14692:30;14758:34;14738:18;;;14731:62;-1:-1:-1;;;14809:18:6;;;14802:35;14854:19;;1293:139:4;14478:401:6;1293:139:4;1479:8;1463:13;;:24;;;;:::i;:::-;1450:9;:37;;1442:68;;;;-1:-1:-1;;;1442:68:4;;12279:2:6;1442:68:4;;;12261:21:6;12318:2;12298:18;;;12291:30;-1:-1:-1;;;12337:18:6;;;12330:48;12395:18;;1442:68:4;12077:342:6;1442:68:4;1545:28;;-1:-1:-1;;1562:10:4;15033:2:6;15029:15;15025:53;1545:28:4;;;15013:66:6;1520:12:4;;15095::6;;1545:28:4;;;;;;;;;;;;1535:39;;;;;;1520:54;;1605:50;1624:12;;1605:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1638:10:4;;;-1:-1:-1;1650:4:4;;-1:-1:-1;1605:18:4;:50::i;:::-;1584:111;;;;-1:-1:-1;;;1584:111:4;;15320:2:6;1584:111:4;;;15302:21:6;15359:2;15339:18;;;15332:30;-1:-1:-1;;;15378:18:6;;;15371:44;15432:18;;1584:111:4;15118:338:6;1584:111:4;1723:10;1706:28;;;;:16;:28;;;;;:40;;1738:8;;1706:28;:40;;1738:8;;1706:40;:::i;:::-;;;;-1:-1:-1;1756:31:4;;-1:-1:-1;1766:10:4;1778:8;1756:9;:31::i;:::-;1031:763;;922:872;;;:::o;4198:146::-;1068:6:5;;-1:-1:-1;;;;;1068:6:5;665:10:0;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;4304:13:4::1;:33;4320:17:::0;4304:13;:33:::1;:::i;3873:85::-:0;1068:6:5;;-1:-1:-1;;;;;1068:6:5;665:10:0;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;3934:8:4::1;:17:::0;;-1:-1:-1;;3934:17:4::1;::::0;::::1;;::::0;;;::::1;::::0;;3873:85::o;1878:232:5:-;1068:6;;-1:-1:-1;;;;;1068:6:5;665:10:0;1208:23:5;1200:68;;;;-1:-1:-1;;;1200:68:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;1979:22:5;::::1;1958:107;;;::::0;-1:-1:-1;;;1958:107:5;;15663:2:6;1958:107:5::1;::::0;::::1;15645:21:6::0;15702:2;15682:18;;;15675:30;15741:34;15721:18;;;15714:62;-1:-1:-1;;;15792:18:6;;;15785:36;15838:19;;1958:107:5::1;15461:402:6::0;1958:107:5::1;2075:28;2094:8;2075:18;:28::i;14791:268:1:-:0;14848:4;14902:7;4358:1;14883:26;;:65;;;;;14935:13;;14925:7;:23;14883:65;:150;;;;-1:-1:-1;;14985:26:1;;;;:17;:26;;;;;;-1:-1:-1;;;14985:43:1;:48;;14791:268::o;7949:1105::-;8016:7;8050;;4358:1;8096:23;8092:898;;8148:13;;8141:4;:20;8137:853;;;8185:14;8202:23;;;:17;:23;;;;;;;-1:-1:-1;;;8289:23:1;;:28;;8285:687;;8800:111;8807:6;8817:1;8807:11;8800:111;;-1:-1:-1;;;8877:6:1;8859:25;;;;:17;:25;;;;;;8800:111;;8285:687;8163:827;8137:853;9016:31;;-1:-1:-1;;;9016:31:1;;;;;;;;;;;2264:187:5;2356:6;;;-1:-1:-1;;;;;2372:17:5;;;-1:-1:-1;;;;;;2372:17:5;;;;;;;2404:40;;2356:6;;;2372:17;2356:6;;2404:40;;2337:16;;2404:40;2327:124;2264:187;:::o;15138:102:1:-;15206:27;15216:2;15220:8;15206:27;;;;;;;;;;;;:9;:27::i;28649:697::-;28827:88;;-1:-1:-1;;;28827:88:1;;28807:4;;-1:-1:-1;;;;;28827:45:1;;;;;:88;;665:10:0;;28894:4:1;;28900:7;;28909:5;;28827:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28827:88:1;;;;;;;;-1:-1:-1;;28827:88:1;;;;;;;;;;;;:::i;:::-;;;28823:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29105:6;:13;29122:1;29105:18;29101:229;;29150:40;;-1:-1:-1;;;29150:40:1;;;;;;;;;;;29101:229;29290:6;29284:13;29275:6;29271:2;29267:15;29260:38;28823:517;-1:-1:-1;;;;;;28983:64:1;-1:-1:-1;;;28983:64:1;;-1:-1:-1;28823:517:1;28649:697;;;;;;:::o;2423:106:4:-;2483:13;2515:7;2508:14;;;;;:::i;33078:1920:1:-;33541:4;33535:11;;33548:3;33531:21;;33624:17;;;;34307:11;;;34188:5;34437:2;34451;34441:13;;34433:22;34307:11;34420:36;34491:2;34481:13;;34082:682;34509:4;34082:682;;;34695:1;34690:3;34686:11;34679:18;;34745:2;34739:4;34735:13;34731:2;34727:22;34722:3;34714:36;34602:2;34592:13;;34082:682;;;-1:-1:-1;34792:13:1;;;-1:-1:-1;;34905:12:1;;;34963:19;;;34905:12;33078:1920;-1:-1:-1;33078:1920:1:o;1069:184:3:-;1190:4;1242;1213:25;1226:5;1233:4;1213:12;:25::i;:::-;:33;;1069:184;-1:-1:-1;;;;1069:184:3:o;15641:661:1:-;15759:19;15765:2;15769:8;15759:5;:19::i;:::-;-1:-1:-1;;;;;15817:14:1;;;:19;15813:473;;15856:11;15870:13;15917:14;;;15949:229;15979:62;16018:1;16022:2;16026:7;;;;;;16035:5;15979:30;:62::i;:::-;15974:165;;16076:40;;-1:-1:-1;;;16076:40:1;;;;;;;;;;;15974:165;16173:3;16165:5;:11;15949:229;;16258:3;16241:13;;:20;16237:34;;16263:8;;;1604:662:3;1687:7;1729:4;1687:7;1743:488;1767:5;:12;1763:1;:16;1743:488;;;1800:20;1823:5;1829:1;1823:8;;;;;;;;:::i;:::-;;;;;;;1800:31;;1865:12;1849;:28;1845:376;;2340:13;2388:15;;;2423:4;2416:15;;;2469:4;2453:21;;1975:57;;1845:376;;;2340:13;2388:15;;;2423:4;2416:15;;;2469:4;2453:21;;2149:57;;1845:376;-1:-1:-1;1781:3:3;;;;:::i;:::-;;;;1743:488;;;-1:-1:-1;2247:12:3;1604:662;-1:-1:-1;;;1604:662:3:o;16563:1492:1:-;16627:20;16650:13;-1:-1:-1;;;;;16677:16:1;;16673:48;;16702:19;;-1:-1:-1;;;16702:19:1;;;;;;;;;;;16673:48;16735:8;16747:1;16735:13;16731:44;;16757:18;;-1:-1:-1;;;16757:18:1;;;;;;;;;;;16731:44;-1:-1:-1;;;;;17250:22:1;;;;;;:18;:22;;1156:2;17250:22;;:70;;17288:31;17276:44;;17250:70;;;10863:11;10839:22;10835:40;-1:-1:-1;12522:15:1;;12497:23;12493:45;10832:51;10822:62;17556:31;;;;:17;:31;;;;;:170;17574:12;17799:23;;;17836:99;17862:35;;17887:9;;;;;-1:-1:-1;;;;;17862:35:1;;;17879:1;;17862:35;;17879:1;;17862:35;17930:3;17920:7;:13;17836:99;;17949:13;:19;-1:-1:-1;13912:179:1;;;:::o;14:131:6:-;-1:-1:-1;;;;;;88:32:6;;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:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:6;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:6;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:6:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:6;;1693:180;-1:-1:-1;1693:180:6:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:6;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:6:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3220:248::-;3288:6;3296;3349:2;3337:9;3328:7;3324:23;3320:32;3317:52;;;3365:1;3362;3355:12;3317:52;-1:-1:-1;;3388:23:6;;;3458:2;3443:18;;;3430:32;;-1:-1:-1;3220:248:6:o;3473:127::-;3534:10;3529:3;3525:20;3522:1;3515:31;3565:4;3562:1;3555:15;3589:4;3586:1;3579:15;3605:632;3670:5;3700:18;3741:2;3733:6;3730:14;3727:40;;;3747:18;;:::i;:::-;3822:2;3816:9;3790:2;3876:15;;-1:-1:-1;;3872:24:6;;;3898:2;3868:33;3864:42;3852:55;;;3922:18;;;3942:22;;;3919:46;3916:72;;;3968:18;;:::i;:::-;4008:10;4004:2;3997:22;4037:6;4028:15;;4067:6;4059;4052:22;4107:3;4098:6;4093:3;4089:16;4086:25;4083:45;;;4124:1;4121;4114:12;4083:45;4174:6;4169:3;4162:4;4154:6;4150:17;4137:44;4229:1;4222:4;4213:6;4205;4201:19;4197:30;4190:41;;;;3605:632;;;;;:::o;4242:451::-;4311:6;4364:2;4352:9;4343:7;4339:23;4335:32;4332:52;;;4380:1;4377;4370:12;4332:52;4420:9;4407:23;4453:18;4445:6;4442:30;4439:50;;;4485:1;4482;4475:12;4439:50;4508:22;;4561:4;4553:13;;4549:27;-1:-1:-1;4539:55:6;;4590:1;4587;4580:12;4539:55;4613:74;4679:7;4674:2;4661:16;4656:2;4652;4648:11;4613:74;:::i;4698:186::-;4757:6;4810:2;4798:9;4789:7;4785:23;4781:32;4778:52;;;4826:1;4823;4816:12;4778:52;4849:29;4868:9;4849:29;:::i;5074:254::-;5139:6;5147;5200:2;5188:9;5179:7;5175:23;5171:32;5168:52;;;5216:1;5213;5206:12;5168:52;5239:29;5258:9;5239:29;:::i;:::-;5229:39;;5287:35;5318:2;5307:9;5303:18;5287:35;:::i;:::-;5277:45;;5074:254;;;;;:::o;5333:667::-;5428:6;5436;5444;5452;5505:3;5493:9;5484:7;5480:23;5476:33;5473:53;;;5522:1;5519;5512:12;5473:53;5545:29;5564:9;5545:29;:::i;:::-;5535:39;;5593:38;5627:2;5616:9;5612:18;5593:38;:::i;:::-;5583:48;;5678:2;5667:9;5663:18;5650:32;5640:42;;5733:2;5722:9;5718:18;5705:32;5760:18;5752:6;5749:30;5746:50;;;5792:1;5789;5782:12;5746:50;5815:22;;5868:4;5860:13;;5856:27;-1:-1:-1;5846:55:6;;5897:1;5894;5887:12;5846:55;5920:74;5986:7;5981:2;5968:16;5963:2;5959;5955:11;5920:74;:::i;:::-;5910:84;;;5333:667;;;;;;;:::o;6005:683::-;6100:6;6108;6116;6169:2;6157:9;6148:7;6144:23;6140:32;6137:52;;;6185:1;6182;6175:12;6137:52;6221:9;6208:23;6198:33;;6282:2;6271:9;6267:18;6254:32;6305:18;6346:2;6338:6;6335:14;6332:34;;;6362:1;6359;6352:12;6332:34;6400:6;6389:9;6385:22;6375:32;;6445:7;6438:4;6434:2;6430:13;6426:27;6416:55;;6467:1;6464;6457:12;6416:55;6507:2;6494:16;6533:2;6525:6;6522:14;6519:34;;;6549:1;6546;6539:12;6519:34;6602:7;6597:2;6587:6;6584:1;6580:14;6576:2;6572:23;6568:32;6565:45;6562:65;;;6623:1;6620;6613:12;6562:65;6654:2;6650;6646:11;6636:21;;6676:6;6666:16;;;;;6005:683;;;;;:::o;6693:260::-;6761:6;6769;6822:2;6810:9;6801:7;6797:23;6793:32;6790:52;;;6838:1;6835;6828:12;6790:52;6861:29;6880:9;6861:29;:::i;:::-;6851:39;;6909:38;6943:2;6932:9;6928:18;6909:38;:::i;6958:356::-;7160:2;7142:21;;;7179:18;;;7172:30;7238:34;7233:2;7218:18;;7211:62;7305:2;7290:18;;6958:356::o;7319:380::-;7398:1;7394:12;;;;7441;;;7462:61;;7516:4;7508:6;7504:17;7494:27;;7462:61;7569:2;7561:6;7558:14;7538:18;7535:38;7532:161;;7615:10;7610:3;7606:20;7603:1;7596:31;7650:4;7647:1;7640:15;7678:4;7675:1;7668:15;7532:161;;7319:380;;;:::o;8040:545::-;8142:2;8137:3;8134:11;8131:448;;;8178:1;8203:5;8199:2;8192:17;8248:4;8244:2;8234:19;8318:2;8306:10;8302:19;8299:1;8295:27;8289:4;8285:38;8354:4;8342:10;8339:20;8336:47;;;-1:-1:-1;8377:4:6;8336:47;8432:2;8427:3;8423:12;8420:1;8416:20;8410:4;8406:31;8396:41;;8487:82;8505:2;8498:5;8495:13;8487:82;;;8550:17;;;8531:1;8520:13;8487:82;;8761:1352;8887:3;8881:10;8914:18;8906:6;8903:30;8900:56;;;8936:18;;:::i;:::-;8965:97;9055:6;9015:38;9047:4;9041:11;9015:38;:::i;:::-;9009:4;8965:97;:::i;:::-;9117:4;;9181:2;9170:14;;9198:1;9193:663;;;;9900:1;9917:6;9914:89;;;-1:-1:-1;9969:19:6;;;9963:26;9914:89;-1:-1:-1;;8718:1:6;8714:11;;;8710:24;8706:29;8696:40;8742:1;8738:11;;;8693:57;10016:81;;9163:944;;9193:663;7987:1;7980:14;;;8024:4;8011:18;;-1:-1:-1;;9229:20:6;;;9347:236;9361:7;9358:1;9355:14;9347:236;;;9450:19;;;9444:26;9429:42;;9542:27;;;;9510:1;9498:14;;;;9377:19;;9347:236;;;9351:3;9611:6;9602:7;9599:19;9596:201;;;9672:19;;;9666:26;-1:-1:-1;;9755:1:6;9751:14;;;9767:3;9747:24;9743:37;9739:42;9724:58;9709:74;;9596:201;-1:-1:-1;;;;;9843:1:6;9827:14;;;9823:22;9810:36;;-1:-1:-1;8761:1352:6:o;10470:397::-;10672:2;10654:21;;;10711:2;10691:18;;;10684:30;10750:34;10745:2;10730:18;;10723:62;-1:-1:-1;;;10816:2:6;10801:18;;10794:31;10857:3;10842:19;;10470:397::o;10872:127::-;10933:10;10928:3;10924:20;10921:1;10914:31;10964:4;10961:1;10954:15;10988:4;10985:1;10978:15;11004:128;11044:3;11075:1;11071:6;11068:1;11065:13;11062:39;;;11081:18;;:::i;:::-;-1:-1:-1;11117:9:6;;11004:128::o;11904:168::-;11944:7;12010:1;12006;12002:6;11998:14;11995:1;11992:21;11987:1;11980:9;11973:17;11969:45;11966:71;;;12017:18;;:::i;:::-;-1:-1:-1;12057:9:6;;11904:168::o;12840:1230::-;13064:3;13102:6;13096:13;13128:4;13141:51;13185:6;13180:3;13175:2;13167:6;13163:15;13141:51;:::i;:::-;13255:13;;13214:16;;;;13277:55;13255:13;13214:16;13299:15;;;13277:55;:::i;:::-;13421:13;;13354:20;;;13394:1;;13459:36;13421:13;13459:36;:::i;:::-;13514:1;13531:18;;;13558:141;;;;13713:1;13708:337;;;;13524:521;;13558:141;-1:-1:-1;;13593:24:6;;13579:39;;13670:16;;13663:24;13649:39;;13638:51;;;-1:-1:-1;13558:141:6;;13708:337;13739:6;13736:1;13729:17;13787:2;13784:1;13774:16;13812:1;13826:169;13840:8;13837:1;13834:15;13826:169;;;13922:14;;13907:13;;;13900:37;13965:16;;;;13857:10;;13826:169;;;13830:3;;14026:8;14019:5;14015:20;14008:27;;13524:521;-1:-1:-1;14061:3:6;;12840:1230;-1:-1:-1;;;;;;;;;;12840:1230:6:o;15868:489::-;-1:-1:-1;;;;;16137:15:6;;;16119:34;;16189:15;;16184:2;16169:18;;16162:43;16236:2;16221:18;;16214:34;;;16284:3;16279:2;16264:18;;16257:31;;;16062:4;;16305:46;;16331:19;;16323:6;16305:46;:::i;:::-;16297:54;15868:489;-1:-1:-1;;;;;;15868:489:6:o;16362:249::-;16431:6;16484:2;16472:9;16463:7;16459:23;16455:32;16452:52;;;16500:1;16497;16490:12;16452:52;16532:9;16526:16;16551:30;16575:5;16551:30;:::i;16616:127::-;16677:10;16672:3;16668:20;16665:1;16658:31;16708:4;16705:1;16698:15;16732:4;16729:1;16722:15;16748:135;16787:3;16808:17;;;16805:43;;16828:18;;:::i;:::-;-1:-1:-1;16875:1:6;16864:13;;16748:135::o
Swarm Source
ipfs://41cbb53531658a994a6666b599abfb45d9d9c133b33247e5923d77cb99234650
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.