ERC-721
Overview
Max Total Supply
7,000 D3LUSION
Holders
1,931
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 D3LUSIONLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Delusion
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.7.0 <0.9.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "erc721a/contracts/ERC721A.sol"; // ██████╗░██████╗░██╗░░░░░██╗░░░██╗░██████╗██╗░█████╗░███╗░░██╗ // ██╔══██╗╚════██╗██║░░░░░██║░░░██║██╔════╝██║██╔══██╗████╗░██║ // ██║░░██║░█████╔╝██║░░░░░██║░░░██║╚█████╗░██║██║░░██║██╔██╗██║ // ██║░░██║░╚═══██╗██║░░░░░██║░░░██║░╚═══██╗██║██║░░██║██║╚████║ // ██████╔╝██████╔╝███████╗╚██████╔╝██████╔╝██║╚█████╔╝██║░╚███║ // ╚═════╝░╚═════╝░╚══════╝░╚═════╝░╚═════╝░╚═╝░╚════╝░╚═╝░░╚══╝ contract Delusion is ERC721A, Ownable, ReentrancyGuard { /// ERRORS /// error ContractMint(); error OutOfSupply(); error ExceedsTxnLimit(); error ExceedsWalletLimit(); error InsufficientFunds(); error MintPaused(); error MintInactive(); error InvalidProof(); error InvalidQuantity(); error InexistentToken(); /// @dev For URI concatenation. using Strings for uint256; bytes32 public merkleRoot = 0x4017bc006c61f665110881489b2a8a90e9b75f821bdc8722eaf7a34d1103fa80; string public baseURI = "ipfs://QmVW9aPRBCZEARmt31uUijLeQ6BvCgRXYaanQoi1X76G36/Hidden.json"; uint32 saleStartTime; uint256 public PRICE = 0.0099 ether; uint256 public SUPPLY_MAX; uint256 public SUPPLY_MAX_WHITELIST; uint256 public MAX_PER_TXN = 3; uint256 public teamReserve = 100; uint256 public whitelistMints; bool public presalePaused; bool public publicSalePaused; bool public revealed; constructor( string memory _name, string memory _symbol ) ERC721A(_name, _symbol) payable { _safeMint(msg.sender, 1); SUPPLY_MAX = 7000; SUPPLY_MAX_WHITELIST = 2500; saleStartTime = 1662163200; // Friday, September 3, 2022 12:00:00 AM GMT } modifier mintCompliance(uint256 _mintAmount) { if (block.timestamp < saleStartTime) revert MintInactive(); if (msg.sender != tx.origin) revert ContractMint(); if ((totalSupply() + _mintAmount) > (SUPPLY_MAX - teamReserve)) revert OutOfSupply(); if (_mintAmount > MAX_PER_TXN) revert ExceedsTxnLimit(); if ((_numberMinted(msg.sender) + _mintAmount) > MAX_PER_TXN) revert ExceedsWalletLimit(); _; } function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) external payable nonReentrant mintCompliance(_mintAmount) { if (_mintAmount < 1) revert InvalidQuantity(); if (presalePaused) revert MintPaused(); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); if (!MerkleProof.verify(_merkleProof, merkleRoot, leaf)) revert InvalidProof(); bool inSupply = whitelistMints < SUPPLY_MAX_WHITELIST; bool eligibleForFreeMint = _numberMinted(msg.sender) == 0; /// @dev Handle edge case. if (!inSupply) { if (eligibleForFreeMint) { if (_mintAmount > 1) { if (msg.value < (PRICE * (_mintAmount - 1))) revert InsufficientFunds(); _safeMint(msg.sender, (_mintAmount - 1)); } else { revert OutOfSupply(); } } else { if (msg.value < (PRICE * _mintAmount)) revert InsufficientFunds(); _safeMint(msg.sender, _mintAmount); } } else { uint256 quant = eligibleForFreeMint ? (_mintAmount - 1) : _mintAmount; if (msg.value < (PRICE * quant)) revert InsufficientFunds(); _safeMint(msg.sender, _mintAmount); if (eligibleForFreeMint) ++whitelistMints; } } function mint(uint256 _mintAmount) external payable nonReentrant mintCompliance(_mintAmount) { if (publicSalePaused) revert MintPaused(); if (msg.value < (PRICE * _mintAmount)) revert InsufficientFunds(); _safeMint(msg.sender, _mintAmount); } /// @notice Airdrop to a single wallet. function mintForAddress(uint256 _mintAmount, address _receiver) external onlyOwner { unchecked { teamReserve -= _mintAmount; } _safeMint(_receiver, _mintAmount); } /// @notice Airdrops to multiple wallets. function batchMintForAddress(address[] calldata addresses, uint256[] calldata quantities) external onlyOwner { uint32 i; unchecked { for (i=0; i < addresses.length; ++i) { teamReserve -= quantities[i]; _safeMint(addresses[i], quantities[i]); } } } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function numberMinted(address userAddress) external view virtual returns (uint256) { return _numberMinted(userAddress); } /// SETTERS /// function setRevealed() external onlyOwner { revealed = true; } function pausePublicSale(bool _state) external onlyOwner { publicSalePaused = _state; } function pausePresale(bool _state) external onlyOwner { presalePaused = _state; } function setSaleStartTime(uint32 startTime_) external onlyOwner { saleStartTime = startTime_; } function setMerkleRoot(bytes32 merkleRoot_) external onlyOwner { merkleRoot = merkleRoot_; } function setPrice(uint256 _price) external onlyOwner { PRICE = _price; } function setPublicMaxSupply(uint256 _supply) external onlyOwner { SUPPLY_MAX = _supply; } function setWhitelistMaxSupply(uint256 _supply) external onlyOwner { SUPPLY_MAX_WHITELIST = _supply; } function setTeamReserves(uint256 _reserve) external onlyOwner { teamReserve = _reserve; } function withdraw() external onlyOwner { payable(owner()).transfer(address(this).balance); } /// METADATA URI /// function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } /// @dev Returning concatenated URI with .json as suffix on the tokenID when revealed. function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { if (!_exists(_tokenId)) revert InexistentToken(); if (!revealed) return _baseURI(); return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json")); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree 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 Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(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++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // 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 `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID 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 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual 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 virtual 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 virtual 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 virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual 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 virtual { 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; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ 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: [ERC165](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. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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 ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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 initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev 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); } /** * @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 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)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns 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)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 virtual { uint256 startTokenId = _currentIndex; 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 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _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 virtual { 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 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 virtual { _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 Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @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) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(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++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { 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 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 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; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @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 virtual 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. // The ASCII index of the '0' character is 48. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ 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(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores 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 via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @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() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 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`, * 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, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` 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](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
{ "optimizer": { "enabled": true, "runs": 100000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractMint","type":"error"},{"inputs":[],"name":"ExceedsTxnLimit","type":"error"},{"inputs":[],"name":"ExceedsWalletLimit","type":"error"},{"inputs":[],"name":"InexistentToken","type":"error"},{"inputs":[],"name":"InsufficientFunds","type":"error"},{"inputs":[],"name":"InvalidProof","type":"error"},{"inputs":[],"name":"InvalidQuantity","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintInactive","type":"error"},{"inputs":[],"name":"MintPaused","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OutOfSupply","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":"MAX_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_MAX_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"batchMintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pausePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pausePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setPublicMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTime_","type":"uint32"}],"name":"setSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reserve","type":"uint256"}],"name":"setTeamReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setWhitelistMaxSupply","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":[],"name":"teamReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
7f4017bc006c61f665110881489b2a8a90e9b75f821bdc8722eaf7a34d1103fa80600a5561010060405260416080818152906200322160a03980516200004e91600b91602090910190620003d2565b5066232bff5f46c000600d5560036010556064601155604051620032823803806200328283398101604081905262000086916200053c565b8151829082906200009f906002906020850190620003d2565b508051620000b5906003906020840190620003d2565b5050600160005550620000c83362000103565b60016009819055620000dc90339062000155565b5050611b58600e556109c4600f55600c805463ffffffff191663631299001790556200067e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001778282604051806020016040528060008152506200017b60201b60201c565b5050565b620001878383620001f2565b6001600160a01b0383163b15620001ed576000548281035b6001810190620001b590600090879086620002cb565b620001d3576040516368d2bf6b60e11b815260040160405180910390fd5b8181106200019f578160005414620001ea57600080fd5b50505b505050565b60005481620002145760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020620032628339815191528180a4600183015b818114620002a3578083600060008051602062003262833981519152600080a46001016200027a565b5081620002c257604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029062000302903390899088908890600401620005a6565b602060405180830381600087803b1580156200031d57600080fd5b505af192505050801562000350575060408051601f3d908101601f191682019092526200034d9181019062000509565b60015b620003af573d80801562000381576040519150601f19603f3d011682016040523d82523d6000602084013e62000386565b606091505b508051620003a7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b50505050565b828054620003e0906200062b565b90600052602060002090601f0160209004810192826200040457600085556200044f565b82601f106200041f57805160ff19168380011785556200044f565b828001600101855582156200044f579182015b828111156200044f57825182559160200191906001019062000432565b506200045d92915062000461565b5090565b5b808211156200045d576000815560010162000462565b600082601f8301126200048a57600080fd5b81516001600160401b0380821115620004a757620004a762000668565b604051601f8301601f19908116603f01168101908282118183101715620004d257620004d262000668565b81604052838152866020858801011115620004ec57600080fd5b620004ff846020830160208901620005fc565b9695505050505050565b6000602082840312156200051c57600080fd5b81516001600160e01b0319811681146200053557600080fd5b9392505050565b600080604083850312156200055057600080fd5b82516001600160401b03808211156200056857600080fd5b620005768683870162000478565b935060208501519150808211156200058d57600080fd5b506200059c8582860162000478565b9150509250929050565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620005e58160a0850160208701620005fc565b601f01601f19169190910160a00195945050505050565b60005b8381101562000619578181015183820152602001620005ff565b83811115620003cc5750506000910152565b600181811c908216806200064057607f821691505b602082108114156200066257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612b93806200068e6000396000f3fe6080604052600436106102e75760003560e01c80637cb6475911610184578063b677dd0b116100d6578063dc33e6811161008a578063e985e9c511610064578063e985e9c5146107dc578063efbd73f414610832578063f2fde38b1461085257600080fd5b8063dc33e68114610786578063de30dd34146107a6578063e15b5e61146107c657600080fd5b8063c87b56dd116100bb578063c87b56dd14610733578063d2cab05614610753578063d7299ef71461076657600080fd5b8063b677dd0b146106f3578063b88d4fde1461071357600080fd5b806395d89b4111610138578063a3e7ee9711610112578063a3e7ee97146106a3578063a79fdbb4146106b9578063ae5abd09146106d357600080fd5b806395d89b411461065b578063a0712d6814610670578063a22cb4651461068357600080fd5b80638da5cb5b116101695780638da5cb5b146105fa57806391b7f5ed14610625578063958f6ed61461064557600080fd5b80637cb64759146105c45780638d859f3e146105e457600080fd5b80633ccfd60b1161023d57806355f804b3116101f157806370a08231116101cb57806370a082311461056f578063715018a61461058f5780637590485f146105a457600080fd5b806355f804b31461051a5780636352211e1461053a5780636c0360eb1461055a57600080fd5b80634287f14a116102225780634287f14a146104ce57806351830227146104e457806351b96d921461050457600080fd5b80633ccfd60b1461049957806342842e0e146104ae57600080fd5b8063095ea7b31161029f5780632c99589b116102795780632c99589b1461044e5780632eb4a7ab1461046e5780633bd649681461048457600080fd5b8063095ea7b3146103c957806318160ddd146103e957806323b872dd1461042e57600080fd5b8063069cd573116102d0578063069cd5731461034357806306fdde0314610362578063081812fc1461038457600080fd5b806301595266146102ec57806301ffc9a71461030e575b600080fd5b3480156102f857600080fd5b5061030c610307366004612803565b610872565b005b34801561031a57600080fd5b5061032e610329366004612711565b6108b1565b60405190151581526020015b60405180910390f35b34801561034f57600080fd5b5060135461032e90610100900460ff1681565b34801561036e57600080fd5b50610377610996565b60405161033a9190612913565b34801561039057600080fd5b506103a461039f3660046126f8565b610a28565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161033a565b3480156103d557600080fd5b5061030c6103e4366004612647565b610a92565b3480156103f557600080fd5b50600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b60405190815260200161033a565b34801561043a57600080fd5b5061030c610449366004612565565b610b7d565b34801561045a57600080fd5b5061030c6104693660046126f8565b610e05565b34801561047a57600080fd5b50610420600a5481565b34801561049057600080fd5b5061030c610e12565b3480156104a557600080fd5b5061030c610e49565b3480156104ba57600080fd5b5061030c6104c9366004612565565b610e9a565b3480156104da57600080fd5b5061042060115481565b3480156104f057600080fd5b5060135461032e9062010000900460ff1681565b34801561051057600080fd5b5061042060105481565b34801561052657600080fd5b5061030c61053536600461274b565b610eba565b34801561054657600080fd5b506103a46105553660046126f8565b610ed9565b34801561056657600080fd5b50610377610ee4565b34801561057b57600080fd5b5061042061058a366004612517565b610f72565b34801561059b57600080fd5b5061030c610ff4565b3480156105b057600080fd5b5061030c6105bf3660046126dd565b611008565b3480156105d057600080fd5b5061030c6105df3660046126f8565b611047565b3480156105f057600080fd5b50610420600d5481565b34801561060657600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff166103a4565b34801561063157600080fd5b5061030c6106403660046126f8565b611054565b34801561065157600080fd5b50610420600e5481565b34801561066757600080fd5b50610377611061565b61030c61067e3660046126f8565b611070565b34801561068f57600080fd5b5061030c61069e36600461261d565b61131e565b3480156106af57600080fd5b50610420600f5481565b3480156106c557600080fd5b5060135461032e9060ff1681565b3480156106df57600080fd5b5061030c6106ee3660046126f8565b611405565b3480156106ff57600080fd5b5061030c61070e3660046126f8565b611412565b34801561071f57600080fd5b5061030c61072e3660046125a1565b61141f565b34801561073f57600080fd5b5061037761074e3660046126f8565b61148f565b61030c6107613660046127b7565b611520565b34801561077257600080fd5b5061030c6107813660046126dd565b611a44565b34801561079257600080fd5b506104206107a1366004612517565b611a7d565b3480156107b257600080fd5b5061030c6107c1366004612671565b611ab5565b3480156107d257600080fd5b5061042060125481565b3480156107e857600080fd5b5061032e6107f7366004612532565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561083e57600080fd5b5061030c61084d366004612794565b611b5d565b34801561085e57600080fd5b5061030c61086d366004612517565b611b78565b61087a611c2c565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001663ffffffff92909216919091179055565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061094457507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061099057507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546109a5906129d2565b80601f01602080910402602001604051908101604052809291908181526020018280546109d1906129d2565b8015610a1e5780601f106109f357610100808354040283529160200191610a1e565b820191906000526020600020905b815481529060010190602001808311610a0157829003601f168201915b5050505050905090565b6000610a3382611cad565b610a69576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a9d82610ed9565b90503373ffffffffffffffffffffffffffffffffffffffff821614610afc57610ac681336107f7565b610afc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610b8882611cfb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bef576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080543380821473ffffffffffffffffffffffffffffffffffffffff881690911417610c6257610c2c86336107f7565b610c62576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516610caf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610cba57600082555b73ffffffffffffffffffffffffffffffffffffffff86811660009081526005602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260409020557c02000000000000000000000000000000000000000000000000000000008316610da25760018401600081815260046020526040902054610da0576000548114610da05760008181526004602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610e0d611c2c565b600e55565b610e1a611c2c565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff1662010000179055565b610e51611c2c565b60085460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f19350505050158015610e97573d6000803e3d6000fd5b50565b610eb58383836040518060200160405280600081525061141f565b505050565b610ec2611c2c565b8051610ed590600b906020840190612365565b5050565b600061099082611cfb565b600b8054610ef1906129d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1d906129d2565b8015610f6a5780601f10610f3f57610100808354040283529160200191610f6a565b820191906000526020600020905b815481529060010190602001808311610f4d57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216610fc1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b610ffc611c2c565b6110066000611dbb565b565b611010611c2c565b60138054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b61104f611c2c565b600a55565b61105c611c2c565b600d55565b6060600380546109a5906129d2565b600260095414156110e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955600c54819063ffffffff1642101561112b576040517f343295c400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b333214611164576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601154600e54611174919061298f565b600154600054839190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016111aa9190612926565b11156111e2576040517f9b741cf000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60105481111561121e576040517f802fc7e600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60105433600090815260056020526040908190205483911c67ffffffffffffffff1661124a9190612926565b1115611282576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601354610100900460ff16156112c4576040517fd7d248ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600d546112d29190612952565b34101561130b576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113153383611e32565b50506001600955565b73ffffffffffffffffffffffffffffffffffffffff821633141561136e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61140d611c2c565b601155565b61141a611c2c565b600f55565b61142a848484610b7d565b73ffffffffffffffffffffffffffffffffffffffff83163b156114895761145384848484611e4c565b611489576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061149a82611cad565b6114d0576040517f157503d400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60135462010000900460ff166114e857610990611fd2565b6114f0611fd2565b6114f983611fe1565b60405160200161150a929190612873565b6040516020818303038152906040529050919050565b6002600954141561158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016110d9565b6002600955600c54839063ffffffff164210156115d6576040517f343295c400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33321461160f576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601154600e5461161f919061298f565b600154600054839190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016116559190612926565b111561168d576040517f9b741cf000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6010548111156116c9576040517f802fc7e600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60105433600090815260056020526040908190205483911c67ffffffffffffffff166116f59190612926565b111561172d576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001841015611768576040517f524f409b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60135460ff16156117a5576040517fd7d248ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015260009060340160405160208183030381529060405280519060200120905061183284848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050612113565b611868576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f546012541060006118ab3373ffffffffffffffffffffffffffffffffffffffff166000908152600560205260409081902054901c67ffffffffffffffff1690565b159050816119af57801561195e57600187111561192c576118cd60018861298f565b600d546118da9190612952565b341015611913576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119273361192260018a61298f565b611e32565b611a36565b6040517f9b741cf000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b86600d5461196c9190612952565b3410156119a5576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119273388611e32565b6000816119bc57876119c7565b6119c760018961298f565b905080600d546119d79190612952565b341015611a10576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a1a3389611e32565b8115611a3457601260008154611a2f90612a26565b909155505b505b505060016009555050505050565b611a4c611c2c565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600560205260408082205467ffffffffffffffff911c16610990565b611abd611c2c565b60005b63ffffffff8116841115611b565782828263ffffffff16818110611ae657611ae6612ad1565b6011805460209092029390930135900390915550611b4e858563ffffffff8416818110611b1557611b15612ad1565b9050602002016020810190611b2a9190612517565b84848463ffffffff16818110611b4257611b42612ad1565b90506020020135611e32565b600101611ac0565b5050505050565b611b65611c2c565b601180548390039055610ed58183611e32565b611b80611c2c565b73ffffffffffffffffffffffffffffffffffffffff8116611c23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016110d9565b610e9781611dbb565b60085473ffffffffffffffffffffffffffffffffffffffff163314611006576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016110d9565b600081600111158015611cc1575060005482105b80156109905750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b60008180600111611d8957600054811015611d89576000818152600460205260409020547c01000000000000000000000000000000000000000000000000000000008116611d87575b80611d8057507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600081815260046020526040902054611d44565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ed5828260405180602001604052806000815250612129565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611ea79033908990889088906004016128ca565b602060405180830381600087803b158015611ec157600080fd5b505af1925050508015611f0f575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611f0c9181019061272e565b60015b611f83573d808015611f3d576040519150601f19603f3d011682016040523d82523d6000602084013e611f42565b606091505b508051611f7b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600b80546109a5906129d2565b60608161202157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561204b578061203581612a26565b91506120449050600a8361293e565b9150612025565b60008167ffffffffffffffff81111561206657612066612b00565b6040519080825280601f01601f191660200182016040528015612090576020820181803683370190505b5090505b8415611fca576120a560018361298f565b91506120b2600a86612a5f565b6120bd906030612926565b60f81b8183815181106120d2576120d2612ad1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061210c600a8661293e565b9450612094565b60008261212085846121b5565b14949350505050565b6121338383612202565b73ffffffffffffffffffffffffffffffffffffffff83163b15610eb5576000548281035b61216a6000868380600101945086611e4c565b6121a0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612157578160005414611b5657600080fd5b600081815b84518110156121fa576121e6828683815181106121d9576121d9612ad1565b6020026020010151612339565b9150806121f281612a26565b9150506121ba565b509392505050565b6000548161223c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146122f857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016122c0565b5081612330576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b6000818310612355576000828152602084905260409020611d80565b5060009182526020526040902090565b828054612371906129d2565b90600052602060002090601f01602090048101928261239357600085556123d9565b82601f106123ac57805160ff19168380011785556123d9565b828001600101855582156123d9579182015b828111156123d95782518255916020019190600101906123be565b506123e59291506123e9565b5090565b5b808211156123e557600081556001016123ea565b600067ffffffffffffffff8084111561241957612419612b00565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561245f5761245f612b00565b8160405280935085815286868601111561247857600080fd5b858560208301376000602087830101525050509392505050565b803573ffffffffffffffffffffffffffffffffffffffff811681146124b657600080fd5b919050565b60008083601f8401126124cd57600080fd5b50813567ffffffffffffffff8111156124e557600080fd5b6020830191508360208260051b850101111561250057600080fd5b9250929050565b803580151581146124b657600080fd5b60006020828403121561252957600080fd5b611d8082612492565b6000806040838503121561254557600080fd5b61254e83612492565b915061255c60208401612492565b90509250929050565b60008060006060848603121561257a57600080fd5b61258384612492565b925061259160208501612492565b9150604084013590509250925092565b600080600080608085870312156125b757600080fd5b6125c085612492565b93506125ce60208601612492565b925060408501359150606085013567ffffffffffffffff8111156125f157600080fd5b8501601f8101871361260257600080fd5b612611878235602084016123fe565b91505092959194509250565b6000806040838503121561263057600080fd5b61263983612492565b915061255c60208401612507565b6000806040838503121561265a57600080fd5b61266383612492565b946020939093013593505050565b6000806000806040858703121561268757600080fd5b843567ffffffffffffffff8082111561269f57600080fd5b6126ab888389016124bb565b909650945060208701359150808211156126c457600080fd5b506126d1878288016124bb565b95989497509550505050565b6000602082840312156126ef57600080fd5b611d8082612507565b60006020828403121561270a57600080fd5b5035919050565b60006020828403121561272357600080fd5b8135611d8081612b2f565b60006020828403121561274057600080fd5b8151611d8081612b2f565b60006020828403121561275d57600080fd5b813567ffffffffffffffff81111561277457600080fd5b8201601f8101841361278557600080fd5b611fca848235602084016123fe565b600080604083850312156127a757600080fd5b8235915061255c60208401612492565b6000806000604084860312156127cc57600080fd5b83359250602084013567ffffffffffffffff8111156127ea57600080fd5b6127f6868287016124bb565b9497909650939450505050565b60006020828403121561281557600080fd5b813563ffffffff81168114611d8057600080fd5b600081518084526128418160208601602086016129a6565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516128858184602088016129a6565b8351908301906128998183602088016129a6565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526129096080830184612829565b9695505050505050565b602081526000611d806020830184612829565b6000821982111561293957612939612a73565b500190565b60008261294d5761294d612aa2565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561298a5761298a612a73565b500290565b6000828210156129a1576129a1612a73565b500390565b60005b838110156129c15781810151838201526020016129a9565b838111156114895750506000910152565b600181811c908216806129e657607f821691505b60208210811415612a20577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a5857612a58612a73565b5060010190565b600082612a6e57612a6e612aa2565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e9757600080fdfea2646970667358221220c9c588c2389ab7ae7ab1c784c767cb6c7443f35fff08f8695ccd426bbcec145164736f6c63430008070033697066733a2f2f516d56573961505242435a4541526d7433317555696a4c6551364276436752585961616e516f69315837364733362f48696464656e2e6a736f6eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000844334c5553494f4e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000844334c5553494f4e000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102e75760003560e01c80637cb6475911610184578063b677dd0b116100d6578063dc33e6811161008a578063e985e9c511610064578063e985e9c5146107dc578063efbd73f414610832578063f2fde38b1461085257600080fd5b8063dc33e68114610786578063de30dd34146107a6578063e15b5e61146107c657600080fd5b8063c87b56dd116100bb578063c87b56dd14610733578063d2cab05614610753578063d7299ef71461076657600080fd5b8063b677dd0b146106f3578063b88d4fde1461071357600080fd5b806395d89b4111610138578063a3e7ee9711610112578063a3e7ee97146106a3578063a79fdbb4146106b9578063ae5abd09146106d357600080fd5b806395d89b411461065b578063a0712d6814610670578063a22cb4651461068357600080fd5b80638da5cb5b116101695780638da5cb5b146105fa57806391b7f5ed14610625578063958f6ed61461064557600080fd5b80637cb64759146105c45780638d859f3e146105e457600080fd5b80633ccfd60b1161023d57806355f804b3116101f157806370a08231116101cb57806370a082311461056f578063715018a61461058f5780637590485f146105a457600080fd5b806355f804b31461051a5780636352211e1461053a5780636c0360eb1461055a57600080fd5b80634287f14a116102225780634287f14a146104ce57806351830227146104e457806351b96d921461050457600080fd5b80633ccfd60b1461049957806342842e0e146104ae57600080fd5b8063095ea7b31161029f5780632c99589b116102795780632c99589b1461044e5780632eb4a7ab1461046e5780633bd649681461048457600080fd5b8063095ea7b3146103c957806318160ddd146103e957806323b872dd1461042e57600080fd5b8063069cd573116102d0578063069cd5731461034357806306fdde0314610362578063081812fc1461038457600080fd5b806301595266146102ec57806301ffc9a71461030e575b600080fd5b3480156102f857600080fd5b5061030c610307366004612803565b610872565b005b34801561031a57600080fd5b5061032e610329366004612711565b6108b1565b60405190151581526020015b60405180910390f35b34801561034f57600080fd5b5060135461032e90610100900460ff1681565b34801561036e57600080fd5b50610377610996565b60405161033a9190612913565b34801561039057600080fd5b506103a461039f3660046126f8565b610a28565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161033a565b3480156103d557600080fd5b5061030c6103e4366004612647565b610a92565b3480156103f557600080fd5b50600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b60405190815260200161033a565b34801561043a57600080fd5b5061030c610449366004612565565b610b7d565b34801561045a57600080fd5b5061030c6104693660046126f8565b610e05565b34801561047a57600080fd5b50610420600a5481565b34801561049057600080fd5b5061030c610e12565b3480156104a557600080fd5b5061030c610e49565b3480156104ba57600080fd5b5061030c6104c9366004612565565b610e9a565b3480156104da57600080fd5b5061042060115481565b3480156104f057600080fd5b5060135461032e9062010000900460ff1681565b34801561051057600080fd5b5061042060105481565b34801561052657600080fd5b5061030c61053536600461274b565b610eba565b34801561054657600080fd5b506103a46105553660046126f8565b610ed9565b34801561056657600080fd5b50610377610ee4565b34801561057b57600080fd5b5061042061058a366004612517565b610f72565b34801561059b57600080fd5b5061030c610ff4565b3480156105b057600080fd5b5061030c6105bf3660046126dd565b611008565b3480156105d057600080fd5b5061030c6105df3660046126f8565b611047565b3480156105f057600080fd5b50610420600d5481565b34801561060657600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff166103a4565b34801561063157600080fd5b5061030c6106403660046126f8565b611054565b34801561065157600080fd5b50610420600e5481565b34801561066757600080fd5b50610377611061565b61030c61067e3660046126f8565b611070565b34801561068f57600080fd5b5061030c61069e36600461261d565b61131e565b3480156106af57600080fd5b50610420600f5481565b3480156106c557600080fd5b5060135461032e9060ff1681565b3480156106df57600080fd5b5061030c6106ee3660046126f8565b611405565b3480156106ff57600080fd5b5061030c61070e3660046126f8565b611412565b34801561071f57600080fd5b5061030c61072e3660046125a1565b61141f565b34801561073f57600080fd5b5061037761074e3660046126f8565b61148f565b61030c6107613660046127b7565b611520565b34801561077257600080fd5b5061030c6107813660046126dd565b611a44565b34801561079257600080fd5b506104206107a1366004612517565b611a7d565b3480156107b257600080fd5b5061030c6107c1366004612671565b611ab5565b3480156107d257600080fd5b5061042060125481565b3480156107e857600080fd5b5061032e6107f7366004612532565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561083e57600080fd5b5061030c61084d366004612794565b611b5d565b34801561085e57600080fd5b5061030c61086d366004612517565b611b78565b61087a611c2c565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001663ffffffff92909216919091179055565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061094457507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061099057507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546109a5906129d2565b80601f01602080910402602001604051908101604052809291908181526020018280546109d1906129d2565b8015610a1e5780601f106109f357610100808354040283529160200191610a1e565b820191906000526020600020905b815481529060010190602001808311610a0157829003601f168201915b5050505050905090565b6000610a3382611cad565b610a69576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a9d82610ed9565b90503373ffffffffffffffffffffffffffffffffffffffff821614610afc57610ac681336107f7565b610afc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610b8882611cfb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bef576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080543380821473ffffffffffffffffffffffffffffffffffffffff881690911417610c6257610c2c86336107f7565b610c62576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516610caf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610cba57600082555b73ffffffffffffffffffffffffffffffffffffffff86811660009081526005602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260409020557c02000000000000000000000000000000000000000000000000000000008316610da25760018401600081815260046020526040902054610da0576000548114610da05760008181526004602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610e0d611c2c565b600e55565b610e1a611c2c565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff1662010000179055565b610e51611c2c565b60085460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f19350505050158015610e97573d6000803e3d6000fd5b50565b610eb58383836040518060200160405280600081525061141f565b505050565b610ec2611c2c565b8051610ed590600b906020840190612365565b5050565b600061099082611cfb565b600b8054610ef1906129d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1d906129d2565b8015610f6a5780601f10610f3f57610100808354040283529160200191610f6a565b820191906000526020600020905b815481529060010190602001808311610f4d57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216610fc1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b610ffc611c2c565b6110066000611dbb565b565b611010611c2c565b60138054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b61104f611c2c565b600a55565b61105c611c2c565b600d55565b6060600380546109a5906129d2565b600260095414156110e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955600c54819063ffffffff1642101561112b576040517f343295c400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b333214611164576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601154600e54611174919061298f565b600154600054839190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016111aa9190612926565b11156111e2576040517f9b741cf000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60105481111561121e576040517f802fc7e600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60105433600090815260056020526040908190205483911c67ffffffffffffffff1661124a9190612926565b1115611282576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601354610100900460ff16156112c4576040517fd7d248ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600d546112d29190612952565b34101561130b576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113153383611e32565b50506001600955565b73ffffffffffffffffffffffffffffffffffffffff821633141561136e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61140d611c2c565b601155565b61141a611c2c565b600f55565b61142a848484610b7d565b73ffffffffffffffffffffffffffffffffffffffff83163b156114895761145384848484611e4c565b611489576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061149a82611cad565b6114d0576040517f157503d400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60135462010000900460ff166114e857610990611fd2565b6114f0611fd2565b6114f983611fe1565b60405160200161150a929190612873565b6040516020818303038152906040529050919050565b6002600954141561158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016110d9565b6002600955600c54839063ffffffff164210156115d6576040517f343295c400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33321461160f576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601154600e5461161f919061298f565b600154600054839190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016116559190612926565b111561168d576040517f9b741cf000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6010548111156116c9576040517f802fc7e600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60105433600090815260056020526040908190205483911c67ffffffffffffffff166116f59190612926565b111561172d576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001841015611768576040517f524f409b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60135460ff16156117a5576040517fd7d248ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015260009060340160405160208183030381529060405280519060200120905061183284848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050612113565b611868576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f546012541060006118ab3373ffffffffffffffffffffffffffffffffffffffff166000908152600560205260409081902054901c67ffffffffffffffff1690565b159050816119af57801561195e57600187111561192c576118cd60018861298f565b600d546118da9190612952565b341015611913576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119273361192260018a61298f565b611e32565b611a36565b6040517f9b741cf000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b86600d5461196c9190612952565b3410156119a5576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119273388611e32565b6000816119bc57876119c7565b6119c760018961298f565b905080600d546119d79190612952565b341015611a10576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a1a3389611e32565b8115611a3457601260008154611a2f90612a26565b909155505b505b505060016009555050505050565b611a4c611c2c565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600560205260408082205467ffffffffffffffff911c16610990565b611abd611c2c565b60005b63ffffffff8116841115611b565782828263ffffffff16818110611ae657611ae6612ad1565b6011805460209092029390930135900390915550611b4e858563ffffffff8416818110611b1557611b15612ad1565b9050602002016020810190611b2a9190612517565b84848463ffffffff16818110611b4257611b42612ad1565b90506020020135611e32565b600101611ac0565b5050505050565b611b65611c2c565b601180548390039055610ed58183611e32565b611b80611c2c565b73ffffffffffffffffffffffffffffffffffffffff8116611c23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016110d9565b610e9781611dbb565b60085473ffffffffffffffffffffffffffffffffffffffff163314611006576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016110d9565b600081600111158015611cc1575060005482105b80156109905750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b60008180600111611d8957600054811015611d89576000818152600460205260409020547c01000000000000000000000000000000000000000000000000000000008116611d87575b80611d8057507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600081815260046020526040902054611d44565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ed5828260405180602001604052806000815250612129565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611ea79033908990889088906004016128ca565b602060405180830381600087803b158015611ec157600080fd5b505af1925050508015611f0f575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611f0c9181019061272e565b60015b611f83573d808015611f3d576040519150601f19603f3d011682016040523d82523d6000602084013e611f42565b606091505b508051611f7b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600b80546109a5906129d2565b60608161202157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561204b578061203581612a26565b91506120449050600a8361293e565b9150612025565b60008167ffffffffffffffff81111561206657612066612b00565b6040519080825280601f01601f191660200182016040528015612090576020820181803683370190505b5090505b8415611fca576120a560018361298f565b91506120b2600a86612a5f565b6120bd906030612926565b60f81b8183815181106120d2576120d2612ad1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061210c600a8661293e565b9450612094565b60008261212085846121b5565b14949350505050565b6121338383612202565b73ffffffffffffffffffffffffffffffffffffffff83163b15610eb5576000548281035b61216a6000868380600101945086611e4c565b6121a0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612157578160005414611b5657600080fd5b600081815b84518110156121fa576121e6828683815181106121d9576121d9612ad1565b6020026020010151612339565b9150806121f281612a26565b9150506121ba565b509392505050565b6000548161223c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146122f857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016122c0565b5081612330576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b6000818310612355576000828152602084905260409020611d80565b5060009182526020526040902090565b828054612371906129d2565b90600052602060002090601f01602090048101928261239357600085556123d9565b82601f106123ac57805160ff19168380011785556123d9565b828001600101855582156123d9579182015b828111156123d95782518255916020019190600101906123be565b506123e59291506123e9565b5090565b5b808211156123e557600081556001016123ea565b600067ffffffffffffffff8084111561241957612419612b00565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561245f5761245f612b00565b8160405280935085815286868601111561247857600080fd5b858560208301376000602087830101525050509392505050565b803573ffffffffffffffffffffffffffffffffffffffff811681146124b657600080fd5b919050565b60008083601f8401126124cd57600080fd5b50813567ffffffffffffffff8111156124e557600080fd5b6020830191508360208260051b850101111561250057600080fd5b9250929050565b803580151581146124b657600080fd5b60006020828403121561252957600080fd5b611d8082612492565b6000806040838503121561254557600080fd5b61254e83612492565b915061255c60208401612492565b90509250929050565b60008060006060848603121561257a57600080fd5b61258384612492565b925061259160208501612492565b9150604084013590509250925092565b600080600080608085870312156125b757600080fd5b6125c085612492565b93506125ce60208601612492565b925060408501359150606085013567ffffffffffffffff8111156125f157600080fd5b8501601f8101871361260257600080fd5b612611878235602084016123fe565b91505092959194509250565b6000806040838503121561263057600080fd5b61263983612492565b915061255c60208401612507565b6000806040838503121561265a57600080fd5b61266383612492565b946020939093013593505050565b6000806000806040858703121561268757600080fd5b843567ffffffffffffffff8082111561269f57600080fd5b6126ab888389016124bb565b909650945060208701359150808211156126c457600080fd5b506126d1878288016124bb565b95989497509550505050565b6000602082840312156126ef57600080fd5b611d8082612507565b60006020828403121561270a57600080fd5b5035919050565b60006020828403121561272357600080fd5b8135611d8081612b2f565b60006020828403121561274057600080fd5b8151611d8081612b2f565b60006020828403121561275d57600080fd5b813567ffffffffffffffff81111561277457600080fd5b8201601f8101841361278557600080fd5b611fca848235602084016123fe565b600080604083850312156127a757600080fd5b8235915061255c60208401612492565b6000806000604084860312156127cc57600080fd5b83359250602084013567ffffffffffffffff8111156127ea57600080fd5b6127f6868287016124bb565b9497909650939450505050565b60006020828403121561281557600080fd5b813563ffffffff81168114611d8057600080fd5b600081518084526128418160208601602086016129a6565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516128858184602088016129a6565b8351908301906128998183602088016129a6565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526129096080830184612829565b9695505050505050565b602081526000611d806020830184612829565b6000821982111561293957612939612a73565b500190565b60008261294d5761294d612aa2565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561298a5761298a612a73565b500290565b6000828210156129a1576129a1612a73565b500390565b60005b838110156129c15781810151838201526020016129a9565b838111156114895750506000910152565b600181811c908216806129e657607f821691505b60208210811415612a20577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a5857612a58612a73565b5060010190565b600082612a6e57612a6e612aa2565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e9757600080fdfea2646970667358221220c9c588c2389ab7ae7ab1c784c767cb6c7443f35fff08f8695ccd426bbcec145164736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000844334c5553494f4e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000844334c5553494f4e000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): D3LUSION
Arg [1] : _symbol (string): D3LUSION
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 44334c5553494f4e000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 44334c5553494f4e000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
1466:6128:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6133:107;;;;;;;;;;-1:-1:-1;6133:107:5;;;;;:::i;:::-;;:::i;:::-;;9112:630:6;;;;;;;;;;-1:-1:-1;9112:630:6;;;;;:::i;:::-;;:::i;:::-;;;8911:14:8;;8904:22;8886:41;;8874:2;8859:18;9112:630:6;;;;;;;;2387:28:5;;;;;;;;;;-1:-1:-1;2387:28:5;;;;;;;;;;;9996:98:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16309:214::-;;;;;;;;;;-1:-1:-1;16309:214:6;;;;;:::i;:::-;;:::i;:::-;;;8175:42:8;8163:55;;;8145:74;;8133:2;8118:18;16309:214:6;7999:226:8;15769:390:6;;;;;;;;;;-1:-1:-1;15769:390:6;;;;;:::i;:::-;;:::i;5851:317::-;;;;;;;;;;-1:-1:-1;5675:1:5;6121:12:6;5912:7;6105:13;:28;:46;;5851:317;;;9084:25:8;;;9072:2;9057:18;5851:317:6;8938:177:8;19918:2756:6;;;;;;;;;;-1:-1:-1;19918:2756:6;;;;;:::i;:::-;;:::i;6446:101:5:-;;;;;;;;;;-1:-1:-1;6446:101:5;;;;;:::i;:::-;;:::i;1898:94::-;;;;;;;;;;;;;;;;5849:74;;;;;;;;;;;;;:::i;6780:104::-;;;;;;;;;;;;;:::i;22765:179:6:-;;;;;;;;;;-1:-1:-1;22765:179:6;;;;;:::i;:::-;;:::i;2282:32:5:-;;;;;;;;;;;;;;;;2421:20;;;;;;;;;;-1:-1:-1;2421:20:5;;;;;;;;;;;2241:30;;;;;;;;;;;;;;;;7066:104;;;;;;;;;;-1:-1:-1;7066:104:5;;;;;:::i;:::-;;:::i;11348:150:6:-;;;;;;;;;;-1:-1:-1;11348:150:6;;;;;:::i;:::-;;:::i;1999:91:5:-;;;;;;;;;;;;;:::i;7002:230:6:-;;;;;;;;;;-1:-1:-1;7002:230:6;;;;;:::i;:::-;;:::i;1831:101:0:-;;;;;;;;;;;;;:::i;5929:99:5:-;;;;;;;;;;-1:-1:-1;5929:99:5;;;;;:::i;:::-;;:::i;6246:104::-;;;;;;;;;;-1:-1:-1;6246:104:5;;;;;:::i;:::-;;:::i;2128:35::-;;;;;;;;;;;;;;;;1201:85:0;;;;;;;;;;-1:-1:-1;1273:6:0;;;;1201:85;;6356:84:5;;;;;;;;;;-1:-1:-1;6356:84:5;;;;;:::i;:::-;;:::i;2169:25::-;;;;;;;;;;;;;;;;10165:102:6;;;;;;;;;;;;;:::i;4614:307:5:-;;;;;;:::i;:::-;;:::i;16850:303:6:-;;;;;;;;;;-1:-1:-1;16850:303:6;;;;;:::i;:::-;;:::i;2200:35:5:-;;;;;;;;;;;;;;;;2356:25;;;;;;;;;;-1:-1:-1;2356:25:5;;;;;;;;6673:101;;;;;;;;;;-1:-1:-1;6673:101:5;;;;;:::i;:::-;;:::i;6553:114::-;;;;;;;;;;-1:-1:-1;6553:114:5;;;;;:::i;:::-;;:::i;23525:388:6:-;;;;;;;;;;-1:-1:-1;23525:388:6;;;;;:::i;:::-;;:::i;7267:324:5:-;;;;;;;;;;-1:-1:-1;7267:324:5;;;;;:::i;:::-;;:::i;3204:1404::-;;;;;;:::i;:::-;;:::i;6034:93::-;;;;;;;;;;-1:-1:-1;6034:93:5;;;;;:::i;:::-;;:::i;5689:133::-;;;;;;;;;;-1:-1:-1;5689:133:5;;;;;:::i;:::-;;:::i;5210:331::-;;;;;;;;;;-1:-1:-1;5210:331:5;;;;;:::i;:::-;;:::i;2320:29::-;;;;;;;;;;;;;;;;17303:162:6;;;;;;;;;;-1:-1:-1;17303:162:6;;;;;:::i;:::-;17423:25;;;;17400:4;17423:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17303:162;4975:183:5;;;;;;;;;;-1:-1:-1;4975:183:5;;;;;:::i;:::-;;:::i;2081:198:0:-;;;;;;;;;;-1:-1:-1;2081:198:0;;;;;:::i;:::-;;:::i;6133:107:5:-;1094:13:0;:11;:13::i;:::-;6207::5::1;:26:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;6133:107::o;9112:630:6:-;9197:4;9515:25;;;;;;:101;;-1:-1:-1;9591:25:6;;;;;9515:101;:177;;;-1:-1:-1;9667:25:6;;;;;9515:177;9496:196;9112:630;-1:-1:-1;;9112:630:6:o;9996:98::-;10050:13;10082:5;10075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9996:98;:::o;16309:214::-;16385:7;16409:16;16417:7;16409;:16::i;:::-;16404:64;;16434:34;;;;;;;;;;;;;;16404:64;-1:-1:-1;16486:24:6;;;;:15;:24;;;;;:30;;;;16309:214::o;15769:390::-;15849:13;15865:16;15873:7;15865;:16::i;:::-;15849:32;-1:-1:-1;39008:10:6;15896:28;;;;15892:172;;15943:44;15960:5;39008:10;17303:162;:::i;15943:44::-;15938:126;;16014:35;;;;;;;;;;;;;;15938:126;16074:24;;;;:15;:24;;;;;;:35;;;;;;;;;;;;;;16124:28;;16074:24;;16124:28;;;;;;;15839:320;15769:390;;:::o;19918:2756::-;20047:27;20077;20096:7;20077:18;:27::i;:::-;20047:57;;20160:4;20119:45;;20135:19;20119:45;;;20115:86;;20173:28;;;;;;;;;;;;;;20115:86;20213:27;19057:24;;;:15;:24;;;;;19275:26;;39008:10;18694:30;;;18402:16;18391:28;;18672:20;;;18669:56;20396:179;;20488:43;20505:4;39008:10;17303:162;:::i;20488:43::-;20483:92;;20540:35;;;;;;;;;;;;;;20483:92;20590:16;;;20586:52;;20615:23;;;;;;;;;;;;;;20586:52;20781:15;20778:157;;;20919:1;20898:19;20891:30;20778:157;21307:24;;;;;;;;:18;:24;;;;;;21305:26;;;;;;21375:22;;;;;;;;;21373:24;;-1:-1:-1;21373:24:6;;;14660:11;14635:23;14631:41;14618:63;2349:8;14618:63;21661:26;;;;:17;:26;;;;;:172;2349:8;21950:47;;21946:617;;22054:1;22044:11;;22022:19;22175:30;;;:17;:30;;;;;;22171:378;;22311:13;;22296:11;:28;22292:239;;22456:30;;;;:17;:30;;;;;:52;;;22292:239;22004:559;21946:617;22607:7;22603:2;22588:27;;22597:4;22588:27;;;;;;;;;;;;20037:2637;;;19918:2756;;;:::o;6446:101:5:-;1094:13:0;:11;:13::i;:::-;6520:10:5::1;:20:::0;6446:101::o;5849:74::-;1094:13:0;:11;:13::i;:::-;5901:8:5::1;:15:::0;;;::::1;::::0;::::1;::::0;;5849:74::o;6780:104::-;1094:13:0;:11;:13::i;:::-;1273:6;;6829:48:5::1;::::0;1273:6:0;;;;;6855:21:5::1;6829:48:::0;::::1;;;::::0;::::1;::::0;;;6855:21;1273:6:0;6829:48:5;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;6780:104::o:0;22765:179:6:-;22898:39;22915:4;22921:2;22925:7;22898:39;;;;;;;;;;;;:16;:39::i;:::-;22765:179;;;:::o;7066:104:5:-;1094:13:0;:11;:13::i;:::-;7142:21:5;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;7066:104:::0;:::o;11348:150:6:-;11420:7;11462:27;11481:7;11462:18;:27::i;1999:91:5:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7002:230:6:-;7074:7;7097:19;;;7093:60;;7125:28;;;;;;;;;;;;;;7093:60;-1:-1:-1;7170:25:6;;;;;;:18;:25;;;;;;1317:13;7170:55;;7002:230::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;5929:99:5:-;1094:13:0;:11;:13::i;:::-;5996:16:5::1;:25:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;5929:99::o;6246:104::-;1094:13:0;:11;:13::i;:::-;6319:10:5::1;:24:::0;6246:104::o;6356:84::-;1094:13:0;:11;:13::i;:::-;6419:5:5::1;:14:::0;6356:84::o;10165:102:6:-;10221:13;10253:7;10246:14;;;;;:::i;4614:307:5:-;1744:1:1;2325:7;;:19;;2317:63;;;;;;;10314:2:8;2317:63:1;;;10296:21:8;10353:2;10333:18;;;10326:30;10392:33;10372:18;;;10365:61;10443:18;;2317:63:1;;;;;;;;;1744:1;2455:7;:18;2827:13:5::1;::::0;4726:11;;2827:13:::1;;2809:15;:31;2805:58;;;2849:14;;;;;;;;;;;;;;2805:58;2877:10;2891:9;2877:23;2873:50;;2909:14;;;;;;;;;;;;;;2873:50;2983:11;;2970:10;;:24;;;;:::i;:::-;5675:1:::0;6121:12:6;5912:7;6105:13;2954:11:5;;6105:28:6;;:46;;2938:27:5::1;;;;:::i;:::-;2937:58;2933:84;;;3004:13;;;;;;;;;;;;;;2933:84;3045:11;;3031;:25;3027:55;;;3065:17;;;;;;;;;;;;;;3027:55;3140:11;::::0;3111:10:::1;7370:7:6::0;7397:25;;;:18;:25;;1452:2;7397:25;;;;;3125:11:5;;7397:50:6;1317:13;7396:82;3097:39:5::1;;;;:::i;:::-;3096:55;3092:88;;;3160:20;;;;;;;;;;;;;;3092:88;4757:16:::2;::::0;::::2;::::0;::::2;;;4753:41;;;4782:12;;;;;;;;;;;;;;4753:41;4829:11;4821:5;;:19;;;;:::i;:::-;4808:9;:33;4804:65;;;4850:19;;;;;;;;;;;;;;4804:65;4880:34;4890:10;4902:11;4880:9;:34::i;:::-;-1:-1:-1::0;;1701:1:1;2628:7;:22;4614:307:5:o;16850:303:6:-;16948:31;;;39008:10;16948:31;16944:61;;;16988:17;;;;;;;;;;;;;;16944:61;39008:10;17016:39;;;;:18;:39;;;;;;;;;:49;;;;;;;;;;;;:60;;;;;;;;;;;;;17091:55;;8886:41:8;;;17016:49:6;;39008:10;17091:55;;8859:18:8;17091:55:6;;;;;;;16850:303;;:::o;6673:101:5:-;1094:13:0;:11;:13::i;:::-;6745:11:5::1;:22:::0;6673:101::o;6553:114::-;1094:13:0;:11;:13::i;:::-;6630:20:5::1;:30:::0;6553:114::o;23525:388:6:-;23686:31;23699:4;23705:2;23709:7;23686:12;:31::i;:::-;23731:14;;;;:19;23727:180;;23769:56;23800:4;23806:2;23810:7;23819:5;23769:30;:56::i;:::-;23764:143;;23852:40;;;;;;;;;;;;;;23764:143;23525:388;;;;:::o;7267:324:5:-;7381:13;7415:17;7423:8;7415:7;:17::i;:::-;7410:48;;7441:17;;;;;;;;;;;;;;7410:48;7474:8;;;;;;;7469:32;;7491:10;:8;:10::i;7469:32::-;7542:10;:8;:10::i;:::-;7554:19;:8;:17;:19::i;:::-;7525:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;7511:73;;7267:324;;;:::o;3204:1404::-;1744:1:1;2325:7;;:19;;2317:63;;;;;;;10314:2:8;2317:63:1;;;10296:21:8;10353:2;10333:18;;;10326:30;10392:33;10372:18;;;10365:61;10443:18;;2317:63:1;10112:355:8;2317:63:1;1744:1;2455:7;:18;2827:13:5::1;::::0;3358:11;;2827:13:::1;;2809:15;:31;2805:58;;;2849:14;;;;;;;;;;;;;;2805:58;2877:10;2891:9;2877:23;2873:50;;2909:14;;;;;;;;;;;;;;2873:50;2983:11;;2970:10;;:24;;;;:::i;:::-;5675:1:::0;6121:12:6;5912:7;6105:13;2954:11:5;;6105:28:6;;:46;;2938:27:5::1;;;;:::i;:::-;2937:58;2933:84;;;3004:13;;;;;;;;;;;;;;2933:84;3045:11;;3031;:25;3027:55;;;3065:17;;;;;;;;;;;;;;3027:55;3140:11;::::0;3111:10:::1;7370:7:6::0;7397:25;;;:18;:25;;1452:2;7397:25;;;;;3125:11:5;;7397:50:6;1317:13;7396:82;3097:39:5::1;;;;:::i;:::-;3096:55;3092:88;;;3160:20;;;;;;;;;;;;;;3092:88;3407:1:::2;3393:11;:15;3389:45;;;3417:17;;;;;;;;;;;;;;3389:45;3448:13;::::0;::::2;;3444:38;;;3470:12;;;;;;;;;;;;;;3444:38;3518:28;::::0;7250:66:8;3535:10:5::2;7237:2:8::0;7233:15;7229:88;3518:28:5::2;::::0;::::2;7217:101:8::0;3493:12:5::2;::::0;7334::8;;3518:28:5::2;;;;;;;;;;;;3508:39;;;;;;3493:54;;3562:50;3581:12;;3562:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;3595:10:5::2;::::0;;-1:-1:-1;3607:4:5;;-1:-1:-1;3562:18:5::2;:50::i;:::-;3557:78;;3621:14;;;;;;;;;;;;;;3557:78;3678:20;::::0;3661:14:::2;::::0;:37:::2;3645:13;3735:25;3749:10;7397:25:6::0;;7370:7;7397:25;;;:18;:25;;1452:2;7397:25;;;;;:50;;1317:13;7396:82;;7309:176;3735:25:5::2;:30:::0;;-1:-1:-1;3816:8:5;3811:790:::2;;3844:19;3840:475;;;3901:1;3887:11;:15;3883:262;;;3952:15;3966:1;3952:11:::0;:15:::2;:::i;:::-;3943:5;;:25;;;;:::i;:::-;3930:9;:39;3926:71;;;3978:19;;;;;;;;;;;;;;3926:71;4019:40;4029:10;4042:15;4056:1;4042:11:::0;:15:::2;:::i;:::-;4019:9;:40::i;:::-;3811:790;;3883:262;4113:13;;;;;;;;;;;;;;3840:475;4208:11;4200:5;;:19;;;;:::i;:::-;4187:9;:33;4183:65;;;4229:19;;;;;;;;;;;;;;4183:65;4266:34;4276:10;4288:11;4266:9;:34::i;3811:790::-;4345:13;4361:19;:53;;4403:11;4361:53;;;4384:15;4398:1;4384:11:::0;:15:::2;:::i;:::-;4345:69;;4453:5;4445;;:13;;;;:::i;:::-;4432:9;:27;4428:59;;;4468:19;;;;;;;;;;;;;;4428:59;4501:34;4511:10;4523:11;4501:9;:34::i;:::-;4553:19;4549:41;;;4576:14;;4574:16;;;;;:::i;:::-;::::0;;;-1:-1:-1;4549:41:5::2;4331:270;3811:790;-1:-1:-1::0;;1701:1:1;2628:7;:22;-1:-1:-1;;;;;3204:1404:5:o;6034:93::-;1094:13:0;:11;:13::i;:::-;6098::5::1;:22:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;6034:93::o;5689:133::-;7397:25:6;;;5763:7:5;7397:25:6;;;:18;:25;;1452:2;7397:25;;;;1317:13;7397:50;;7396:82;5789:26:5;7309:176:6;5210:331:5;1094:13:0;:11;:13::i;:::-;5329:8:5::1;5371:154;5381:20;::::0;::::1;::::0;-1:-1:-1;5371:154:5::1;;;5441:10;;5452:1;5441:13;;;;;;;;;:::i;:::-;5426:11;:28:::0;;5441:13:::1;::::0;;::::1;::::0;;;::::1;;5426:28:::0;::::1;::::0;;;-1:-1:-1;5472:38:5::1;5482:9:::0;;:12:::1;::::0;::::1;::::0;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;5496:10;;5507:1;5496:13;;;;;;;;;:::i;:::-;;;;;;;5472:9;:38::i;:::-;5403:3;;5371:154;;;5319:222;5210:331:::0;;;;:::o;4975:183::-;1094:13:0;:11;:13::i;:::-;5080:11:5::1;:26:::0;;;;::::1;::::0;;5118:33:::1;5128:9:::0;5095:11;5118:9:::1;:33::i;2081:198:0:-:0;1094:13;:11;:13::i;:::-;2169:22:::1;::::0;::::1;2161:73;;;::::0;::::1;::::0;;9546:2:8;2161:73:0::1;::::0;::::1;9528:21:8::0;9585:2;9565:18;;;9558:30;9624:34;9604:18;;;9597:62;9695:8;9675:18;;;9668:36;9721:19;;2161:73:0::1;9344:402:8::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;1359:130::-:0;1273:6;;1422:23;1273:6;39008:10:6;1422:23:0;1414:68;;;;;;;9953:2:8;1414:68:0;;;9935:21:8;;;9972:18;;;9965:30;10031:34;10011:18;;;10004:62;10083:18;;1414:68:0;9751:356:8;17714:277:6;17779:4;17833:7;5675:1:5;17814:26:6;;:65;;;;;17866:13;;17856:7;:23;17814:65;:151;;;;-1:-1:-1;;17916:26:6;;;;:17;:26;;;;;;2075:8;17916:44;:49;;17714:277::o;12472:1249::-;12539:7;12573;;5675:1:5;12619:23:6;12615:1042;;12671:13;;12664:4;:20;12660:997;;;12708:14;12725:23;;;:17;:23;;;;;;2075:8;12812:24;;12808:831;;13467:111;13474:11;13467:111;;-1:-1:-1;13544:6:6;;13526:25;;;;:17;:25;;;;;;13467:111;;;13610:6;12472:1249;-1:-1:-1;;;12472:1249:6:o;12808:831::-;12686:971;12660:997;13683:31;;;;;;;;;;;;;;2433:187:0;2525:6;;;;2541:17;;;;;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;32908:110:6:-;32984:27;32994:2;32998:8;32984:27;;;;;;;;;;;;:9;:27::i;25939:697::-;26117:88;;;;;26097:4;;26117:45;;;;;;:88;;39008:10;;26184:4;;26190:7;;26199:5;;26117:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26117:88:6;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26113:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26395:13:6;;26391:229;;26440:40;;;;;;;;;;;;;;26391:229;26580:6;26574:13;26565:6;26561:2;26557:15;26550:38;26113:517;26273:64;;26283:54;26273:64;;-1:-1:-1;26113:517:6;25939:697;;;;;;:::o;6916:144:5:-;7010:13;7046:7;7039:14;;;;;:::i;392:703:3:-;448:13;665:10;661:51;;-1:-1:-1;;691:10:3;;;;;;;;;;;;;;;;;;392:703::o;661:51::-;736:5;721:12;775:75;782:9;;775:75;;807:8;;;;:::i;:::-;;-1:-1:-1;829:10:3;;-1:-1:-1;837:2:3;829:10;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;881:17:3;;859:39;;908:150;915:10;;908:150;;941:11;951:1;941:11;;:::i;:::-;;-1:-1:-1;1009:10:3;1017:2;1009:5;:10;:::i;:::-;996:24;;:2;:24;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1036:11:3;1045:2;1036:11;;:::i;:::-;;;908:150;;1153:184:4;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;;1153:184;-1:-1:-1;;;;1153:184:4:o;32160:669:6:-;32286:19;32292:2;32296:8;32286:5;:19::i;:::-;32344:14;;;;:19;32340:473;;32383:11;32397:13;32444:14;;;32476:229;32506:62;32545:1;32549:2;32553:7;;;;;;32562:5;32506:30;:62::i;:::-;32501:165;;32603:40;;;;;;;;;;;;;;32501:165;32700:3;32692:5;:11;32476:229;;32785:3;32768:13;;:20;32764:34;;32790:8;;;1991:290:4;2074:7;2116:4;2074:7;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;;;:::i;:::-;;;;;;;2202:9;:33::i;:::-;2187:48;-1:-1:-1;2168:3:4;;;;:::i;:::-;;;;2130:116;;;-1:-1:-1;2262:12:4;1991:290;-1:-1:-1;;;1991:290:4:o;27082:2396:6:-;27154:20;27177:13;27204;27200:44;;27226:18;;;;;;;;;;;;;;27200:44;27719:22;;;;;;;:18;:22;;;;1452:2;27719:22;;;:71;;27757:32;27745:45;;27719:71;;;28026:31;;;:17;:31;;;;;-1:-1:-1;15080:15:6;;15054:24;15050:46;14660:11;14635:23;14631:41;14628:52;14618:63;;28026:170;;28255:23;;;;28026:31;;27719:22;;28744:25;27719:22;;28600:328;29005:1;28991:12;28987:20;28946:339;29045:3;29036:7;29033:16;28946:339;;29259:7;29249:8;29246:1;29219:25;29216:1;29213;29208:59;29097:1;29084:15;28946:339;;;-1:-1:-1;29316:13:6;29312:45;;29338:19;;;;;;;;;;;;;;29312:45;29372:13;:19;-1:-1:-1;22765:179:6;;;:::o;8054:147:4:-;8117:7;8147:1;8143;:5;:51;;8275:13;8366:15;;;8401:4;8394:15;;;8447:4;8431:21;;8143:51;;;-1:-1:-1;8275:13:4;8366:15;;;8401:4;8394:15;8447:4;8431:21;;;8054:147::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:690:8;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;289:2;283:9;355:2;343:15;;194:66;339:24;;;365:2;335:33;331:42;319:55;;;389:18;;;409:22;;;386:46;383:72;;;435:18;;:::i;:::-;475:10;471:2;464:22;504:6;495:15;;534:6;526;519:22;574:3;565:6;560:3;556:16;553:25;550:45;;;591:1;588;581:12;550:45;641:6;636:3;629:4;621:6;617:17;604:44;696:1;689:4;680:6;672;668:19;664:30;657:41;;;;14:690;;;;;:::o;709:196::-;777:20;;837:42;826:54;;816:65;;806:93;;895:1;892;885:12;806:93;709:196;;;:::o;910:367::-;973:8;983:6;1037:3;1030:4;1022:6;1018:17;1014:27;1004:55;;1055:1;1052;1045:12;1004:55;-1:-1:-1;1078:20:8;;1121:18;1110:30;;1107:50;;;1153:1;1150;1143:12;1107:50;1190:4;1182:6;1178:17;1166:29;;1250:3;1243:4;1233:6;1230:1;1226:14;1218:6;1214:27;1210:38;1207:47;1204:67;;;1267:1;1264;1257:12;1204:67;910:367;;;;;:::o;1282:160::-;1347:20;;1403:13;;1396:21;1386:32;;1376:60;;1432:1;1429;1422:12;1447:186;1506:6;1559:2;1547:9;1538:7;1534:23;1530:32;1527:52;;;1575:1;1572;1565:12;1527:52;1598:29;1617:9;1598:29;:::i;1638:260::-;1706:6;1714;1767:2;1755:9;1746:7;1742:23;1738:32;1735:52;;;1783:1;1780;1773:12;1735:52;1806:29;1825:9;1806:29;:::i;:::-;1796:39;;1854:38;1888:2;1877:9;1873:18;1854:38;:::i;:::-;1844:48;;1638:260;;;;;:::o;1903:328::-;1980:6;1988;1996;2049:2;2037:9;2028:7;2024:23;2020:32;2017:52;;;2065:1;2062;2055:12;2017:52;2088:29;2107:9;2088:29;:::i;:::-;2078:39;;2136:38;2170:2;2159:9;2155:18;2136:38;:::i;:::-;2126:48;;2221:2;2210:9;2206:18;2193:32;2183:42;;1903:328;;;;;:::o;2236:666::-;2331:6;2339;2347;2355;2408:3;2396:9;2387:7;2383:23;2379:33;2376:53;;;2425:1;2422;2415:12;2376:53;2448:29;2467:9;2448:29;:::i;:::-;2438:39;;2496:38;2530:2;2519:9;2515:18;2496:38;:::i;:::-;2486:48;;2581:2;2570:9;2566:18;2553:32;2543:42;;2636:2;2625:9;2621:18;2608:32;2663:18;2655:6;2652:30;2649:50;;;2695:1;2692;2685:12;2649:50;2718:22;;2771:4;2763:13;;2759:27;-1:-1:-1;2749:55:8;;2800:1;2797;2790:12;2749:55;2823:73;2888:7;2883:2;2870:16;2865:2;2861;2857:11;2823:73;:::i;:::-;2813:83;;;2236:666;;;;;;;:::o;2907:254::-;2972:6;2980;3033:2;3021:9;3012:7;3008:23;3004:32;3001:52;;;3049:1;3046;3039:12;3001:52;3072:29;3091:9;3072:29;:::i;:::-;3062:39;;3120:35;3151:2;3140:9;3136:18;3120:35;:::i;3166:254::-;3234:6;3242;3295:2;3283:9;3274:7;3270:23;3266:32;3263:52;;;3311:1;3308;3301:12;3263:52;3334:29;3353:9;3334:29;:::i;:::-;3324:39;3410:2;3395:18;;;;3382:32;;-1:-1:-1;;;3166:254:8:o;3425:773::-;3547:6;3555;3563;3571;3624:2;3612:9;3603:7;3599:23;3595:32;3592:52;;;3640:1;3637;3630:12;3592:52;3680:9;3667:23;3709:18;3750:2;3742:6;3739:14;3736:34;;;3766:1;3763;3756:12;3736:34;3805:70;3867:7;3858:6;3847:9;3843:22;3805:70;:::i;:::-;3894:8;;-1:-1:-1;3779:96:8;-1:-1:-1;3982:2:8;3967:18;;3954:32;;-1:-1:-1;3998:16:8;;;3995:36;;;4027:1;4024;4017:12;3995:36;;4066:72;4130:7;4119:8;4108:9;4104:24;4066:72;:::i;:::-;3425:773;;;;-1:-1:-1;4157:8:8;-1:-1:-1;;;;3425:773:8:o;4203:180::-;4259:6;4312:2;4300:9;4291:7;4287:23;4283:32;4280:52;;;4328:1;4325;4318:12;4280:52;4351:26;4367:9;4351:26;:::i;4388:180::-;4447:6;4500:2;4488:9;4479:7;4475:23;4471:32;4468:52;;;4516:1;4513;4506:12;4468:52;-1:-1:-1;4539:23:8;;4388:180;-1:-1:-1;4388:180:8:o;4573:245::-;4631:6;4684:2;4672:9;4663:7;4659:23;4655:32;4652:52;;;4700:1;4697;4690:12;4652:52;4739:9;4726:23;4758:30;4782:5;4758:30;:::i;4823:249::-;4892:6;4945:2;4933:9;4924:7;4920:23;4916:32;4913:52;;;4961:1;4958;4951:12;4913:52;4993:9;4987:16;5012:30;5036:5;5012:30;:::i;5077:450::-;5146:6;5199:2;5187:9;5178:7;5174:23;5170:32;5167:52;;;5215:1;5212;5205:12;5167:52;5255:9;5242:23;5288:18;5280:6;5277:30;5274:50;;;5320:1;5317;5310:12;5274:50;5343:22;;5396:4;5388:13;;5384:27;-1:-1:-1;5374:55:8;;5425:1;5422;5415:12;5374:55;5448:73;5513:7;5508:2;5495:16;5490:2;5486;5482:11;5448:73;:::i;5717:254::-;5785:6;5793;5846:2;5834:9;5825:7;5821:23;5817:32;5814:52;;;5862:1;5859;5852:12;5814:52;5898:9;5885:23;5875:33;;5927:38;5961:2;5950:9;5946:18;5927:38;:::i;5976:505::-;6071:6;6079;6087;6140:2;6128:9;6119:7;6115:23;6111:32;6108:52;;;6156:1;6153;6146:12;6108:52;6192:9;6179:23;6169:33;;6253:2;6242:9;6238:18;6225:32;6280:18;6272:6;6269:30;6266:50;;;6312:1;6309;6302:12;6266:50;6351:70;6413:7;6404:6;6393:9;6389:22;6351:70;:::i;:::-;5976:505;;6440:8;;-1:-1:-1;6325:96:8;;-1:-1:-1;;;;5976:505:8:o;6486:276::-;6544:6;6597:2;6585:9;6576:7;6572:23;6568:32;6565:52;;;6613:1;6610;6603:12;6565:52;6652:9;6639:23;6702:10;6695:5;6691:22;6684:5;6681:33;6671:61;;6728:1;6725;6718:12;6767:316;6808:3;6846:5;6840:12;6873:6;6868:3;6861:19;6889:63;6945:6;6938:4;6933:3;6929:14;6922:4;6915:5;6911:16;6889:63;:::i;:::-;6997:2;6985:15;7002:66;6981:88;6972:98;;;;7072:4;6968:109;;6767:316;-1:-1:-1;;6767:316:8:o;7357:637::-;7637:3;7675:6;7669:13;7691:53;7737:6;7732:3;7725:4;7717:6;7713:17;7691:53;:::i;:::-;7807:13;;7766:16;;;;7829:57;7807:13;7766:16;7863:4;7851:17;;7829:57;:::i;:::-;7951:7;7908:20;;7937:22;;;7986:1;7975:13;;7357:637;-1:-1:-1;;;;7357:637:8:o;8230:511::-;8424:4;8453:42;8534:2;8526:6;8522:15;8511:9;8504:34;8586:2;8578:6;8574:15;8569:2;8558:9;8554:18;8547:43;;8626:6;8621:2;8610:9;8606:18;8599:34;8669:3;8664:2;8653:9;8649:18;8642:31;8690:45;8730:3;8719:9;8715:19;8707:6;8690:45;:::i;:::-;8682:53;8230:511;-1:-1:-1;;;;;;8230:511:8:o;9120:219::-;9269:2;9258:9;9251:21;9232:4;9289:44;9329:2;9318:9;9314:18;9306:6;9289:44;:::i;10654:128::-;10694:3;10725:1;10721:6;10718:1;10715:13;10712:39;;;10731:18;;:::i;:::-;-1:-1:-1;10767:9:8;;10654:128::o;10787:120::-;10827:1;10853;10843:35;;10858:18;;:::i;:::-;-1:-1:-1;10892:9:8;;10787:120::o;10912:228::-;10952:7;11078:1;11010:66;11006:74;11003:1;11000:81;10995:1;10988:9;10981:17;10977:105;10974:131;;;11085:18;;:::i;:::-;-1:-1:-1;11125:9:8;;10912:228::o;11145:125::-;11185:4;11213:1;11210;11207:8;11204:34;;;11218:18;;:::i;:::-;-1:-1:-1;11255:9:8;;11145:125::o;11275:258::-;11347:1;11357:113;11371:6;11368:1;11365:13;11357:113;;;11447:11;;;11441:18;11428:11;;;11421:39;11393:2;11386:10;11357:113;;;11488:6;11485:1;11482:13;11479:48;;;-1:-1:-1;;11523:1:8;11505:16;;11498:27;11275:258::o;11538:437::-;11617:1;11613:12;;;;11660;;;11681:61;;11735:4;11727:6;11723:17;11713:27;;11681:61;11788:2;11780:6;11777:14;11757:18;11754:38;11751:218;;;11825:77;11822:1;11815:88;11926:4;11923:1;11916:15;11954:4;11951:1;11944:15;11751:218;;11538:437;;;:::o;11980:195::-;12019:3;12050:66;12043:5;12040:77;12037:103;;;12120:18;;:::i;:::-;-1:-1:-1;12167:1:8;12156:13;;11980:195::o;12180:112::-;12212:1;12238;12228:35;;12243:18;;:::i;:::-;-1:-1:-1;12277:9:8;;12180:112::o;12297:184::-;12349:77;12346:1;12339:88;12446:4;12443:1;12436:15;12470:4;12467:1;12460:15;12486:184;12538:77;12535:1;12528:88;12635:4;12632:1;12625:15;12659:4;12656:1;12649:15;12675:184;12727:77;12724:1;12717:88;12824:4;12821:1;12814:15;12848:4;12845:1;12838:15;12864:184;12916:77;12913:1;12906:88;13013:4;13010:1;13003:15;13037:4;13034:1;13027:15;13053:177;13138:66;13131:5;13127:78;13120:5;13117:89;13107:117;;13220:1;13217;13210:12
Swarm Source
ipfs://c9c588c2389ab7ae7ab1c784c767cb6c7443f35fff08f8695ccd426bbcec1451
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.