ERC-721
Overview
Max Total Supply
444 ABYSS
Holders
443
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 ABYSSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AbyssAccess
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-29 */ // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // 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) } } } // File: @openzeppelin/contracts/utils/Strings.sol // 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); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // 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(); /** * 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 payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @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 payable; /** * @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 payable; /** * @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); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @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 { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). 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 payable 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 { _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].value`. 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 payable 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 payable 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 payable 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. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. 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`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. 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 str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/AbyssAccess.sol pragma solidity 0.8.15; contract AbyssAccess is ERC721A, Ownable { using Strings for uint256; bool public private_sale_running = false; bool public public_sale_running = false; uint public MAX_SUPPLY = 444; bytes32 public merkle_root; constructor () ERC721A("Abyss Access", "ABYSS") { } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { // TODO : UPDATE return string(abi.encodePacked("https://projectabyss.io/metadata/", tokenId.toString(), ".json")); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function getNumClaimed(address _user) public view returns(uint64) { uint64 aux_val = _getAux(_user); return (aux_val & 1) + ((aux_val >> 1) & 1); } function isWhitelisted(address _user, bytes32 [] calldata _merkleProof) public view returns(bool) { bytes32 leaf = keccak256(abi.encodePacked(_user)); return MerkleProof.verify(_merkleProof, merkle_root, leaf); } function whitelistMint(bytes32 [] calldata _merkleProof) external { require(tx.origin == msg.sender); require(private_sale_running, "Private sale is not running"); require(totalSupply() < MAX_SUPPLY, "Not enough tokens left to mint"); require(isWhitelisted(msg.sender, _merkleProof), "Invalid proof"); uint64 num_claimed = _getAux(msg.sender); require(num_claimed & 1 == 0, "Can't claim more than 1 for whitelist"); _setAux(msg.sender, num_claimed | 1); _safeMint(msg.sender, 1); } function publicMint() external { require(tx.origin == msg.sender); require(public_sale_running, "Public sale is not running"); require(totalSupply() < MAX_SUPPLY, "Not enough tokens left to mint"); uint64 num_claimed = _getAux(msg.sender); require(num_claimed & 2 == 0, "Can't claim more than 1 for public sale"); _setAux(msg.sender, num_claimed | 2); _safeMint(msg.sender, 1); } function burn(uint _token_id) external { _burn(_token_id, true); } function togglePrivateSale() external onlyOwner { private_sale_running = !private_sale_running; } function togglePublicSale() external onlyOwner { public_sale_running = !public_sale_running; } function adminMint(address _destination, uint _quantity) external onlyOwner { require(totalSupply() + _quantity <= MAX_SUPPLY, "Not enough tokens left to mint"); _safeMint(_destination, _quantity); } function updateWhitelistMerkleRoot(bytes32 _new_root) external onlyOwner { merkle_root = _new_root; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_destination","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_token_id","type":"uint256"}],"name":"burn","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":"_user","type":"address"}],"name":"getNumClaimed","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkle_root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"private_sale_running","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"public_sale_running","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","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":"togglePrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_new_root","type":"bytes32"}],"name":"updateWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600860146101000a81548160ff0219169083151502179055506000600860156101000a81548160ff0219169083151502179055506101bc6009553480156200004d57600080fd5b506040518060400160405280600c81526020017f41627973732041636365737300000000000000000000000000000000000000008152506040518060400160405280600581526020017f41425953530000000000000000000000000000000000000000000000000000008152508160029081620000cb91906200046d565b508060039081620000dd91906200046d565b50620000ee6200011c60201b60201c565b6000819055505050620001166200010a6200012560201b60201c565b6200012d60201b60201c565b62000554565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200027557607f821691505b6020821081036200028b576200028a6200022d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002f57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002b6565b620003018683620002b6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200034e62000348620003428462000319565b62000323565b62000319565b9050919050565b6000819050919050565b6200036a836200032d565b62000382620003798262000355565b848454620002c3565b825550505050565b600090565b620003996200038a565b620003a68184846200035f565b505050565b5b81811015620003ce57620003c26000826200038f565b600181019050620003ac565b5050565b601f8211156200041d57620003e78162000291565b620003f284620002a6565b8101602085101562000402578190505b6200041a6200041185620002a6565b830182620003ab565b50505b505050565b600082821c905092915050565b6000620004426000198460080262000422565b1980831691505092915050565b60006200045d83836200042f565b9150826002028217905092915050565b6200047882620001f3565b67ffffffffffffffff811115620004945762000493620001fe565b5b620004a082546200025c565b620004ad828285620003d2565b600060209050601f831160018114620004e55760008415620004d0578287015190505b620004dc85826200044f565b8655506200054c565b601f198416620004f58662000291565b60005b828110156200051f57848901518255600182019150602085019450602081019050620004f8565b868310156200053f57848901516200053b601f8916826200042f565b8355505b6001600288020188555050505b505050505050565b61333880620005646000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063ca5d9cda11610095578063e6f6ef1e11610064578063e6f6ef1e14610618578063e985e9c514610643578063f2fde38b14610680578063fd5e8efe146106a9576101cd565b8063ca5d9cda14610584578063dfe5dd68146105c1578063e222c7f9146105d8578063e58306f9146105ef576101cd565b806395d89b41116100d157806395d89b41146104d7578063a22cb46514610502578063b88d4fde1461052b578063c87b56dd14610547576101cd565b8063715018a61461046a5780638da5cb5b146104815780639168e23e146104ac576101cd565b806332cb6b0c1161016f5780635a23dd991161013e5780635a23dd991461038a5780636352211e146103c75780636957637b1461040457806370a082311461042d576101cd565b806332cb6b0c146102f1578063372f657c1461031c57806342842e0e1461034557806342966c6814610361576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd1461029357806323b872dd146102be57806326092b83146102da576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612335565b6106d4565b604051610206919061237d565b60405180910390f35b34801561021b57600080fd5b50610224610766565b6040516102319190612431565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612489565b6107f8565b60405161026e91906124f7565b60405180910390f35b610291600480360381019061028c919061253e565b610877565b005b34801561029f57600080fd5b506102a86109bb565b6040516102b5919061258d565b60405180910390f35b6102d860048036038101906102d391906125a8565b6109d2565b005b3480156102e657600080fd5b506102ef610cf4565b005b3480156102fd57600080fd5b50610306610e3e565b604051610313919061258d565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190612660565b610e44565b005b61035f600480360381019061035a91906125a8565b610fda565b005b34801561036d57600080fd5b5061038860048036038101906103839190612489565b610ffa565b005b34801561039657600080fd5b506103b160048036038101906103ac91906126ad565b611008565b6040516103be919061237d565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e99190612489565b61108c565b6040516103fb91906124f7565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190612743565b61109e565b005b34801561043957600080fd5b50610454600480360381019061044f9190612770565b6110b0565b604051610461919061258d565b60405180910390f35b34801561047657600080fd5b5061047f611168565b005b34801561048d57600080fd5b5061049661117c565b6040516104a391906124f7565b60405180910390f35b3480156104b857600080fd5b506104c16111a6565b6040516104ce919061237d565b60405180910390f35b3480156104e357600080fd5b506104ec6111b9565b6040516104f99190612431565b60405180910390f35b34801561050e57600080fd5b50610529600480360381019061052491906127c9565b61124b565b005b61054560048036038101906105409190612939565b611356565b005b34801561055357600080fd5b5061056e60048036038101906105699190612489565b6113c9565b60405161057b9190612431565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190612770565b6113fa565b6040516105b891906129df565b60405180910390f35b3480156105cd57600080fd5b506105d661142f565b005b3480156105e457600080fd5b506105ed611463565b005b3480156105fb57600080fd5b506106166004803603810190610611919061253e565b611497565b005b34801561062457600080fd5b5061062d611504565b60405161063a919061237d565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906129fa565b611517565b604051610677919061237d565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a29190612770565b6115ab565b005b3480156106b557600080fd5b506106be61162e565b6040516106cb9190612a49565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077590612a93565b80601f01602080910402602001604051908101604052809291908181526020018280546107a190612a93565b80156107ee5780601f106107c3576101008083540402835291602001916107ee565b820191906000526020600020905b8154815290600101906020018083116107d157829003601f168201915b5050505050905090565b600061080382611634565b610839576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108828261108c565b90508073ffffffffffffffffffffffffffffffffffffffff166108a3611693565b73ffffffffffffffffffffffffffffffffffffffff1614610906576108cf816108ca611693565b611517565b610905576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109c561169b565b6001546000540303905090565b60006109dd826116a4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a44576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a5084611770565b91509150610a668187610a61611693565b611797565b610ab257610a7b86610a76611693565b611517565b610ab1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b18576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2586868660016117db565b8015610b3057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bfe85610bda8888876117e1565b7c020000000000000000000000000000000000000000000000000000000017611809565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c845760006001850190506000600460008381526020019081526020016000205403610c82576000548114610c81578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cec8686866001611834565b505050505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d2c57600080fd5b600860159054906101000a900460ff16610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290612b10565b60405180910390fd5b600954610d866109bb565b10610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612b7c565b60405180910390fd5b6000610dd13361183a565b905060006002821667ffffffffffffffff1614610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90612c0e565b60405180910390fd5b610e303360028317611887565b610e3b33600161193d565b50565b60095481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e7c57600080fd5b600860149054906101000a900460ff16610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec290612c7a565b60405180910390fd5b600954610ed66109bb565b10610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90612b7c565b60405180910390fd5b610f21338383611008565b610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790612ce6565b60405180910390fd5b6000610f6b3361183a565b905060006001821667ffffffffffffffff1614610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490612d78565b60405180910390fd5b610fca3360018317611887565b610fd533600161193d565b505050565b610ff583838360405180602001604052806000815250611356565b505050565b61100581600161195b565b50565b6000808460405160200161101c9190612de0565b604051602081830303815290604052805190602001209050611082848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483611bad565b9150509392505050565b6000611097826116a4565b9050919050565b6110a6611bc4565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611117576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611170611bc4565b61117a6000611c42565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860149054906101000a900460ff1681565b6060600380546111c890612a93565b80601f01602080910402602001604051908101604052809291908181526020018280546111f490612a93565b80156112415780601f1061121657610100808354040283529160200191611241565b820191906000526020600020905b81548152906001019060200180831161122457829003601f168201915b5050505050905090565b8060076000611258611693565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611305611693565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161134a919061237d565b60405180910390a35050565b6113618484846109d2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113c35761138c84848484611d08565b6113c2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113d482611e58565b6040516020016113e49190612ef5565b6040516020818303038152906040529050919050565b6000806114068361183a565b90506001808267ffffffffffffffff16901c16600182166114279190612f51565b915050919050565b611437611bc4565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b61146b611bc4565b600860159054906101000a900460ff1615600860156101000a81548160ff021916908315150217905550565b61149f611bc4565b600954816114ab6109bb565b6114b59190612f8f565b11156114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed90612b7c565b60405180910390fd5b611500828261193d565b5050565b600860159054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b3611bc4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990613057565b60405180910390fd5b61162b81611c42565b50565b600a5481565b60008161163f61169b565b1115801561164e575060005482105b801561168c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806116b361169b565b11611739576000548110156117385760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611736575b6000810361172c576004600083600190039350838152602001908152602001600020549050611702565b809250505061176b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117f8868684611fb8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff831617915081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b611957828260405180602001604052806000815250611fc1565b5050565b6000611966836116a4565b9050600081905060008061197986611770565b9150915084156119e2576119958184611990611693565b611797565b6119e1576119aa836119a5611693565b611517565b6119e0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6119f08360008860016117db565b80156119fb57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611aa383611a60856000886117e1565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611809565b600460008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851603611b295760006001870190506000600460008381526020019081526020016000205403611b27576000548114611b26578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b93836000886001611834565b600160008154809291906001019190505550505050505050565b600082611bba858461205e565b1490509392505050565b611bcc6120b4565b73ffffffffffffffffffffffffffffffffffffffff16611bea61117c565b73ffffffffffffffffffffffffffffffffffffffff1614611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c37906130c3565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d2e611693565b8786866040518563ffffffff1660e01b8152600401611d509493929190613138565b6020604051808303816000875af1925050508015611d8c57506040513d601f19601f82011682018060405250810190611d899190613199565b60015b611e05573d8060008114611dbc576040519150601f19603f3d011682016040523d82523d6000602084013e611dc1565b606091505b506000815103611dfd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611e9f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fb3565b600082905060005b60008214611ed1578080611eba906131c6565b915050600a82611eca919061323d565b9150611ea7565b60008167ffffffffffffffff811115611eed57611eec61280e565b5b6040519080825280601f01601f191660200182016040528015611f1f5781602001600182028036833780820191505090505b5090505b60008514611fac57600182611f38919061326e565b9150600a85611f4791906132a2565b6030611f539190612f8f565b60f81b818381518110611f6957611f686132d3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fa5919061323d565b9450611f23565b8093505050505b919050565b60009392505050565b611fcb83836120bc565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461205957600080549050600083820390505b61200b6000868380600101945086611d08565b612041576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ff857816000541461205657600080fd5b50505b505050565b60008082905060005b84518110156120a95761209482868381518110612087576120866132d3565b5b6020026020010151612277565b915080806120a1906131c6565b915050612067565b508091505092915050565b600033905090565b600080549050600082036120fc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61210960008483856117db565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121808361217160008660006117e1565b61217a856122a2565b17611809565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461222157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506121e6565b506000820361225c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122726000848385611834565b505050565b600081831061228f5761228a82846122b2565b61229a565b61229983836122b2565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612312816122dd565b811461231d57600080fd5b50565b60008135905061232f81612309565b92915050565b60006020828403121561234b5761234a6122d3565b5b600061235984828501612320565b91505092915050565b60008115159050919050565b61237781612362565b82525050565b6000602082019050612392600083018461236e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123d25780820151818401526020810190506123b7565b838111156123e1576000848401525b50505050565b6000601f19601f8301169050919050565b600061240382612398565b61240d81856123a3565b935061241d8185602086016123b4565b612426816123e7565b840191505092915050565b6000602082019050818103600083015261244b81846123f8565b905092915050565b6000819050919050565b61246681612453565b811461247157600080fd5b50565b6000813590506124838161245d565b92915050565b60006020828403121561249f5761249e6122d3565b5b60006124ad84828501612474565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124e1826124b6565b9050919050565b6124f1816124d6565b82525050565b600060208201905061250c60008301846124e8565b92915050565b61251b816124d6565b811461252657600080fd5b50565b60008135905061253881612512565b92915050565b60008060408385031215612555576125546122d3565b5b600061256385828601612529565b925050602061257485828601612474565b9150509250929050565b61258781612453565b82525050565b60006020820190506125a2600083018461257e565b92915050565b6000806000606084860312156125c1576125c06122d3565b5b60006125cf86828701612529565b93505060206125e086828701612529565b92505060406125f186828701612474565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126126205761261f6125fb565b5b8235905067ffffffffffffffff81111561263d5761263c612600565b5b60208301915083602082028301111561265957612658612605565b5b9250929050565b60008060208385031215612677576126766122d3565b5b600083013567ffffffffffffffff811115612695576126946122d8565b5b6126a18582860161260a565b92509250509250929050565b6000806000604084860312156126c6576126c56122d3565b5b60006126d486828701612529565b935050602084013567ffffffffffffffff8111156126f5576126f46122d8565b5b6127018682870161260a565b92509250509250925092565b6000819050919050565b6127208161270d565b811461272b57600080fd5b50565b60008135905061273d81612717565b92915050565b600060208284031215612759576127586122d3565b5b60006127678482850161272e565b91505092915050565b600060208284031215612786576127856122d3565b5b600061279484828501612529565b91505092915050565b6127a681612362565b81146127b157600080fd5b50565b6000813590506127c38161279d565b92915050565b600080604083850312156127e0576127df6122d3565b5b60006127ee85828601612529565b92505060206127ff858286016127b4565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612846826123e7565b810181811067ffffffffffffffff821117156128655761286461280e565b5b80604052505050565b60006128786122c9565b9050612884828261283d565b919050565b600067ffffffffffffffff8211156128a4576128a361280e565b5b6128ad826123e7565b9050602081019050919050565b82818337600083830152505050565b60006128dc6128d784612889565b61286e565b9050828152602081018484840111156128f8576128f7612809565b5b6129038482856128ba565b509392505050565b600082601f8301126129205761291f6125fb565b5b81356129308482602086016128c9565b91505092915050565b60008060008060808587031215612953576129526122d3565b5b600061296187828801612529565b945050602061297287828801612529565b935050604061298387828801612474565b925050606085013567ffffffffffffffff8111156129a4576129a36122d8565b5b6129b08782880161290b565b91505092959194509250565b600067ffffffffffffffff82169050919050565b6129d9816129bc565b82525050565b60006020820190506129f460008301846129d0565b92915050565b60008060408385031215612a1157612a106122d3565b5b6000612a1f85828601612529565b9250506020612a3085828601612529565b9150509250929050565b612a438161270d565b82525050565b6000602082019050612a5e6000830184612a3a565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612aab57607f821691505b602082108103612abe57612abd612a64565b5b50919050565b7f5075626c69632073616c65206973206e6f742072756e6e696e67000000000000600082015250565b6000612afa601a836123a3565b9150612b0582612ac4565b602082019050919050565b60006020820190508181036000830152612b2981612aed565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667420746f206d696e740000600082015250565b6000612b66601e836123a3565b9150612b7182612b30565b602082019050919050565b60006020820190508181036000830152612b9581612b59565b9050919050565b7f43616e277420636c61696d206d6f7265207468616e203120666f72207075626c60008201527f69632073616c6500000000000000000000000000000000000000000000000000602082015250565b6000612bf86027836123a3565b9150612c0382612b9c565b604082019050919050565b60006020820190508181036000830152612c2781612beb565b9050919050565b7f507269766174652073616c65206973206e6f742072756e6e696e670000000000600082015250565b6000612c64601b836123a3565b9150612c6f82612c2e565b602082019050919050565b60006020820190508181036000830152612c9381612c57565b9050919050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000612cd0600d836123a3565b9150612cdb82612c9a565b602082019050919050565b60006020820190508181036000830152612cff81612cc3565b9050919050565b7f43616e277420636c61696d206d6f7265207468616e203120666f72207768697460008201527f656c697374000000000000000000000000000000000000000000000000000000602082015250565b6000612d626025836123a3565b9150612d6d82612d06565b604082019050919050565b60006020820190508181036000830152612d9181612d55565b9050919050565b60008160601b9050919050565b6000612db082612d98565b9050919050565b6000612dc282612da5565b9050919050565b612dda612dd5826124d6565b612db7565b82525050565b6000612dec8284612dc9565b60148201915081905092915050565b600081905092915050565b7f68747470733a2f2f70726f6a65637461627973732e696f2f6d6574616461746160008201527f2f00000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e62602183612dfb565b9150612e6d82612e06565b602182019050919050565b6000612e8382612398565b612e8d8185612dfb565b9350612e9d8185602086016123b4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612edf600583612dfb565b9150612eea82612ea9565b600582019050919050565b6000612f0082612e55565b9150612f0c8284612e78565b9150612f1782612ed2565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f5c826129bc565b9150612f67836129bc565b92508267ffffffffffffffff03821115612f8457612f83612f22565b5b828201905092915050565b6000612f9a82612453565b9150612fa583612453565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fda57612fd9612f22565b5b828201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130416026836123a3565b915061304c82612fe5565b604082019050919050565b6000602082019050818103600083015261307081613034565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130ad6020836123a3565b91506130b882613077565b602082019050919050565b600060208201905081810360008301526130dc816130a0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061310a826130e3565b61311481856130ee565b93506131248185602086016123b4565b61312d816123e7565b840191505092915050565b600060808201905061314d60008301876124e8565b61315a60208301866124e8565b613167604083018561257e565b818103606083015261317981846130ff565b905095945050505050565b60008151905061319381612309565b92915050565b6000602082840312156131af576131ae6122d3565b5b60006131bd84828501613184565b91505092915050565b60006131d182612453565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361320357613202612f22565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061324882612453565b915061325383612453565b9250826132635761326261320e565b5b828204905092915050565b600061327982612453565b915061328483612453565b92508282101561329757613296612f22565b5b828203905092915050565b60006132ad82612453565b91506132b883612453565b9250826132c8576132c761320e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209dd57ce079202c565cdd75abc7c58f909e6c4dc9872c9ec0bfd2021a21734baa64736f6c634300080f0033
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063ca5d9cda11610095578063e6f6ef1e11610064578063e6f6ef1e14610618578063e985e9c514610643578063f2fde38b14610680578063fd5e8efe146106a9576101cd565b8063ca5d9cda14610584578063dfe5dd68146105c1578063e222c7f9146105d8578063e58306f9146105ef576101cd565b806395d89b41116100d157806395d89b41146104d7578063a22cb46514610502578063b88d4fde1461052b578063c87b56dd14610547576101cd565b8063715018a61461046a5780638da5cb5b146104815780639168e23e146104ac576101cd565b806332cb6b0c1161016f5780635a23dd991161013e5780635a23dd991461038a5780636352211e146103c75780636957637b1461040457806370a082311461042d576101cd565b806332cb6b0c146102f1578063372f657c1461031c57806342842e0e1461034557806342966c6814610361576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd1461029357806323b872dd146102be57806326092b83146102da576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612335565b6106d4565b604051610206919061237d565b60405180910390f35b34801561021b57600080fd5b50610224610766565b6040516102319190612431565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612489565b6107f8565b60405161026e91906124f7565b60405180910390f35b610291600480360381019061028c919061253e565b610877565b005b34801561029f57600080fd5b506102a86109bb565b6040516102b5919061258d565b60405180910390f35b6102d860048036038101906102d391906125a8565b6109d2565b005b3480156102e657600080fd5b506102ef610cf4565b005b3480156102fd57600080fd5b50610306610e3e565b604051610313919061258d565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190612660565b610e44565b005b61035f600480360381019061035a91906125a8565b610fda565b005b34801561036d57600080fd5b5061038860048036038101906103839190612489565b610ffa565b005b34801561039657600080fd5b506103b160048036038101906103ac91906126ad565b611008565b6040516103be919061237d565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e99190612489565b61108c565b6040516103fb91906124f7565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190612743565b61109e565b005b34801561043957600080fd5b50610454600480360381019061044f9190612770565b6110b0565b604051610461919061258d565b60405180910390f35b34801561047657600080fd5b5061047f611168565b005b34801561048d57600080fd5b5061049661117c565b6040516104a391906124f7565b60405180910390f35b3480156104b857600080fd5b506104c16111a6565b6040516104ce919061237d565b60405180910390f35b3480156104e357600080fd5b506104ec6111b9565b6040516104f99190612431565b60405180910390f35b34801561050e57600080fd5b50610529600480360381019061052491906127c9565b61124b565b005b61054560048036038101906105409190612939565b611356565b005b34801561055357600080fd5b5061056e60048036038101906105699190612489565b6113c9565b60405161057b9190612431565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190612770565b6113fa565b6040516105b891906129df565b60405180910390f35b3480156105cd57600080fd5b506105d661142f565b005b3480156105e457600080fd5b506105ed611463565b005b3480156105fb57600080fd5b506106166004803603810190610611919061253e565b611497565b005b34801561062457600080fd5b5061062d611504565b60405161063a919061237d565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906129fa565b611517565b604051610677919061237d565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a29190612770565b6115ab565b005b3480156106b557600080fd5b506106be61162e565b6040516106cb9190612a49565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077590612a93565b80601f01602080910402602001604051908101604052809291908181526020018280546107a190612a93565b80156107ee5780601f106107c3576101008083540402835291602001916107ee565b820191906000526020600020905b8154815290600101906020018083116107d157829003601f168201915b5050505050905090565b600061080382611634565b610839576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108828261108c565b90508073ffffffffffffffffffffffffffffffffffffffff166108a3611693565b73ffffffffffffffffffffffffffffffffffffffff1614610906576108cf816108ca611693565b611517565b610905576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109c561169b565b6001546000540303905090565b60006109dd826116a4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a44576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a5084611770565b91509150610a668187610a61611693565b611797565b610ab257610a7b86610a76611693565b611517565b610ab1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b18576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2586868660016117db565b8015610b3057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bfe85610bda8888876117e1565b7c020000000000000000000000000000000000000000000000000000000017611809565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c845760006001850190506000600460008381526020019081526020016000205403610c82576000548114610c81578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cec8686866001611834565b505050505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d2c57600080fd5b600860159054906101000a900460ff16610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290612b10565b60405180910390fd5b600954610d866109bb565b10610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612b7c565b60405180910390fd5b6000610dd13361183a565b905060006002821667ffffffffffffffff1614610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90612c0e565b60405180910390fd5b610e303360028317611887565b610e3b33600161193d565b50565b60095481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e7c57600080fd5b600860149054906101000a900460ff16610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec290612c7a565b60405180910390fd5b600954610ed66109bb565b10610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90612b7c565b60405180910390fd5b610f21338383611008565b610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790612ce6565b60405180910390fd5b6000610f6b3361183a565b905060006001821667ffffffffffffffff1614610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490612d78565b60405180910390fd5b610fca3360018317611887565b610fd533600161193d565b505050565b610ff583838360405180602001604052806000815250611356565b505050565b61100581600161195b565b50565b6000808460405160200161101c9190612de0565b604051602081830303815290604052805190602001209050611082848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483611bad565b9150509392505050565b6000611097826116a4565b9050919050565b6110a6611bc4565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611117576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611170611bc4565b61117a6000611c42565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860149054906101000a900460ff1681565b6060600380546111c890612a93565b80601f01602080910402602001604051908101604052809291908181526020018280546111f490612a93565b80156112415780601f1061121657610100808354040283529160200191611241565b820191906000526020600020905b81548152906001019060200180831161122457829003601f168201915b5050505050905090565b8060076000611258611693565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611305611693565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161134a919061237d565b60405180910390a35050565b6113618484846109d2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113c35761138c84848484611d08565b6113c2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113d482611e58565b6040516020016113e49190612ef5565b6040516020818303038152906040529050919050565b6000806114068361183a565b90506001808267ffffffffffffffff16901c16600182166114279190612f51565b915050919050565b611437611bc4565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b61146b611bc4565b600860159054906101000a900460ff1615600860156101000a81548160ff021916908315150217905550565b61149f611bc4565b600954816114ab6109bb565b6114b59190612f8f565b11156114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed90612b7c565b60405180910390fd5b611500828261193d565b5050565b600860159054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b3611bc4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990613057565b60405180910390fd5b61162b81611c42565b50565b600a5481565b60008161163f61169b565b1115801561164e575060005482105b801561168c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806116b361169b565b11611739576000548110156117385760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611736575b6000810361172c576004600083600190039350838152602001908152602001600020549050611702565b809250505061176b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117f8868684611fb8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff831617915081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b611957828260405180602001604052806000815250611fc1565b5050565b6000611966836116a4565b9050600081905060008061197986611770565b9150915084156119e2576119958184611990611693565b611797565b6119e1576119aa836119a5611693565b611517565b6119e0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6119f08360008860016117db565b80156119fb57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611aa383611a60856000886117e1565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611809565b600460008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851603611b295760006001870190506000600460008381526020019081526020016000205403611b27576000548114611b26578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b93836000886001611834565b600160008154809291906001019190505550505050505050565b600082611bba858461205e565b1490509392505050565b611bcc6120b4565b73ffffffffffffffffffffffffffffffffffffffff16611bea61117c565b73ffffffffffffffffffffffffffffffffffffffff1614611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c37906130c3565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d2e611693565b8786866040518563ffffffff1660e01b8152600401611d509493929190613138565b6020604051808303816000875af1925050508015611d8c57506040513d601f19601f82011682018060405250810190611d899190613199565b60015b611e05573d8060008114611dbc576040519150601f19603f3d011682016040523d82523d6000602084013e611dc1565b606091505b506000815103611dfd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611e9f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fb3565b600082905060005b60008214611ed1578080611eba906131c6565b915050600a82611eca919061323d565b9150611ea7565b60008167ffffffffffffffff811115611eed57611eec61280e565b5b6040519080825280601f01601f191660200182016040528015611f1f5781602001600182028036833780820191505090505b5090505b60008514611fac57600182611f38919061326e565b9150600a85611f4791906132a2565b6030611f539190612f8f565b60f81b818381518110611f6957611f686132d3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fa5919061323d565b9450611f23565b8093505050505b919050565b60009392505050565b611fcb83836120bc565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461205957600080549050600083820390505b61200b6000868380600101945086611d08565b612041576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ff857816000541461205657600080fd5b50505b505050565b60008082905060005b84518110156120a95761209482868381518110612087576120866132d3565b5b6020026020010151612277565b915080806120a1906131c6565b915050612067565b508091505092915050565b600033905090565b600080549050600082036120fc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61210960008483856117db565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121808361217160008660006117e1565b61217a856122a2565b17611809565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461222157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506121e6565b506000820361225c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122726000848385611834565b505050565b600081831061228f5761228a82846122b2565b61229a565b61229983836122b2565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612312816122dd565b811461231d57600080fd5b50565b60008135905061232f81612309565b92915050565b60006020828403121561234b5761234a6122d3565b5b600061235984828501612320565b91505092915050565b60008115159050919050565b61237781612362565b82525050565b6000602082019050612392600083018461236e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123d25780820151818401526020810190506123b7565b838111156123e1576000848401525b50505050565b6000601f19601f8301169050919050565b600061240382612398565b61240d81856123a3565b935061241d8185602086016123b4565b612426816123e7565b840191505092915050565b6000602082019050818103600083015261244b81846123f8565b905092915050565b6000819050919050565b61246681612453565b811461247157600080fd5b50565b6000813590506124838161245d565b92915050565b60006020828403121561249f5761249e6122d3565b5b60006124ad84828501612474565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124e1826124b6565b9050919050565b6124f1816124d6565b82525050565b600060208201905061250c60008301846124e8565b92915050565b61251b816124d6565b811461252657600080fd5b50565b60008135905061253881612512565b92915050565b60008060408385031215612555576125546122d3565b5b600061256385828601612529565b925050602061257485828601612474565b9150509250929050565b61258781612453565b82525050565b60006020820190506125a2600083018461257e565b92915050565b6000806000606084860312156125c1576125c06122d3565b5b60006125cf86828701612529565b93505060206125e086828701612529565b92505060406125f186828701612474565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126126205761261f6125fb565b5b8235905067ffffffffffffffff81111561263d5761263c612600565b5b60208301915083602082028301111561265957612658612605565b5b9250929050565b60008060208385031215612677576126766122d3565b5b600083013567ffffffffffffffff811115612695576126946122d8565b5b6126a18582860161260a565b92509250509250929050565b6000806000604084860312156126c6576126c56122d3565b5b60006126d486828701612529565b935050602084013567ffffffffffffffff8111156126f5576126f46122d8565b5b6127018682870161260a565b92509250509250925092565b6000819050919050565b6127208161270d565b811461272b57600080fd5b50565b60008135905061273d81612717565b92915050565b600060208284031215612759576127586122d3565b5b60006127678482850161272e565b91505092915050565b600060208284031215612786576127856122d3565b5b600061279484828501612529565b91505092915050565b6127a681612362565b81146127b157600080fd5b50565b6000813590506127c38161279d565b92915050565b600080604083850312156127e0576127df6122d3565b5b60006127ee85828601612529565b92505060206127ff858286016127b4565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612846826123e7565b810181811067ffffffffffffffff821117156128655761286461280e565b5b80604052505050565b60006128786122c9565b9050612884828261283d565b919050565b600067ffffffffffffffff8211156128a4576128a361280e565b5b6128ad826123e7565b9050602081019050919050565b82818337600083830152505050565b60006128dc6128d784612889565b61286e565b9050828152602081018484840111156128f8576128f7612809565b5b6129038482856128ba565b509392505050565b600082601f8301126129205761291f6125fb565b5b81356129308482602086016128c9565b91505092915050565b60008060008060808587031215612953576129526122d3565b5b600061296187828801612529565b945050602061297287828801612529565b935050604061298387828801612474565b925050606085013567ffffffffffffffff8111156129a4576129a36122d8565b5b6129b08782880161290b565b91505092959194509250565b600067ffffffffffffffff82169050919050565b6129d9816129bc565b82525050565b60006020820190506129f460008301846129d0565b92915050565b60008060408385031215612a1157612a106122d3565b5b6000612a1f85828601612529565b9250506020612a3085828601612529565b9150509250929050565b612a438161270d565b82525050565b6000602082019050612a5e6000830184612a3a565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612aab57607f821691505b602082108103612abe57612abd612a64565b5b50919050565b7f5075626c69632073616c65206973206e6f742072756e6e696e67000000000000600082015250565b6000612afa601a836123a3565b9150612b0582612ac4565b602082019050919050565b60006020820190508181036000830152612b2981612aed565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667420746f206d696e740000600082015250565b6000612b66601e836123a3565b9150612b7182612b30565b602082019050919050565b60006020820190508181036000830152612b9581612b59565b9050919050565b7f43616e277420636c61696d206d6f7265207468616e203120666f72207075626c60008201527f69632073616c6500000000000000000000000000000000000000000000000000602082015250565b6000612bf86027836123a3565b9150612c0382612b9c565b604082019050919050565b60006020820190508181036000830152612c2781612beb565b9050919050565b7f507269766174652073616c65206973206e6f742072756e6e696e670000000000600082015250565b6000612c64601b836123a3565b9150612c6f82612c2e565b602082019050919050565b60006020820190508181036000830152612c9381612c57565b9050919050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000612cd0600d836123a3565b9150612cdb82612c9a565b602082019050919050565b60006020820190508181036000830152612cff81612cc3565b9050919050565b7f43616e277420636c61696d206d6f7265207468616e203120666f72207768697460008201527f656c697374000000000000000000000000000000000000000000000000000000602082015250565b6000612d626025836123a3565b9150612d6d82612d06565b604082019050919050565b60006020820190508181036000830152612d9181612d55565b9050919050565b60008160601b9050919050565b6000612db082612d98565b9050919050565b6000612dc282612da5565b9050919050565b612dda612dd5826124d6565b612db7565b82525050565b6000612dec8284612dc9565b60148201915081905092915050565b600081905092915050565b7f68747470733a2f2f70726f6a65637461627973732e696f2f6d6574616461746160008201527f2f00000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e62602183612dfb565b9150612e6d82612e06565b602182019050919050565b6000612e8382612398565b612e8d8185612dfb565b9350612e9d8185602086016123b4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612edf600583612dfb565b9150612eea82612ea9565b600582019050919050565b6000612f0082612e55565b9150612f0c8284612e78565b9150612f1782612ed2565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f5c826129bc565b9150612f67836129bc565b92508267ffffffffffffffff03821115612f8457612f83612f22565b5b828201905092915050565b6000612f9a82612453565b9150612fa583612453565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fda57612fd9612f22565b5b828201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130416026836123a3565b915061304c82612fe5565b604082019050919050565b6000602082019050818103600083015261307081613034565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130ad6020836123a3565b91506130b882613077565b602082019050919050565b600060208201905081810360008301526130dc816130a0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061310a826130e3565b61311481856130ee565b93506131248185602086016123b4565b61312d816123e7565b840191505092915050565b600060808201905061314d60008301876124e8565b61315a60208301866124e8565b613167604083018561257e565b818103606083015261317981846130ff565b905095945050505050565b60008151905061319381612309565b92915050565b6000602082840312156131af576131ae6122d3565b5b60006131bd84828501613184565b91505092915050565b60006131d182612453565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361320357613202612f22565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061324882612453565b915061325383612453565b9250826132635761326261320e565b5b828204905092915050565b600061327982612453565b915061328483612453565b92508282101561329757613296612f22565b5b828203905092915050565b60006132ad82612453565b91506132b883612453565b9250826132c8576132c761320e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209dd57ce079202c565cdd75abc7c58f909e6c4dc9872c9ec0bfd2021a21734baa64736f6c634300080f0033
Deployed Bytecode Sourcemap
66327:2796:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33219:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34121:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40612:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40045:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29872:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44251:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67981:459;;;;;;;;;;;;;:::i;:::-;;66508:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67409:564;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47172:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68448:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67162:235;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35514:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69005:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31056:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66413:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34297:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41170:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47963:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66643:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66984:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68540:111;;;;;;;;;;;;;:::i;:::-;;68659:108;;;;;;;;;;;;;:::i;:::-;;68775:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66460:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41561:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66545:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33219:639;33304:4;33643:10;33628:25;;:11;:25;;;;:102;;;;33720:10;33705:25;;:11;:25;;;;33628:102;:179;;;;33797:10;33782:25;;:11;:25;;;;33628:179;33608:199;;33219:639;;;:::o;34121:100::-;34175:13;34208:5;34201:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34121:100;:::o;40612:218::-;40688:7;40713:16;40721:7;40713;:16::i;:::-;40708:64;;40738:34;;;;;;;;;;;;;;40708:64;40792:15;:24;40808:7;40792:24;;;;;;;;;;;:30;;;;;;;;;;;;40785:37;;40612:218;;;:::o;40045:408::-;40134:13;40150:16;40158:7;40150;:16::i;:::-;40134:32;;40206:5;40183:28;;:19;:17;:19::i;:::-;:28;;;40179:175;;40231:44;40248:5;40255:19;:17;:19::i;:::-;40231:16;:44::i;:::-;40226:128;;40303:35;;;;;;;;;;;;;;40226:128;40179:175;40399:2;40366:15;:24;40382:7;40366:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40437:7;40433:2;40417:28;;40426:5;40417:28;;;;;;;;;;;;40123:330;40045:408;;:::o;29872:323::-;29933:7;30161:15;:13;:15::i;:::-;30146:12;;30130:13;;:28;:46;30123:53;;29872:323;:::o;44251:2825::-;44393:27;44423;44442:7;44423:18;:27::i;:::-;44393:57;;44508:4;44467:45;;44483:19;44467:45;;;44463:86;;44521:28;;;;;;;;;;;;;;44463:86;44563:27;44592:23;44619:35;44646:7;44619:26;:35::i;:::-;44562:92;;;;44754:68;44779:15;44796:4;44802:19;:17;:19::i;:::-;44754:24;:68::i;:::-;44749:180;;44842:43;44859:4;44865:19;:17;:19::i;:::-;44842:16;:43::i;:::-;44837:92;;44894:35;;;;;;;;;;;;;;44837:92;44749:180;44960:1;44946:16;;:2;:16;;;44942:52;;44971:23;;;;;;;;;;;;;;44942:52;45007:43;45029:4;45035:2;45039:7;45048:1;45007:21;:43::i;:::-;45143:15;45140:160;;;45283:1;45262:19;45255:30;45140:160;45680:18;:24;45699:4;45680:24;;;;;;;;;;;;;;;;45678:26;;;;;;;;;;;;45749:18;:22;45768:2;45749:22;;;;;;;;;;;;;;;;45747:24;;;;;;;;;;;46071:146;46108:2;46157:45;46172:4;46178:2;46182:19;46157:14;:45::i;:::-;26271:8;46129:73;46071:18;:146::i;:::-;46042:17;:26;46060:7;46042:26;;;;;;;;;;;:175;;;;46388:1;26271:8;46337:19;:47;:52;46333:627;;46410:19;46442:1;46432:7;:11;46410:33;;46599:1;46565:17;:30;46583:11;46565:30;;;;;;;;;;;;:35;46561:384;;46703:13;;46688:11;:28;46684:242;;46883:19;46850:17;:30;46868:11;46850:30;;;;;;;;;;;:52;;;;46684:242;46561:384;46391:569;46333:627;47007:7;47003:2;46988:27;;46997:4;46988:27;;;;;;;;;;;;47026:42;47047:4;47053:2;47057:7;47066:1;47026:20;:42::i;:::-;44382:2694;;;44251:2825;;;:::o;67981:459::-;68044:10;68031:23;;:9;:23;;;68023:32;;;;;;68074:19;;;;;;;;;;;68066:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;68159:10;;68143:13;:11;:13::i;:::-;:26;68135:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;68225:18;68246:19;68254:10;68246:7;:19::i;:::-;68225:40;;68303:1;68298;68284:11;:15;:20;;;68276:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;68361:36;68369:10;68395:1;68381:11;:15;68361:7;:36::i;:::-;68408:24;68418:10;68430:1;68408:9;:24::i;:::-;68012:428;67981:459::o;66508:28::-;;;;:::o;67409:564::-;67507:10;67494:23;;:9;:23;;;67486:32;;;;;;67537:20;;;;;;;;;;;67529:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;67624:10;;67608:13;:11;:13::i;:::-;:26;67600:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;67690:39;67704:10;67716:12;;67690:13;:39::i;:::-;67682:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;67760:18;67781:19;67789:10;67781:7;:19::i;:::-;67760:40;;67838:1;67833;67819:11;:15;:20;;;67811:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;67894:36;67902:10;67928:1;67914:11;:15;67894:7;:36::i;:::-;67941:24;67951:10;67963:1;67941:9;:24::i;:::-;67475:498;67409:564;;:::o;47172:193::-;47318:39;47335:4;47341:2;47345:7;47318:39;;;;;;;;;;;;:16;:39::i;:::-;47172:193;;;:::o;68448:80::-;68498:22;68504:9;68515:4;68498:5;:22::i;:::-;68448:80;:::o;67162:235::-;67254:4;67271:12;67313:5;67296:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;67286:34;;;;;;67271:49;;67338:51;67357:12;;67338:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67371:11;;67384:4;67338:18;:51::i;:::-;67331:58;;;67162:235;;;;;:::o;35514:152::-;35586:7;35629:27;35648:7;35629:18;:27::i;:::-;35606:52;;35514:152;;;:::o;69005:115::-;2014:13;:11;:13::i;:::-;69103:9:::1;69089:11;:23;;;;69005:115:::0;:::o;31056:233::-;31128:7;31169:1;31152:19;;:5;:19;;;31148:60;;31180:28;;;;;;;;;;;;;;31148:60;25215:13;31226:18;:25;31245:5;31226:25;;;;;;;;;;;;;;;;:55;31219:62;;31056:233;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;66413:40::-;;;;;;;;;;;;;:::o;34297:104::-;34353:13;34386:7;34379:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34297:104;:::o;41170:234::-;41317:8;41265:18;:39;41284:19;:17;:19::i;:::-;41265:39;;;;;;;;;;;;;;;:49;41305:8;41265:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;41377:8;41341:55;;41356:19;:17;:19::i;:::-;41341:55;;;41387:8;41341:55;;;;;;:::i;:::-;;;;;;;;41170:234;;:::o;47963:407::-;48138:31;48151:4;48157:2;48161:7;48138:12;:31::i;:::-;48202:1;48184:2;:14;;;:19;48180:183;;48223:56;48254:4;48260:2;48264:7;48273:5;48223:30;:56::i;:::-;48218:145;;48307:40;;;;;;;;;;;;;;48218:145;48180:183;47963:407;;;;:::o;66643:221::-;66716:13;66827:18;:7;:16;:18::i;:::-;66773:82;;;;;;;;:::i;:::-;;;;;;;;;;;;;66759:97;;66643:221;;;:::o;66984:170::-;67042:6;67061:14;67078;67086:5;67078:7;:14::i;:::-;67061:31;;67144:1;67139;67128:7;:12;;;;67127:18;67121:1;67111:7;:11;67110:36;;;;:::i;:::-;67103:43;;;66984:170;;;:::o;68540:111::-;2014:13;:11;:13::i;:::-;68623:20:::1;;;;;;;;;;;68622:21;68599:20;;:44;;;;;;;;;;;;;;;;;;68540:111::o:0;68659:108::-;2014:13;:11;:13::i;:::-;68740:19:::1;;;;;;;;;;;68739:20;68717:19;;:42;;;;;;;;;;;;;;;;;;68659:108::o:0;68775:222::-;2014:13;:11;:13::i;:::-;68899:10:::1;;68886:9;68870:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;68862:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;68955:34;68965:12;68979:9;68955;:34::i;:::-;68775:222:::0;;:::o;66460:39::-;;;;;;;;;;;;;:::o;41561:164::-;41658:4;41682:18;:25;41701:5;41682:25;;;;;;;;;;;;;;;:35;41708:8;41682:35;;;;;;;;;;;;;;;;;;;;;;;;;41675:42;;41561:164;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;::::0;3115:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;66545:26::-;;;;:::o;41983:282::-;42048:4;42104:7;42085:15;:13;:15::i;:::-;:26;;:66;;;;;42138:13;;42128:7;:23;42085:66;:153;;;;;42237:1;25991:8;42189:17;:26;42207:7;42189:26;;;;;;;;;;;;:44;:49;42085:153;42065:173;;41983:282;;;:::o;64291:105::-;64351:7;64378:10;64371:17;;64291:105;:::o;66875:101::-;66940:7;66967:1;66960:8;;66875:101;:::o;36669:1275::-;36736:7;36756:12;36771:7;36756:22;;36839:4;36820:15;:13;:15::i;:::-;:23;36816:1061;;36873:13;;36866:4;:20;36862:1015;;;36911:14;36928:17;:23;36946:4;36928:23;;;;;;;;;;;;36911:40;;37045:1;25991:8;37017:6;:24;:29;37013:845;;37682:113;37699:1;37689:6;:11;37682:113;;37742:17;:25;37760:6;;;;;;;37742:25;;;;;;;;;;;;37733:34;;37682:113;;;37828:6;37821:13;;;;;;37013:845;36888:989;36862:1015;36816:1061;37905:31;;;;;;;;;;;;;;36669:1275;;;;:::o;43146:485::-;43248:27;43277:23;43318:38;43359:15;:24;43375:7;43359:24;;;;;;;;;;;43318:65;;43536:18;43513:41;;43593:19;43587:26;43568:45;;43498:126;43146:485;;;:::o;42374:659::-;42523:11;42688:16;42681:5;42677:28;42668:37;;42848:16;42837:9;42833:32;42820:45;;42998:15;42987:9;42984:30;42976:5;42965:9;42962:20;42959:56;42949:66;;42374:659;;;;;:::o;49032:159::-;;;;;:::o;63600:311::-;63735:7;63755:16;26395:3;63781:19;:41;;63755:68;;26395:3;63849:31;63860:4;63866:2;63870:9;63849:10;:31::i;:::-;63841:40;;:62;;63834:69;;;63600:311;;;;;:::o;38492:450::-;38572:14;38740:16;38733:5;38729:28;38720:37;;38917:5;38903:11;38878:23;38874:41;38871:52;38864:5;38861:63;38851:73;;38492:450;;;;:::o;49856:158::-;;;;;:::o;31943:137::-;31998:6;25589:3;32031:18;:25;32050:5;32031:25;;;;;;;;;;;;;;;;:40;;32017:55;;31943:137;;;:::o;32268:404::-;32340:14;32357:18;:25;32376:5;32357:25;;;;;;;;;;;;;;;;32340:42;;32393:17;32523:3;32510:16;;25589:3;32594:9;:24;;25734:14;32557:6;:32;32556:63;32547:72;;32658:6;32630:18;:25;32649:5;32630:25;;;;;;;;;;;;;;;:34;;;;32329:343;;32268:404;;:::o;58123:112::-;58200:27;58210:2;58214:8;58200:27;;;;;;;;;;;;:9;:27::i;:::-;58123:112;;:::o;58820:3081::-;58900:27;58930;58949:7;58930:18;:27::i;:::-;58900:57;;58970:12;59001:19;58970:52;;59036:27;59065:23;59092:35;59119:7;59092:26;:35::i;:::-;59035:92;;;;59144:13;59140:316;;;59265:68;59290:15;59307:4;59313:19;:17;:19::i;:::-;59265:24;:68::i;:::-;59260:184;;59357:43;59374:4;59380:19;:17;:19::i;:::-;59357:16;:43::i;:::-;59352:92;;59409:35;;;;;;;;;;;;;;59352:92;59260:184;59140:316;59468:51;59490:4;59504:1;59508:7;59517:1;59468:21;:51::i;:::-;59612:15;59609:160;;;59752:1;59731:19;59724:30;59609:160;60430:1;25480:3;60400:1;:26;;60399:32;60371:18;:24;60390:4;60371:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;60698:176;60735:4;60806:53;60821:4;60835:1;60839:19;60806:14;:53::i;:::-;26271:8;25991;60759:43;60758:101;60698:18;:176::i;:::-;60669:17;:26;60687:7;60669:26;;;;;;;;;;;:205;;;;61045:1;26271:8;60994:19;:47;:52;60990:627;;61067:19;61099:1;61089:7;:11;61067:33;;61256:1;61222:17;:30;61240:11;61222:30;;;;;;;;;;;;:35;61218:384;;61360:13;;61345:11;:28;61341:242;;61540:19;61507:17;:30;61525:11;61507:30;;;;;;;;;;;:52;;;;61341:242;61218:384;61048:569;60990:627;61672:7;61668:1;61645:35;;61654:4;61645:35;;;;;;;;;;;;61691:50;61712:4;61726:1;61730:7;61739:1;61691:20;:50::i;:::-;61868:12;;:14;;;;;;;;;;;;;58889:3012;;;;58820:3081;;:::o;4812:190::-;4937:4;4990;4961:25;4974:5;4981:4;4961:12;:25::i;:::-;:33;4954:40;;4812:190;;;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;50454:716::-;50617:4;50663:2;50638:45;;;50684:19;:17;:19::i;:::-;50705:4;50711:7;50720:5;50638:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50634:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50938:1;50921:6;:13;:18;50917:235;;50967:40;;;;;;;;;;;;;;50917:235;51110:6;51104:13;51095:6;51091:2;51087:15;51080:38;50634:529;50807:54;;;50797:64;;;:6;:64;;;;50790:71;;;50454:716;;;;;;:::o;12748:723::-;12804:13;13034:1;13025:5;:10;13021:53;;13052:10;;;;;;;;;;;;;;;;;;;;;13021:53;13084:12;13099:5;13084:20;;13115:14;13140:78;13155:1;13147:4;:9;13140:78;;13173:8;;;;;:::i;:::-;;;;13204:2;13196:10;;;;;:::i;:::-;;;13140:78;;;13228:19;13260:6;13250:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13228:39;;13278:154;13294:1;13285:5;:10;13278:154;;13322:1;13312:11;;;;;:::i;:::-;;;13389:2;13381:5;:10;;;;:::i;:::-;13368:2;:24;;;;:::i;:::-;13355:39;;13338:6;13345;13338:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;13418:2;13409:11;;;;;:::i;:::-;;;13278:154;;;13456:6;13442:21;;;;;12748:723;;;;:::o;63301:147::-;63438:6;63301:147;;;;;:::o;57350:689::-;57481:19;57487:2;57491:8;57481:5;:19::i;:::-;57560:1;57542:2;:14;;;:19;57538:483;;57582:11;57596:13;;57582:27;;57628:13;57650:8;57644:3;:14;57628:30;;57677:233;57708:62;57747:1;57751:2;57755:7;;;;;;57764:5;57708:30;:62::i;:::-;57703:167;;57806:40;;;;;;;;;;;;;;57703:167;57905:3;57897:5;:11;57677:233;;57992:3;57975:13;;:20;57971:34;;57997:8;;;57971:34;57563:458;;57538:483;57350:689;;;:::o;5679:296::-;5762:7;5782:20;5805:4;5782:27;;5825:9;5820:118;5844:5;:12;5840:1;:16;5820:118;;;5893:33;5903:12;5917:5;5923:1;5917:8;;;;;;;;:::i;:::-;;;;;;;;5893:9;:33::i;:::-;5878:48;;5858:3;;;;;:::i;:::-;;;;5820:118;;;;5955:12;5948:19;;;5679:296;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;51632:2966::-;51705:20;51728:13;;51705:36;;51768:1;51756:8;:13;51752:44;;51778:18;;;;;;;;;;;;;;51752:44;51809:61;51839:1;51843:2;51847:12;51861:8;51809:21;:61::i;:::-;52353:1;25353:2;52323:1;:26;;52322:32;52310:8;:45;52284:18;:22;52303:2;52284:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;52632:139;52669:2;52723:33;52746:1;52750:2;52754:1;52723:14;:33::i;:::-;52690:30;52711:8;52690:20;:30::i;:::-;:66;52632:18;:139::i;:::-;52598:17;:31;52616:12;52598:31;;;;;;;;;;;:173;;;;52788:16;52819:11;52848:8;52833:12;:23;52819:37;;53369:16;53365:2;53361:25;53349:37;;53741:12;53701:8;53660:1;53598:25;53539:1;53478;53451:335;54112:1;54098:12;54094:20;54052:346;54153:3;54144:7;54141:16;54052:346;;54371:7;54361:8;54358:1;54331:25;54328:1;54325;54320:59;54206:1;54197:7;54193:15;54182:26;;54052:346;;;54056:77;54443:1;54431:8;:13;54427:45;;54453:19;;;;;;;;;;;;;;54427:45;54505:3;54489:13;:19;;;;52058:2462;;54530:60;54559:1;54563:2;54567:12;54581:8;54530:20;:60::i;:::-;51694:2904;51632:2966;;:::o;11886:149::-;11949:7;11980:1;11976;:5;:51;;12007:20;12022:1;12025;12007:14;:20::i;:::-;11976:51;;;11984:20;11999:1;12002;11984:14;:20::i;:::-;11976:51;11969:58;;11886:149;;;;:::o;39044:324::-;39114:14;39347:1;39337:8;39334:15;39308:24;39304:46;39294:56;;39044:324;;;:::o;12043:268::-;12111:13;12218:1;12212:4;12205:15;12247:1;12241:4;12234:15;12288:4;12282;12272:21;12263:30;;12043:268;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6301:568;6374:8;6384:6;6434:3;6427:4;6419:6;6415:17;6411:27;6401:122;;6442:79;;:::i;:::-;6401:122;6555:6;6542:20;6532:30;;6585:18;6577:6;6574:30;6571:117;;;6607:79;;:::i;:::-;6571:117;6721:4;6713:6;6709:17;6697:29;;6775:3;6767:4;6759:6;6755:17;6745:8;6741:32;6738:41;6735:128;;;6782:79;;:::i;:::-;6735:128;6301:568;;;;;:::o;6875:559::-;6961:6;6969;7018:2;7006:9;6997:7;6993:23;6989:32;6986:119;;;7024:79;;:::i;:::-;6986:119;7172:1;7161:9;7157:17;7144:31;7202:18;7194:6;7191:30;7188:117;;;7224:79;;:::i;:::-;7188:117;7337:80;7409:7;7400:6;7389:9;7385:22;7337:80;:::i;:::-;7319:98;;;;7115:312;6875:559;;;;;:::o;7440:704::-;7535:6;7543;7551;7600:2;7588:9;7579:7;7575:23;7571:32;7568:119;;;7606:79;;:::i;:::-;7568:119;7726:1;7751:53;7796:7;7787:6;7776:9;7772:22;7751:53;:::i;:::-;7741:63;;7697:117;7881:2;7870:9;7866:18;7853:32;7912:18;7904:6;7901:30;7898:117;;;7934:79;;:::i;:::-;7898:117;8047:80;8119:7;8110:6;8099:9;8095:22;8047:80;:::i;:::-;8029:98;;;;7824:313;7440:704;;;;;:::o;8150:77::-;8187:7;8216:5;8205:16;;8150:77;;;:::o;8233:122::-;8306:24;8324:5;8306:24;:::i;:::-;8299:5;8296:35;8286:63;;8345:1;8342;8335:12;8286:63;8233:122;:::o;8361:139::-;8407:5;8445:6;8432:20;8423:29;;8461:33;8488:5;8461:33;:::i;:::-;8361:139;;;;:::o;8506:329::-;8565:6;8614:2;8602:9;8593:7;8589:23;8585:32;8582:119;;;8620:79;;:::i;:::-;8582:119;8740:1;8765:53;8810:7;8801:6;8790:9;8786:22;8765:53;:::i;:::-;8755:63;;8711:117;8506:329;;;;:::o;8841:::-;8900:6;8949:2;8937:9;8928:7;8924:23;8920:32;8917:119;;;8955:79;;:::i;:::-;8917:119;9075:1;9100:53;9145:7;9136:6;9125:9;9121:22;9100:53;:::i;:::-;9090:63;;9046:117;8841:329;;;;:::o;9176:116::-;9246:21;9261:5;9246:21;:::i;:::-;9239:5;9236:32;9226:60;;9282:1;9279;9272:12;9226:60;9176:116;:::o;9298:133::-;9341:5;9379:6;9366:20;9357:29;;9395:30;9419:5;9395:30;:::i;:::-;9298:133;;;;:::o;9437:468::-;9502:6;9510;9559:2;9547:9;9538:7;9534:23;9530:32;9527:119;;;9565:79;;:::i;:::-;9527:119;9685:1;9710:53;9755:7;9746:6;9735:9;9731:22;9710:53;:::i;:::-;9700:63;;9656:117;9812:2;9838:50;9880:7;9871:6;9860:9;9856:22;9838:50;:::i;:::-;9828:60;;9783:115;9437:468;;;;;:::o;9911:117::-;10020:1;10017;10010:12;10034:180;10082:77;10079:1;10072:88;10179:4;10176:1;10169:15;10203:4;10200:1;10193:15;10220:281;10303:27;10325:4;10303:27;:::i;:::-;10295:6;10291:40;10433:6;10421:10;10418:22;10397:18;10385:10;10382:34;10379:62;10376:88;;;10444:18;;:::i;:::-;10376:88;10484:10;10480:2;10473:22;10263:238;10220:281;;:::o;10507:129::-;10541:6;10568:20;;:::i;:::-;10558:30;;10597:33;10625:4;10617:6;10597:33;:::i;:::-;10507:129;;;:::o;10642:307::-;10703:4;10793:18;10785:6;10782:30;10779:56;;;10815:18;;:::i;:::-;10779:56;10853:29;10875:6;10853:29;:::i;:::-;10845:37;;10937:4;10931;10927:15;10919:23;;10642:307;;;:::o;10955:154::-;11039:6;11034:3;11029;11016:30;11101:1;11092:6;11087:3;11083:16;11076:27;10955:154;;;:::o;11115:410::-;11192:5;11217:65;11233:48;11274:6;11233:48;:::i;:::-;11217:65;:::i;:::-;11208:74;;11305:6;11298:5;11291:21;11343:4;11336:5;11332:16;11381:3;11372:6;11367:3;11363:16;11360:25;11357:112;;;11388:79;;:::i;:::-;11357:112;11478:41;11512:6;11507:3;11502;11478:41;:::i;:::-;11198:327;11115:410;;;;;:::o;11544:338::-;11599:5;11648:3;11641:4;11633:6;11629:17;11625:27;11615:122;;11656:79;;:::i;:::-;11615:122;11773:6;11760:20;11798:78;11872:3;11864:6;11857:4;11849:6;11845:17;11798:78;:::i;:::-;11789:87;;11605:277;11544:338;;;;:::o;11888:943::-;11983:6;11991;11999;12007;12056:3;12044:9;12035:7;12031:23;12027:33;12024:120;;;12063:79;;:::i;:::-;12024:120;12183:1;12208:53;12253:7;12244:6;12233:9;12229:22;12208:53;:::i;:::-;12198:63;;12154:117;12310:2;12336:53;12381:7;12372:6;12361:9;12357:22;12336:53;:::i;:::-;12326:63;;12281:118;12438:2;12464:53;12509:7;12500:6;12489:9;12485:22;12464:53;:::i;:::-;12454:63;;12409:118;12594:2;12583:9;12579:18;12566:32;12625:18;12617:6;12614:30;12611:117;;;12647:79;;:::i;:::-;12611:117;12752:62;12806:7;12797:6;12786:9;12782:22;12752:62;:::i;:::-;12742:72;;12537:287;11888:943;;;;;;;:::o;12837:101::-;12873:7;12913:18;12906:5;12902:30;12891:41;;12837:101;;;:::o;12944:115::-;13029:23;13046:5;13029:23;:::i;:::-;13024:3;13017:36;12944:115;;:::o;13065:218::-;13156:4;13194:2;13183:9;13179:18;13171:26;;13207:69;13273:1;13262:9;13258:17;13249:6;13207:69;:::i;:::-;13065:218;;;;:::o;13289:474::-;13357:6;13365;13414:2;13402:9;13393:7;13389:23;13385:32;13382:119;;;13420:79;;:::i;:::-;13382:119;13540:1;13565:53;13610:7;13601:6;13590:9;13586:22;13565:53;:::i;:::-;13555:63;;13511:117;13667:2;13693:53;13738:7;13729:6;13718:9;13714:22;13693:53;:::i;:::-;13683:63;;13638:118;13289:474;;;;;:::o;13769:118::-;13856:24;13874:5;13856:24;:::i;:::-;13851:3;13844:37;13769:118;;:::o;13893:222::-;13986:4;14024:2;14013:9;14009:18;14001:26;;14037:71;14105:1;14094:9;14090:17;14081:6;14037:71;:::i;:::-;13893:222;;;;:::o;14121:180::-;14169:77;14166:1;14159:88;14266:4;14263:1;14256:15;14290:4;14287:1;14280:15;14307:320;14351:6;14388:1;14382:4;14378:12;14368:22;;14435:1;14429:4;14425:12;14456:18;14446:81;;14512:4;14504:6;14500:17;14490:27;;14446:81;14574:2;14566:6;14563:14;14543:18;14540:38;14537:84;;14593:18;;:::i;:::-;14537:84;14358:269;14307:320;;;:::o;14633:176::-;14773:28;14769:1;14761:6;14757:14;14750:52;14633:176;:::o;14815:366::-;14957:3;14978:67;15042:2;15037:3;14978:67;:::i;:::-;14971:74;;15054:93;15143:3;15054:93;:::i;:::-;15172:2;15167:3;15163:12;15156:19;;14815:366;;;:::o;15187:419::-;15353:4;15391:2;15380:9;15376:18;15368:26;;15440:9;15434:4;15430:20;15426:1;15415:9;15411:17;15404:47;15468:131;15594:4;15468:131;:::i;:::-;15460:139;;15187:419;;;:::o;15612:180::-;15752:32;15748:1;15740:6;15736:14;15729:56;15612:180;:::o;15798:366::-;15940:3;15961:67;16025:2;16020:3;15961:67;:::i;:::-;15954:74;;16037:93;16126:3;16037:93;:::i;:::-;16155:2;16150:3;16146:12;16139:19;;15798:366;;;:::o;16170:419::-;16336:4;16374:2;16363:9;16359:18;16351:26;;16423:9;16417:4;16413:20;16409:1;16398:9;16394:17;16387:47;16451:131;16577:4;16451:131;:::i;:::-;16443:139;;16170:419;;;:::o;16595:226::-;16735:34;16731:1;16723:6;16719:14;16712:58;16804:9;16799:2;16791:6;16787:15;16780:34;16595:226;:::o;16827:366::-;16969:3;16990:67;17054:2;17049:3;16990:67;:::i;:::-;16983:74;;17066:93;17155:3;17066:93;:::i;:::-;17184:2;17179:3;17175:12;17168:19;;16827:366;;;:::o;17199:419::-;17365:4;17403:2;17392:9;17388:18;17380:26;;17452:9;17446:4;17442:20;17438:1;17427:9;17423:17;17416:47;17480:131;17606:4;17480:131;:::i;:::-;17472:139;;17199:419;;;:::o;17624:177::-;17764:29;17760:1;17752:6;17748:14;17741:53;17624:177;:::o;17807:366::-;17949:3;17970:67;18034:2;18029:3;17970:67;:::i;:::-;17963:74;;18046:93;18135:3;18046:93;:::i;:::-;18164:2;18159:3;18155:12;18148:19;;17807:366;;;:::o;18179:419::-;18345:4;18383:2;18372:9;18368:18;18360:26;;18432:9;18426:4;18422:20;18418:1;18407:9;18403:17;18396:47;18460:131;18586:4;18460:131;:::i;:::-;18452:139;;18179:419;;;:::o;18604:163::-;18744:15;18740:1;18732:6;18728:14;18721:39;18604:163;:::o;18773:366::-;18915:3;18936:67;19000:2;18995:3;18936:67;:::i;:::-;18929:74;;19012:93;19101:3;19012:93;:::i;:::-;19130:2;19125:3;19121:12;19114:19;;18773:366;;;:::o;19145:419::-;19311:4;19349:2;19338:9;19334:18;19326:26;;19398:9;19392:4;19388:20;19384:1;19373:9;19369:17;19362:47;19426:131;19552:4;19426:131;:::i;:::-;19418:139;;19145:419;;;:::o;19570:224::-;19710:34;19706:1;19698:6;19694:14;19687:58;19779:7;19774:2;19766:6;19762:15;19755:32;19570:224;:::o;19800:366::-;19942:3;19963:67;20027:2;20022:3;19963:67;:::i;:::-;19956:74;;20039:93;20128:3;20039:93;:::i;:::-;20157:2;20152:3;20148:12;20141:19;;19800:366;;;:::o;20172:419::-;20338:4;20376:2;20365:9;20361:18;20353:26;;20425:9;20419:4;20415:20;20411:1;20400:9;20396:17;20389:47;20453:131;20579:4;20453:131;:::i;:::-;20445:139;;20172:419;;;:::o;20597:94::-;20630:8;20678:5;20674:2;20670:14;20649:35;;20597:94;;;:::o;20697:::-;20736:7;20765:20;20779:5;20765:20;:::i;:::-;20754:31;;20697:94;;;:::o;20797:100::-;20836:7;20865:26;20885:5;20865:26;:::i;:::-;20854:37;;20797:100;;;:::o;20903:157::-;21008:45;21028:24;21046:5;21028:24;:::i;:::-;21008:45;:::i;:::-;21003:3;20996:58;20903:157;;:::o;21066:256::-;21178:3;21193:75;21264:3;21255:6;21193:75;:::i;:::-;21293:2;21288:3;21284:12;21277:19;;21313:3;21306:10;;21066:256;;;;:::o;21328:148::-;21430:11;21467:3;21452:18;;21328:148;;;;:::o;21482:228::-;21622:34;21618:1;21610:6;21606:14;21599:58;21695:3;21690:2;21682:6;21678:15;21671:28;21482:228;:::o;21720:418::-;21880:3;21905:85;21987:2;21982:3;21905:85;:::i;:::-;21898:92;;22003:93;22092:3;22003:93;:::i;:::-;22125:2;22120:3;22116:12;22109:19;;21720:418;;;:::o;22148:397::-;22254:3;22286:39;22319:5;22286:39;:::i;:::-;22345:89;22427:6;22422:3;22345:89;:::i;:::-;22338:96;;22447:52;22492:6;22487:3;22480:4;22473:5;22469:16;22447:52;:::i;:::-;22528:6;22523:3;22519:16;22512:23;;22258:287;22148:397;;;;:::o;22555:163::-;22699:7;22695:1;22687:6;22683:14;22676:31;22555:163;:::o;22728:416::-;22888:3;22913:84;22995:1;22990:3;22913:84;:::i;:::-;22906:91;;23010:93;23099:3;23010:93;:::i;:::-;23132:1;23127:3;23123:11;23116:18;;22728:416;;;:::o;23154:827::-;23488:3;23514:148;23658:3;23514:148;:::i;:::-;23507:155;;23683:95;23774:3;23765:6;23683:95;:::i;:::-;23676:102;;23799:148;23943:3;23799:148;:::i;:::-;23792:155;;23968:3;23961:10;;23154:827;;;;:::o;23991:196::-;24043:77;24040:1;24033:88;24144:4;24141:1;24134:15;24172:4;24169:1;24162:15;24197:278;24236:3;24259:19;24276:1;24259:19;:::i;:::-;24254:24;;24296:19;24313:1;24296:19;:::i;:::-;24291:24;;24409:1;24389:18;24385:26;24382:1;24379:33;24376:59;;;24415:18;;:::i;:::-;24376:59;24463:1;24460;24456:9;24449:16;;24197:278;;;;:::o;24485:329::-;24525:3;24548:20;24566:1;24548:20;:::i;:::-;24543:25;;24586:20;24604:1;24586:20;:::i;:::-;24581:25;;24748:1;24680:66;24676:74;24673:1;24670:81;24667:107;;;24754:18;;:::i;:::-;24667:107;24802:1;24799;24795:9;24788:16;;24485:329;;;;:::o;24824:237::-;24968:34;24964:1;24956:6;24952:14;24945:58;25041:8;25036:2;25028:6;25024:15;25017:33;24824:237;:::o;25071:382::-;25213:3;25238:67;25302:2;25297:3;25238:67;:::i;:::-;25231:74;;25318:93;25407:3;25318:93;:::i;:::-;25440:2;25435:3;25431:12;25424:19;;25071:382;;;:::o;25463:435::-;25629:4;25671:2;25660:9;25656:18;25648:26;;25724:9;25718:4;25714:20;25710:1;25699:9;25695:17;25688:47;25756:131;25882:4;25756:131;:::i;:::-;25748:139;;25463:435;;;:::o;25908:190::-;26052:34;26048:1;26040:6;26036:14;26029:58;25908:190;:::o;26108:382::-;26250:3;26275:67;26339:2;26334:3;26275:67;:::i;:::-;26268:74;;26355:93;26444:3;26355:93;:::i;:::-;26477:2;26472:3;26468:12;26461:19;;26108:382;;;:::o;26500:435::-;26666:4;26708:2;26697:9;26693:18;26685:26;;26761:9;26755:4;26751:20;26747:1;26736:9;26732:17;26725:47;26793:131;26919:4;26793:131;:::i;:::-;26785:139;;26500:435;;;:::o;26945:106::-;26996:6;27034:5;27028:12;27018:22;;26945:106;;;:::o;27061:180::-;27144:11;27182:6;27177:3;27170:19;27226:4;27221:3;27217:14;27202:29;;27061:180;;;;:::o;27251:380::-;27337:3;27369:38;27401:5;27369:38;:::i;:::-;27427:70;27490:6;27485:3;27427:70;:::i;:::-;27420:77;;27510:52;27555:6;27550:3;27543:4;27536:5;27532:16;27510:52;:::i;:::-;27591:29;27613:6;27591:29;:::i;:::-;27586:3;27582:39;27575:46;;27341:290;27251:380;;;;:::o;27641:668::-;27836:4;27878:3;27867:9;27863:19;27855:27;;27896:71;27964:1;27953:9;27949:17;27940:6;27896:71;:::i;:::-;27981:72;28049:2;28038:9;28034:18;28025:6;27981:72;:::i;:::-;28067;28135:2;28124:9;28120:18;28111:6;28067:72;:::i;:::-;28190:9;28184:4;28180:20;28175:2;28164:9;28160:18;28153:48;28222:76;28293:4;28284:6;28222:76;:::i;:::-;28214:84;;27641:668;;;;;;;:::o;28319:153::-;28375:5;28410:6;28404:13;28395:22;;28430:32;28456:5;28430:32;:::i;:::-;28319:153;;;;:::o;28482:373::-;28551:6;28604:2;28592:9;28583:7;28579:23;28575:32;28572:119;;;28610:79;;:::i;:::-;28572:119;28738:1;28767:63;28822:7;28813:6;28802:9;28798:22;28767:63;:::i;:::-;28757:73;;28705:139;28482:373;;;;:::o;28865:249::-;28904:3;28931:24;28949:5;28931:24;:::i;:::-;28922:33;;28981:66;28974:5;28971:77;28968:103;;29051:18;;:::i;:::-;28968:103;29102:1;29095:5;29091:13;29084:20;;28865:249;;;:::o;29124:196::-;29176:77;29173:1;29166:88;29277:4;29274:1;29267:15;29305:4;29302:1;29295:15;29330:205;29370:1;29391:20;29409:1;29391:20;:::i;:::-;29386:25;;29429:20;29447:1;29429:20;:::i;:::-;29424:25;;29472:1;29462:35;;29477:18;;:::i;:::-;29462:35;29523:1;29520;29516:9;29511:14;;29330:205;;;;:::o;29545:211::-;29585:4;29609:20;29627:1;29609:20;:::i;:::-;29604:25;;29647:20;29665:1;29647:20;:::i;:::-;29642:25;;29690:1;29687;29684:8;29681:34;;;29695:18;;:::i;:::-;29681:34;29744:1;29741;29737:9;29729:17;;29545:211;;;;:::o;29766:196::-;29798:1;29819:20;29837:1;29819:20;:::i;:::-;29814:25;;29857:20;29875:1;29857:20;:::i;:::-;29852:25;;29900:1;29890:35;;29905:18;;:::i;:::-;29890:35;29950:1;29947;29943:9;29938:14;;29766:196;;;;:::o;29972:::-;30024:77;30021:1;30014:88;30125:4;30122:1;30115:15;30153:4;30150:1;30143:15
Swarm Source
ipfs://9dd57ce079202c565cdd75abc7c58f909e6c4dc9872c9ec0bfd2021a21734baa
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.