ERC-721
Overview
Max Total Supply
477 SPIKY
Holders
153
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SPIKYLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SpikyDJ
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-05 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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 v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/SpikyDJ.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.11; contract SpikyDJ is ERC721A, Ownable, ReentrancyGuard { string public baseURI; address public split; uint256 private maxSupply = 3309; uint256 private mintPrice = 0.1 ether; bool public mintPaused = true; bool public baseURILocked = false; mapping (uint256 => uint256) private quantityToPrice; mapping (uint256 => bool) private quantityHasDiscount; modifier callerIsUser() { require(tx.origin == msg.sender, "the caller is another contract."); _; } constructor() ERC721A("SpikyDJ", "SPIKY") { addQuantityDiscount(5, 0.09 ether); addQuantityDiscount(15, 0.085 ether); addQuantityDiscount(30, 0.08 ether); } function tokenURI(uint256 tokenID) public view override returns (string memory) { require(_exists(tokenID), "ERC721Metadata: URI query for nonexistent token"); return string(abi.encodePacked(baseURI, Strings.toString(tokenID))); } function lockBaseURI() public onlyOwner { baseURILocked = true; } function updateSplitAddress(address _address) public onlyOwner { split = _address; } function updateBaseURI(string calldata givenBaseURI) public onlyOwner { require(!baseURILocked, "base uri locked"); baseURI = givenBaseURI; } function addQuantityDiscount(uint256 _quantity, uint256 _price) public onlyOwner { quantityToPrice[_quantity] = _price; quantityHasDiscount[_quantity] = true; } function removeQuantityDiscount(uint256 _quantity) public onlyOwner { quantityHasDiscount[_quantity] = false; } function updateMintPaused(bool _mintPaused) public onlyOwner { mintPaused = _mintPaused; } function checkPrice(uint256 quantity) public view returns (uint256) { uint256 price = mintPrice; if(quantityHasDiscount[quantity]) { price = quantityToPrice[quantity]; } uint256 total = price * quantity; return total; } function mint(uint256 quantity) public payable nonReentrant callerIsUser { require(!mintPaused, "minting paused"); uint256 price = mintPrice; if(quantityHasDiscount[quantity]) { price = quantityToPrice[quantity]; } uint256 totalPrice = price * quantity; require(totalPrice == msg.value, "did not send correct amount"); require(totalSupply() + quantity <= maxSupply, "max supply reached"); _safeMint(msg.sender, quantity); } function withdraw() public onlyOwner { require(split != address(0), "split address not set"); (bool success, ) = split.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"addQuantityDiscount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURILocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"checkPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"removeQuantityDiscount","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"split","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"givenBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mintPaused","type":"bool"}],"name":"updateMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"updateSplitAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610ced600c5567016345785d8a0000600d55600e805461ffff191660011790553480156200003157600080fd5b506040518060400160405280600781526020016629b834b5bca22560c91b815250604051806040016040528060058152602001645350494b5960d81b81525081600290816200008191906200026a565b5060036200009082826200026a565b50506000805550620000a233620000ec565b6001600955620000bc600567013fbe85edc900006200013e565b620000d1600f67012dfb0cb5e880006200013e565b620000e6601e67011c37937e0800006200013e565b62000336565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200019d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b6000918252600f6020908152604080842092909255601090529020805460ff19166001179055565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001f057607f821691505b6020821081036200021157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200026557600081815260208120601f850160051c81016020861015620002405750805b601f850160051c820191505b8181101562000261578281556001016200024c565b5050505b505050565b81516001600160401b03811115620002865762000286620001c5565b6200029e81620002978454620001db565b8462000217565b602080601f831160018114620002d65760008415620002bd5750858301515b600019600386901b1c1916600185901b17855562000261565b600085815260208120601f198616915b828110156200030757888601518255948401946001909101908401620002e6565b5085821015620003265787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611c8080620003466000396000f3fe6080604052600436106101cd5760003560e01c80637e4831d3116100f7578063bb30ac4911610095578063f229e19411610064578063f229e19414610522578063f2fde38b14610542578063f765417614610562578063fdcb387c1461058257600080fd5b8063bb30ac4914610479578063c7d0db0414610499578063c87b56dd146104b9578063e985e9c5146104d957600080fd5b806395d89b41116100d157806395d89b4114610411578063a0712d6814610426578063a22cb46514610439578063b88d4fde1461045957600080fd5b80637e4831d3146103b95780638da5cb5b146103d3578063931688cb146103f157600080fd5b80633ccfd60b1161016f5780636352211e1161013e5780636352211e1461034f5780636c0360eb1461036f57806370a0823114610384578063715018a6146103a457600080fd5b80633ccfd60b146102e657806342842e0e146102fb57806353df5c7c1461031b5780635d148e5c1461033057600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd146102835780631de7463a146102a657806323b872dd146102c657600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046115d7565b6105a2565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105f4565b6040516101fe919061164c565b34801561023557600080fd5b5061024961024436600461165f565b610686565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611694565b6106ca565b005b34801561028f57600080fd5b50600154600054035b6040519081526020016101fe565b3480156102b257600080fd5b506102986102c136600461165f565b61076a565b3480156102d257600080fd5b506102816102e13660046116be565b6107ac565b3480156102f257600080fd5b50610281610945565b34801561030757600080fd5b506102816103163660046116be565b610a61565b34801561032757600080fd5b50610281610a81565b34801561033c57600080fd5b50600e546101f290610100900460ff1681565b34801561035b57600080fd5b5061024961036a36600461165f565b610abc565b34801561037b57600080fd5b5061021c610ac7565b34801561039057600080fd5b5061029861039f3660046116fa565b610b55565b3480156103b057600080fd5b50610281610ba4565b3480156103c557600080fd5b50600e546101f29060ff1681565b3480156103df57600080fd5b506008546001600160a01b0316610249565b3480156103fd57600080fd5b5061028161040c366004611715565b610bda565b34801561041d57600080fd5b5061021c610c5b565b61028161043436600461165f565b610c6a565b34801561044557600080fd5b50610281610454366004611797565b610e4e565b34801561046557600080fd5b506102816104743660046117e0565b610ee3565b34801561048557600080fd5b506102816104943660046118bc565b610f2d565b3480156104a557600080fd5b506102816104b43660046118de565b610f7f565b3480156104c557600080fd5b5061021c6104d436600461165f565b610fbc565b3480156104e557600080fd5b506101f26104f43660046118f9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561052e57600080fd5b5061028161053d36600461165f565b61105d565b34801561054e57600080fd5b5061028161055d3660046116fa565b61109f565b34801561056e57600080fd5b50600b54610249906001600160a01b031681565b34801561058e57600080fd5b5061028161059d3660046116fa565b611137565b60006301ffc9a760e01b6001600160e01b0319831614806105d357506380ac58cd60e01b6001600160e01b03198316145b806105ee5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461060390611923565b80601f016020809104026020016040519081016040528092919081815260200182805461062f90611923565b801561067c5780601f106106515761010080835404028352916020019161067c565b820191906000526020600020905b81548152906001019060200180831161065f57829003601f168201915b5050505050905090565b600061069182611183565b6106ae576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106d582610abc565b9050336001600160a01b0382161461070e576106f181336104f4565b61070e576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600d5460008281526010602052604081205490919060ff161561079857506000828152600f60205260409020545b60006107a48483611973565b949350505050565b60006107b7826111aa565b9050836001600160a01b0316816001600160a01b0316146107ea5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108375761081a86336104f4565b61083757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661085e57604051633a954ecd60e21b815260040160405180910390fd5b801561086957600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036108fb576001840160008181526004602052604081205490036108f95760005481146108f95760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b031633146109785760405162461bcd60e51b815260040161096f90611992565b60405180910390fd5b600b546001600160a01b03166109c85760405162461bcd60e51b81526020600482015260156024820152741cdc1b1a5d081859191c995cdcc81b9bdd081cd95d605a1b604482015260640161096f565b600b546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610a15576040519150601f19603f3d011682016040523d82523d6000602084013e610a1a565b606091505b5050905080610a5e5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161096f565b50565b610a7c83838360405180602001604052806000815250610ee3565b505050565b6008546001600160a01b03163314610aab5760405162461bcd60e51b815260040161096f90611992565b600e805461ff001916610100179055565b60006105ee826111aa565b600a8054610ad490611923565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0090611923565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b505050505081565b60006001600160a01b038216610b7e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610bce5760405162461bcd60e51b815260040161096f90611992565b610bd86000611218565b565b6008546001600160a01b03163314610c045760405162461bcd60e51b815260040161096f90611992565b600e54610100900460ff1615610c4e5760405162461bcd60e51b815260206004820152600f60248201526e18985cd9481d5c9a481b1bd8dad959608a1b604482015260640161096f565b600a610a7c828483611a0d565b60606003805461060390611923565b600260095403610cbc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161096f565b6002600955323314610d105760405162461bcd60e51b815260206004820152601f60248201527f7468652063616c6c657220697320616e6f7468657220636f6e74726163742e00604482015260640161096f565b600e5460ff1615610d545760405162461bcd60e51b815260206004820152600e60248201526d1b5a5b9d1a5b99c81c185d5cd95960921b604482015260640161096f565b600d5460008281526010602052604090205460ff1615610d7f57506000818152600f60205260409020545b6000610d8b8383611973565b9050348114610ddc5760405162461bcd60e51b815260206004820152601b60248201527f646964206e6f742073656e6420636f727265637420616d6f756e740000000000604482015260640161096f565b600c5483610ded6001546000540390565b610df79190611acd565b1115610e3a5760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e481c995858da195960721b604482015260640161096f565b610e44338461126a565b5050600160095550565b336001600160a01b03831603610e775760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eee8484846107ac565b6001600160a01b0383163b15610f2757610f0a84848484611288565b610f27576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610f575760405162461bcd60e51b815260040161096f90611992565b6000918252600f6020908152604080842092909255601090529020805460ff19166001179055565b6008546001600160a01b03163314610fa95760405162461bcd60e51b815260040161096f90611992565b600e805460ff1916911515919091179055565b6060610fc782611183565b61102b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161096f565b600a61103683611373565b604051602001611047929190611ae5565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146110875760405162461bcd60e51b815260040161096f90611992565b6000908152601060205260409020805460ff19169055565b6008546001600160a01b031633146110c95760405162461bcd60e51b815260040161096f90611992565b6001600160a01b03811661112e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161096f565b610a5e81611218565b6008546001600160a01b031633146111615760405162461bcd60e51b815260040161096f90611992565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60008054821080156105ee575050600090815260046020526040902054600160e01b161590565b6000816000548110156111ff5760008181526004602052604081205490600160e01b821690036111fd575b806000036111f65750600019016000818152600460205260409020546111d5565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611284828260405180602001604052806000815250611474565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112bd903390899088908890600401611b6c565b6020604051808303816000875af19250505080156112f8575060408051601f3d908101601f191682019092526112f591810190611ba9565b60015b611356573d808015611326576040519150601f19603f3d011682016040523d82523d6000602084013e61132b565b606091505b50805160000361134e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608160000361139a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113c457806113ae81611bc6565b91506113bd9050600a83611bf5565b915061139e565b60008167ffffffffffffffff8111156113df576113df6117ca565b6040519080825280601f01601f191660200182016040528015611409576020820181803683370190505b5090505b84156107a45761141e600183611c09565b915061142b600a86611c20565b611436906030611acd565b60f81b81838151811061144b5761144b611c34565b60200101906001600160f81b031916908160001a90535061146d600a86611bf5565b945061140d565b61147e83836114e1565b6001600160a01b0383163b15610a7c576000548281035b6114a86000868380600101945086611288565b6114c5576040516368d2bf6b60e11b815260040160405180910390fd5b8181106114955781600054146114da57600080fd5b5050505050565b6000546001600160a01b03831661150a57604051622e076360e81b815260040160405180910390fd5b8160000361152b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106115755760005550505050565b6001600160e01b031981168114610a5e57600080fd5b6000602082840312156115e957600080fd5b81356111f6816115c1565b60005b8381101561160f5781810151838201526020016115f7565b83811115610f275750506000910152565b600081518084526116388160208601602086016115f4565b601f01601f19169290920160200192915050565b6020815260006111f66020830184611620565b60006020828403121561167157600080fd5b5035919050565b80356001600160a01b038116811461168f57600080fd5b919050565b600080604083850312156116a757600080fd5b6116b083611678565b946020939093013593505050565b6000806000606084860312156116d357600080fd5b6116dc84611678565b92506116ea60208501611678565b9150604084013590509250925092565b60006020828403121561170c57600080fd5b6111f682611678565b6000806020838503121561172857600080fd5b823567ffffffffffffffff8082111561174057600080fd5b818501915085601f83011261175457600080fd5b81358181111561176357600080fd5b86602082850101111561177557600080fd5b60209290920196919550909350505050565b8035801515811461168f57600080fd5b600080604083850312156117aa57600080fd5b6117b383611678565b91506117c160208401611787565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156117f657600080fd5b6117ff85611678565b935061180d60208601611678565b925060408501359150606085013567ffffffffffffffff8082111561183157600080fd5b818701915087601f83011261184557600080fd5b813581811115611857576118576117ca565b604051601f8201601f19908116603f0116810190838211818310171561187f5761187f6117ca565b816040528281528a602084870101111561189857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156118cf57600080fd5b50508035926020909101359150565b6000602082840312156118f057600080fd5b6111f682611787565b6000806040838503121561190c57600080fd5b61191583611678565b91506117c160208401611678565b600181811c9082168061193757607f821691505b60208210810361195757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561198d5761198d61195d565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610a7c57600081815260208120601f850160051c810160208610156119ee5750805b601f850160051c820191505b8181101561093d578281556001016119fa565b67ffffffffffffffff831115611a2557611a256117ca565b611a3983611a338354611923565b836119c7565b6000601f841160018114611a6d5760008515611a555750838201355b600019600387901b1c1916600186901b1783556114da565b600083815260209020601f19861690835b82811015611a9e5786850135825560209485019460019092019101611a7e565b5086821015611abb5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60008219821115611ae057611ae061195d565b500190565b6000808454611af381611923565b60018281168015611b0b5760018114611b2057611b4f565b60ff1984168752821515830287019450611b4f565b8860005260208060002060005b85811015611b465781548a820152908401908201611b2d565b50505082870194505b505050508351611b638183602088016115f4565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b9f90830184611620565b9695505050505050565b600060208284031215611bbb57600080fd5b81516111f6816115c1565b600060018201611bd857611bd861195d565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611c0457611c04611bdf565b500490565b600082821015611c1b57611c1b61195d565b500390565b600082611c2f57611c2f611bdf565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212209673122574c2205686a0e65c1d0be8484bc370d432c363eb365ef6215146bc7664736f6c634300080f0033
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c80637e4831d3116100f7578063bb30ac4911610095578063f229e19411610064578063f229e19414610522578063f2fde38b14610542578063f765417614610562578063fdcb387c1461058257600080fd5b8063bb30ac4914610479578063c7d0db0414610499578063c87b56dd146104b9578063e985e9c5146104d957600080fd5b806395d89b41116100d157806395d89b4114610411578063a0712d6814610426578063a22cb46514610439578063b88d4fde1461045957600080fd5b80637e4831d3146103b95780638da5cb5b146103d3578063931688cb146103f157600080fd5b80633ccfd60b1161016f5780636352211e1161013e5780636352211e1461034f5780636c0360eb1461036f57806370a0823114610384578063715018a6146103a457600080fd5b80633ccfd60b146102e657806342842e0e146102fb57806353df5c7c1461031b5780635d148e5c1461033057600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd146102835780631de7463a146102a657806323b872dd146102c657600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046115d7565b6105a2565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105f4565b6040516101fe919061164c565b34801561023557600080fd5b5061024961024436600461165f565b610686565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611694565b6106ca565b005b34801561028f57600080fd5b50600154600054035b6040519081526020016101fe565b3480156102b257600080fd5b506102986102c136600461165f565b61076a565b3480156102d257600080fd5b506102816102e13660046116be565b6107ac565b3480156102f257600080fd5b50610281610945565b34801561030757600080fd5b506102816103163660046116be565b610a61565b34801561032757600080fd5b50610281610a81565b34801561033c57600080fd5b50600e546101f290610100900460ff1681565b34801561035b57600080fd5b5061024961036a36600461165f565b610abc565b34801561037b57600080fd5b5061021c610ac7565b34801561039057600080fd5b5061029861039f3660046116fa565b610b55565b3480156103b057600080fd5b50610281610ba4565b3480156103c557600080fd5b50600e546101f29060ff1681565b3480156103df57600080fd5b506008546001600160a01b0316610249565b3480156103fd57600080fd5b5061028161040c366004611715565b610bda565b34801561041d57600080fd5b5061021c610c5b565b61028161043436600461165f565b610c6a565b34801561044557600080fd5b50610281610454366004611797565b610e4e565b34801561046557600080fd5b506102816104743660046117e0565b610ee3565b34801561048557600080fd5b506102816104943660046118bc565b610f2d565b3480156104a557600080fd5b506102816104b43660046118de565b610f7f565b3480156104c557600080fd5b5061021c6104d436600461165f565b610fbc565b3480156104e557600080fd5b506101f26104f43660046118f9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561052e57600080fd5b5061028161053d36600461165f565b61105d565b34801561054e57600080fd5b5061028161055d3660046116fa565b61109f565b34801561056e57600080fd5b50600b54610249906001600160a01b031681565b34801561058e57600080fd5b5061028161059d3660046116fa565b611137565b60006301ffc9a760e01b6001600160e01b0319831614806105d357506380ac58cd60e01b6001600160e01b03198316145b806105ee5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461060390611923565b80601f016020809104026020016040519081016040528092919081815260200182805461062f90611923565b801561067c5780601f106106515761010080835404028352916020019161067c565b820191906000526020600020905b81548152906001019060200180831161065f57829003601f168201915b5050505050905090565b600061069182611183565b6106ae576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106d582610abc565b9050336001600160a01b0382161461070e576106f181336104f4565b61070e576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600d5460008281526010602052604081205490919060ff161561079857506000828152600f60205260409020545b60006107a48483611973565b949350505050565b60006107b7826111aa565b9050836001600160a01b0316816001600160a01b0316146107ea5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108375761081a86336104f4565b61083757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661085e57604051633a954ecd60e21b815260040160405180910390fd5b801561086957600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036108fb576001840160008181526004602052604081205490036108f95760005481146108f95760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b031633146109785760405162461bcd60e51b815260040161096f90611992565b60405180910390fd5b600b546001600160a01b03166109c85760405162461bcd60e51b81526020600482015260156024820152741cdc1b1a5d081859191c995cdcc81b9bdd081cd95d605a1b604482015260640161096f565b600b546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610a15576040519150601f19603f3d011682016040523d82523d6000602084013e610a1a565b606091505b5050905080610a5e5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161096f565b50565b610a7c83838360405180602001604052806000815250610ee3565b505050565b6008546001600160a01b03163314610aab5760405162461bcd60e51b815260040161096f90611992565b600e805461ff001916610100179055565b60006105ee826111aa565b600a8054610ad490611923565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0090611923565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b505050505081565b60006001600160a01b038216610b7e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610bce5760405162461bcd60e51b815260040161096f90611992565b610bd86000611218565b565b6008546001600160a01b03163314610c045760405162461bcd60e51b815260040161096f90611992565b600e54610100900460ff1615610c4e5760405162461bcd60e51b815260206004820152600f60248201526e18985cd9481d5c9a481b1bd8dad959608a1b604482015260640161096f565b600a610a7c828483611a0d565b60606003805461060390611923565b600260095403610cbc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161096f565b6002600955323314610d105760405162461bcd60e51b815260206004820152601f60248201527f7468652063616c6c657220697320616e6f7468657220636f6e74726163742e00604482015260640161096f565b600e5460ff1615610d545760405162461bcd60e51b815260206004820152600e60248201526d1b5a5b9d1a5b99c81c185d5cd95960921b604482015260640161096f565b600d5460008281526010602052604090205460ff1615610d7f57506000818152600f60205260409020545b6000610d8b8383611973565b9050348114610ddc5760405162461bcd60e51b815260206004820152601b60248201527f646964206e6f742073656e6420636f727265637420616d6f756e740000000000604482015260640161096f565b600c5483610ded6001546000540390565b610df79190611acd565b1115610e3a5760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e481c995858da195960721b604482015260640161096f565b610e44338461126a565b5050600160095550565b336001600160a01b03831603610e775760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eee8484846107ac565b6001600160a01b0383163b15610f2757610f0a84848484611288565b610f27576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610f575760405162461bcd60e51b815260040161096f90611992565b6000918252600f6020908152604080842092909255601090529020805460ff19166001179055565b6008546001600160a01b03163314610fa95760405162461bcd60e51b815260040161096f90611992565b600e805460ff1916911515919091179055565b6060610fc782611183565b61102b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161096f565b600a61103683611373565b604051602001611047929190611ae5565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146110875760405162461bcd60e51b815260040161096f90611992565b6000908152601060205260409020805460ff19169055565b6008546001600160a01b031633146110c95760405162461bcd60e51b815260040161096f90611992565b6001600160a01b03811661112e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161096f565b610a5e81611218565b6008546001600160a01b031633146111615760405162461bcd60e51b815260040161096f90611992565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60008054821080156105ee575050600090815260046020526040902054600160e01b161590565b6000816000548110156111ff5760008181526004602052604081205490600160e01b821690036111fd575b806000036111f65750600019016000818152600460205260409020546111d5565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611284828260405180602001604052806000815250611474565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112bd903390899088908890600401611b6c565b6020604051808303816000875af19250505080156112f8575060408051601f3d908101601f191682019092526112f591810190611ba9565b60015b611356573d808015611326576040519150601f19603f3d011682016040523d82523d6000602084013e61132b565b606091505b50805160000361134e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608160000361139a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113c457806113ae81611bc6565b91506113bd9050600a83611bf5565b915061139e565b60008167ffffffffffffffff8111156113df576113df6117ca565b6040519080825280601f01601f191660200182016040528015611409576020820181803683370190505b5090505b84156107a45761141e600183611c09565b915061142b600a86611c20565b611436906030611acd565b60f81b81838151811061144b5761144b611c34565b60200101906001600160f81b031916908160001a90535061146d600a86611bf5565b945061140d565b61147e83836114e1565b6001600160a01b0383163b15610a7c576000548281035b6114a86000868380600101945086611288565b6114c5576040516368d2bf6b60e11b815260040160405180910390fd5b8181106114955781600054146114da57600080fd5b5050505050565b6000546001600160a01b03831661150a57604051622e076360e81b815260040160405180910390fd5b8160000361152b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106115755760005550505050565b6001600160e01b031981168114610a5e57600080fd5b6000602082840312156115e957600080fd5b81356111f6816115c1565b60005b8381101561160f5781810151838201526020016115f7565b83811115610f275750506000910152565b600081518084526116388160208601602086016115f4565b601f01601f19169290920160200192915050565b6020815260006111f66020830184611620565b60006020828403121561167157600080fd5b5035919050565b80356001600160a01b038116811461168f57600080fd5b919050565b600080604083850312156116a757600080fd5b6116b083611678565b946020939093013593505050565b6000806000606084860312156116d357600080fd5b6116dc84611678565b92506116ea60208501611678565b9150604084013590509250925092565b60006020828403121561170c57600080fd5b6111f682611678565b6000806020838503121561172857600080fd5b823567ffffffffffffffff8082111561174057600080fd5b818501915085601f83011261175457600080fd5b81358181111561176357600080fd5b86602082850101111561177557600080fd5b60209290920196919550909350505050565b8035801515811461168f57600080fd5b600080604083850312156117aa57600080fd5b6117b383611678565b91506117c160208401611787565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156117f657600080fd5b6117ff85611678565b935061180d60208601611678565b925060408501359150606085013567ffffffffffffffff8082111561183157600080fd5b818701915087601f83011261184557600080fd5b813581811115611857576118576117ca565b604051601f8201601f19908116603f0116810190838211818310171561187f5761187f6117ca565b816040528281528a602084870101111561189857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156118cf57600080fd5b50508035926020909101359150565b6000602082840312156118f057600080fd5b6111f682611787565b6000806040838503121561190c57600080fd5b61191583611678565b91506117c160208401611678565b600181811c9082168061193757607f821691505b60208210810361195757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561198d5761198d61195d565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610a7c57600081815260208120601f850160051c810160208610156119ee5750805b601f850160051c820191505b8181101561093d578281556001016119fa565b67ffffffffffffffff831115611a2557611a256117ca565b611a3983611a338354611923565b836119c7565b6000601f841160018114611a6d5760008515611a555750838201355b600019600387901b1c1916600186901b1783556114da565b600083815260209020601f19861690835b82811015611a9e5786850135825560209485019460019092019101611a7e565b5086821015611abb5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60008219821115611ae057611ae061195d565b500190565b6000808454611af381611923565b60018281168015611b0b5760018114611b2057611b4f565b60ff1984168752821515830287019450611b4f565b8860005260208060002060005b85811015611b465781548a820152908401908201611b2d565b50505082870194505b505050508351611b638183602088016115f4565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b9f90830184611620565b9695505050505050565b600060208284031215611bbb57600080fd5b81516111f6816115c1565b600060018201611bd857611bd861195d565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611c0457611c04611bdf565b500490565b600082821015611c1b57611c1b61195d565b500390565b600082611c2f57611c2f611bdf565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212209673122574c2205686a0e65c1d0be8484bc370d432c363eb365ef6215146bc7664736f6c634300080f0033
Deployed Bytecode Sourcemap
58932:2863:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28692:615;;;;;;;;;;-1:-1:-1;28692:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28692:615:0;;;;;;;;34339:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36285:204::-;;;;;;;;;;-1:-1:-1;36285:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;36285:204:0;1528:203:1;35833:386:0;;;;;;;;;;-1:-1:-1;35833:386:0;;;;;:::i;:::-;;:::i;:::-;;27746:315;;;;;;;;;;-1:-1:-1;28012:12:0;;27799:7;27996:13;:28;27746:315;;;2319:25:1;;;2307:2;2292:18;27746:315:0;2173:177:1;60729:288:0;;;;;;;;;;-1:-1:-1;60729:288:0;;;;;:::i;:::-;;:::i;45550:2800::-;;;;;;;;;;-1:-1:-1;45550:2800:0;;;;;:::i;:::-;;:::i;61558:232::-;;;;;;;;;;;;;:::i;37175:185::-;;;;;;;;;;-1:-1:-1;37175:185:0;;;;;:::i;:::-;;:::i;59928:79::-;;;;;;;;;;;;;:::i;59175:33::-;;;;;;;;;;-1:-1:-1;59175:33:0;;;;;;;;;;;34128:144;;;;;;;;;;-1:-1:-1;34128:144:0;;;;;:::i;:::-;;:::i;58995:21::-;;;;;;;;;;;;;:::i;29371:224::-;;;;;;;;;;-1:-1:-1;29371:224:0;;;;;:::i;:::-;;:::i;7489:103::-;;;;;;;;;;;;;:::i;59139:29::-;;;;;;;;;;-1:-1:-1;59139:29:0;;;;;;;;6838:87;;;;;;;;;;-1:-1:-1;6911:6:0;;-1:-1:-1;;;;;6911:6:0;6838:87;;60121:164;;;;;;;;;;-1:-1:-1;60121:164:0;;;;;:::i;:::-;;:::i;34508:104::-;;;;;;;;;;;;;:::i;61025:525::-;;;;;;:::i;:::-;;:::i;36561:308::-;;;;;;;;;;-1:-1:-1;36561:308:0;;;;;:::i;:::-;;:::i;37431:399::-;;;;;;;;;;-1:-1:-1;37431:399:0;;;;;:::i;:::-;;:::i;60293:183::-;;;;;;;;;;-1:-1:-1;60293:183:0;;;;;:::i;:::-;;:::i;60617:104::-;;;;;;;;;;-1:-1:-1;60617:104:0;;;;;:::i;:::-;;:::i;59665:255::-;;;;;;;;;;-1:-1:-1;59665:255:0;;;;;:::i;:::-;;:::i;36940:164::-;;;;;;;;;;-1:-1:-1;36940:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37061:25:0;;;37037:4;37061:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36940:164;60484:125;;;;;;;;;;-1:-1:-1;60484:125:0;;;;;:::i;:::-;;:::i;7747:201::-;;;;;;;;;;-1:-1:-1;7747:201:0;;;;;:::i;:::-;;:::i;59025:20::-;;;;;;;;;;-1:-1:-1;59025:20:0;;;;-1:-1:-1;;;;;59025:20:0;;;60015:98;;;;;;;;;;-1:-1:-1;60015:98:0;;;;;:::i;:::-;;:::i;28692:615::-;28777:4;-1:-1:-1;;;;;;;;;29077:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;29154:25:0;;;29077:102;:179;;;-1:-1:-1;;;;;;;;;;29231:25:0;;;29077:179;29057:199;28692:615;-1:-1:-1;;28692:615:0:o;34339:100::-;34393:13;34426:5;34419:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34339:100;:::o;36285:204::-;36353:7;36378:16;36386:7;36378;:16::i;:::-;36373:64;;36403:34;;-1:-1:-1;;;36403:34:0;;;;;;;;;;;36373:64;-1:-1:-1;36457:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36457:24:0;;36285:204::o;35833:386::-;35906:13;35922:16;35930:7;35922;:16::i;:::-;35906:32;-1:-1:-1;56733:10:0;-1:-1:-1;;;;;35955:28:0;;;35951:175;;36003:44;36020:5;56733:10;36940:164;:::i;36003:44::-;35998:128;;36075:35;;-1:-1:-1;;;36075:35:0;;;;;;;;;;;35998:128;36138:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36138:29:0;-1:-1:-1;;;;;36138:29:0;;;;;;;;;36183:28;;36138:24;;36183:28;;;;;;;35895:324;35833:386;;:::o;60729:288::-;60824:9;;60788:7;60849:29;;;:19;:29;;;;;;60788:7;;60824:9;60849:29;;60846:94;;;-1:-1:-1;60903:25:0;;;;:15;:25;;;;;;60846:94;60952:13;60968:16;60976:8;60968:5;:16;:::i;:::-;60952:32;60729:288;-1:-1:-1;;;;60729:288:0:o;45550:2800::-;45684:27;45714;45733:7;45714:18;:27::i;:::-;45684:57;;45799:4;-1:-1:-1;;;;;45758:45:0;45774:19;-1:-1:-1;;;;;45758:45:0;;45754:86;;45812:28;;-1:-1:-1;;;45812:28:0;;;;;;;;;;;45754:86;45854:27;44280:21;;;44107:15;44322:4;44315:36;44404:4;44388:21;;44494:26;;56733:10;45247:30;;;-1:-1:-1;;;;;44945:26:0;;45226:19;;;45223:55;46033:174;;46120:43;46137:4;56733:10;36940:164;:::i;46120:43::-;46115:92;;46172:35;;-1:-1:-1;;;46172:35:0;;;;;;;;;;;46115:92;-1:-1:-1;;;;;46224:16:0;;46220:52;;46249:23;;-1:-1:-1;;;46249:23:0;;;;;;;;;;;46220:52;46421:15;46418:160;;;46561:1;46540:19;46533:30;46418:160;-1:-1:-1;;;;;46956:24:0;;;;;;;:18;:24;;;;;;46954:26;;-1:-1:-1;;46954:26:0;;;47025:22;;;;;;;;;47023:24;;-1:-1:-1;47023:24:0;;;34027:11;34003:22;33999:40;33986:62;-1:-1:-1;;;33986:62:0;47318:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;47612:46:0;;:51;;47608:626;;47716:1;47706:11;;47684:19;47839:30;;;:17;:30;;;;;;:35;;47835:384;;47977:13;;47962:11;:28;47958:242;;48124:30;;;;:17;:30;;;;;:52;;;47958:242;47665:569;47608:626;48281:7;48277:2;-1:-1:-1;;;;;48262:27:0;48271:4;-1:-1:-1;;;;;48262:27:0;;;;;;;;;;;48300:42;45673:2677;;;45550:2800;;;:::o;61558:232::-;6911:6;;-1:-1:-1;;;;;6911:6:0;56733:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;;;;;;;;;61614:5:::1;::::0;-1:-1:-1;;;;;61614:5:0::1;61606:53;;;::::0;-1:-1:-1;;;61606:53:0;;7131:2:1;61606:53:0::1;::::0;::::1;7113:21:1::0;7170:2;7150:18;;;7143:30;-1:-1:-1;;;7189:18:1;;;7182:51;7250:18;;61606:53:0::1;6929:345:1::0;61606:53:0::1;61691:5;::::0;:44:::1;::::0;61673:12:::1;::::0;-1:-1:-1;;;;;61691:5:0::1;::::0;61709:21:::1;::::0;61673:12;61691:44;61673:12;61691:44;61709:21;61691:5;:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61672:63;;;61754:7;61746:36;;;::::0;-1:-1:-1;;;61746:36:0;;7691:2:1;61746:36:0::1;::::0;::::1;7673:21:1::0;7730:2;7710:18;;;7703:30;-1:-1:-1;;;7749:18:1;;;7742:46;7805:18;;61746:36:0::1;7489:340:1::0;61746:36:0::1;61595:195;61558:232::o:0;37175:185::-;37313:39;37330:4;37336:2;37340:7;37313:39;;;;;;;;;;;;:16;:39::i;:::-;37175:185;;;:::o;59928:79::-;6911:6;;-1:-1:-1;;;;;6911:6:0;56733:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;59979:13:::1;:20:::0;;-1:-1:-1;;59979:20:0::1;;;::::0;;59928:79::o;34128:144::-;34192:7;34235:27;34254:7;34235:18;:27::i;58995:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29371:224::-;29435:7;-1:-1:-1;;;;;29459:19:0;;29455:60;;29487:28;;-1:-1:-1;;;29487:28:0;;;;;;;;;;;29455:60;-1:-1:-1;;;;;;29533:25:0;;;;;:18;:25;;;;;;23926:13;29533:54;;29371:224::o;7489:103::-;6911:6;;-1:-1:-1;;;;;6911:6:0;56733:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;7554:30:::1;7581:1;7554:18;:30::i;:::-;7489:103::o:0;60121:164::-;6911:6;;-1:-1:-1;;;;;6911:6:0;56733:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;60211:13:::1;::::0;::::1;::::0;::::1;;;60210:14;60202:42;;;::::0;-1:-1:-1;;;60202:42:0;;8036:2:1;60202:42:0::1;::::0;::::1;8018:21:1::0;8075:2;8055:18;;;8048:30;-1:-1:-1;;;8094:18:1;;;8087:45;8149:18;;60202:42:0::1;7834:339:1::0;60202:42:0::1;60255:7;:22;60265:12:::0;;60255:7;:22:::1;:::i;34508:104::-:0;34564:13;34597:7;34590:14;;;;;:::i;61025:525::-;3936:1;4534:7;;:19;4526:63;;;;-1:-1:-1;;;4526:63:0;;10438:2:1;4526:63:0;;;10420:21:1;10477:2;10457:18;;;10450:30;10516:33;10496:18;;;10489:61;10567:18;;4526:63:0;10236:355:1;4526:63:0;3936:1;4667:7;:18;59381:9:::1;59394:10;59381:23;59373:67;;;::::0;-1:-1:-1;;;59373:67:0;;10798:2:1;59373:67:0::1;::::0;::::1;10780:21:1::0;10837:2;10817:18;;;10810:30;10876:33;10856:18;;;10849:61;10927:18;;59373:67:0::1;10596:355:1::0;59373:67:0::1;61118:10:::2;::::0;::::2;;61117:11;61109:38;;;::::0;-1:-1:-1;;;61109:38:0;;11158:2:1;61109:38:0::2;::::0;::::2;11140:21:1::0;11197:2;11177:18;;;11170:30;-1:-1:-1;;;11216:18:1;;;11209:44;11270:18;;61109:38:0::2;10956:338:1::0;61109:38:0::2;61176:9;::::0;61160:13:::2;61201:29:::0;;;:19:::2;:29;::::0;;;;;::::2;;61198:94;;;-1:-1:-1::0;61255:25:0::2;::::0;;;:15:::2;:25;::::0;;;;;61198:94:::2;61304:18;61325:16;61333:8:::0;61325:5;:16:::2;:::i;:::-;61304:37;;61376:9;61362:10;:23;61354:63;;;::::0;-1:-1:-1;;;61354:63:0;;11501:2:1;61354:63:0::2;::::0;::::2;11483:21:1::0;11540:2;11520:18;;;11513:30;11579:29;11559:18;;;11552:57;11626:18;;61354:63:0::2;11299:351:1::0;61354:63:0::2;61466:9;;61454:8;61438:13;28012:12:::0;;27799:7;27996:13;:28;;27746:315;61438:13:::2;:24;;;;:::i;:::-;:37;;61430:68;;;::::0;-1:-1:-1;;;61430:68:0;;11990:2:1;61430:68:0::2;::::0;::::2;11972:21:1::0;12029:2;12009:18;;;12002:30;-1:-1:-1;;;12048:18:1;;;12041:48;12106:18;;61430:68:0::2;11788:342:1::0;61430:68:0::2;61511:31;61521:10;61533:8;61511:9;:31::i;:::-;-1:-1:-1::0;;3892:1:0;4846:7;:22;-1:-1:-1;61025:525:0:o;36561:308::-;56733:10;-1:-1:-1;;;;;36660:31:0;;;36656:61;;36700:17;;-1:-1:-1;;;36700:17:0;;;;;;;;;;;36656:61;56733:10;36730:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;36730:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;36730:60:0;;;;;;;;;;36806:55;;540:41:1;;;36730:49:0;;56733:10;36806:55;;513:18:1;36806:55:0;;;;;;;36561:308;;:::o;37431:399::-;37598:31;37611:4;37617:2;37621:7;37598:12;:31::i;:::-;-1:-1:-1;;;;;37644:14:0;;;:19;37640:183;;37683:56;37714:4;37720:2;37724:7;37733:5;37683:30;:56::i;:::-;37678:145;;37767:40;;-1:-1:-1;;;37767:40:0;;;;;;;;;;;37678:145;37431:399;;;;:::o;60293:183::-;6911:6;;-1:-1:-1;;;;;6911:6:0;56733:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;60385:26:::1;::::0;;;:15:::1;:26;::::0;;;;;;;:35;;;;60431:19:::1;:30:::0;;;;:37;;-1:-1:-1;;60431:37:0::1;60464:4;60431:37;::::0;;60293:183::o;60617:104::-;6911:6;;-1:-1:-1;;;;;6911:6:0;56733:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;60689:10:::1;:24:::0;;-1:-1:-1;;60689:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;60617:104::o;59665:255::-;59730:13;59764:16;59772:7;59764;:16::i;:::-;59756:76;;;;-1:-1:-1;;;59756:76:0;;12337:2:1;59756:76:0;;;12319:21:1;12376:2;12356:18;;;12349:30;12415:34;12395:18;;;12388:62;-1:-1:-1;;;12466:18:1;;;12459:45;12521:19;;59756:76:0;12135:411:1;59756:76:0;59876:7;59885:25;59902:7;59885:16;:25::i;:::-;59859:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59845:67;;59665:255;;;:::o;60484:125::-;6911:6;;-1:-1:-1;;;;;6911:6:0;56733:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;60596:5:::1;60563:30:::0;;;:19:::1;:30;::::0;;;;:38;;-1:-1:-1;;60563:38:0::1;::::0;;60484:125::o;7747:201::-;6911:6;;-1:-1:-1;;;;;6911:6:0;56733:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7836:22:0;::::1;7828:73;;;::::0;-1:-1:-1;;;7828:73:0;;13765:2:1;7828:73:0::1;::::0;::::1;13747:21:1::0;13804:2;13784:18;;;13777:30;13843:34;13823:18;;;13816:62;-1:-1:-1;;;13894:18:1;;;13887:36;13940:19;;7828:73:0::1;13563:402:1::0;7828:73:0::1;7912:28;7931:8;7912:18;:28::i;60015:98::-:0;6911:6;;-1:-1:-1;;;;;6911:6:0;56733:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;60089:5:::1;:16:::0;;-1:-1:-1;;;;;;60089:16:0::1;-1:-1:-1::0;;;;;60089:16:0;;;::::1;::::0;;;::::1;::::0;;60015:98::o;38085:273::-;38142:4;38232:13;;38222:7;:23;38179:152;;;;-1:-1:-1;;38283:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;38283:43:0;:48;;38085:273::o;31045:1129::-;31112:7;31147;31249:13;;31242:4;:20;31238:869;;;31287:14;31304:23;;;:17;:23;;;;;;;-1:-1:-1;;;31393:23:0;;:28;;31389:699;;31912:113;31919:6;31929:1;31919:11;31912:113;;-1:-1:-1;;;31990:6:0;31972:25;;;;:17;:25;;;;;;31912:113;;;32058:6;31045:1129;-1:-1:-1;;;31045:1129:0:o;31389:699::-;31264:843;31238:869;32135:31;;-1:-1:-1;;;32135:31:0;;;;;;;;;;;8108:191;8201:6;;;-1:-1:-1;;;;;8218:17:0;;;-1:-1:-1;;;;;;8218:17:0;;;;;;;8251:40;;8201:6;;;8218:17;8201:6;;8251:40;;8182:16;;8251:40;8171:128;8108:191;:::o;38442:104::-;38511:27;38521:2;38525:8;38511:27;;;;;;;;;;;;:9;:27::i;:::-;38442:104;;:::o;52301:716::-;52485:88;;-1:-1:-1;;;52485:88:0;;52464:4;;-1:-1:-1;;;;;52485:45:0;;;;;:88;;56733:10;;52552:4;;52558:7;;52567:5;;52485:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52485:88:0;;;;;;;;-1:-1:-1;;52485:88:0;;;;;;;;;;;;:::i;:::-;;;52481:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52768:6;:13;52785:1;52768:18;52764:235;;52814:40;;-1:-1:-1;;;52814:40:0;;;;;;;;;;;52764:235;52957:6;52951:13;52942:6;52938:2;52934:15;52927:38;52481:529;-1:-1:-1;;;;;;52644:64:0;-1:-1:-1;;;52644:64:0;;-1:-1:-1;52301:716:0;;;;;;:::o;365:723::-;421:13;642:5;651:1;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;38962:681;39085:19;39091:2;39095:8;39085:5;:19::i;:::-;-1:-1:-1;;;;;39146:14:0;;;:19;39142:483;;39186:11;39200:13;39248:14;;;39281:233;39312:62;39351:1;39355:2;39359:7;;;;;;39368:5;39312:30;:62::i;:::-;39307:167;;39410:40;;-1:-1:-1;;;39410:40:0;;;;;;;;;;;39307:167;39509:3;39501:5;:11;39281:233;;39596:3;39579:13;;:20;39575:34;;39601:8;;;39575:34;39167:458;;38962:681;;;:::o;39916:1529::-;39981:20;40004:13;-1:-1:-1;;;;;40032:16:0;;40028:48;;40057:19;;-1:-1:-1;;;40057:19:0;;;;;;;;;;;40028:48;40091:8;40103:1;40091:13;40087:44;;40113:18;;-1:-1:-1;;;40113:18:0;;;;;;;;;;;40087:44;-1:-1:-1;;;;;40619:22:0;;;;;;:18;:22;;24063:2;40619:22;;:70;;40657:31;40645:44;;40619:70;;;34027:11;34003:22;33999:40;-1:-1:-1;35737:15:0;;35712:23;35708:45;33996:51;33986:62;40932:31;;;;:17;:31;;;;;:173;40950:12;41181:23;;;41219:101;41246:35;;41271:9;;;;;-1:-1:-1;;;;;41246:35:0;;;41263:1;;41246:35;;41263:1;;41246:35;41315:3;41305:7;:13;41219:101;;41336:13;:19;-1:-1:-1;37175:185:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:592::-;2950:6;2958;3011:2;2999:9;2990:7;2986:23;2982:32;2979:52;;;3027:1;3024;3017:12;2979:52;3067:9;3054:23;3096:18;3137:2;3129:6;3126:14;3123:34;;;3153:1;3150;3143:12;3123:34;3191:6;3180:9;3176:22;3166:32;;3236:7;3229:4;3225:2;3221:13;3217:27;3207:55;;3258:1;3255;3248:12;3207:55;3298:2;3285:16;3324:2;3316:6;3313:14;3310:34;;;3340:1;3337;3330:12;3310:34;3385:7;3380:2;3371:6;3367:2;3363:15;3359:24;3356:37;3353:57;;;3406:1;3403;3396:12;3353:57;3437:2;3429:11;;;;;3459:6;;-1:-1:-1;2879:592:1;;-1:-1:-1;;;;2879:592:1:o;3476:160::-;3541:20;;3597:13;;3590:21;3580:32;;3570:60;;3626:1;3623;3616:12;3641:254;3706:6;3714;3767:2;3755:9;3746:7;3742:23;3738:32;3735:52;;;3783:1;3780;3773:12;3735:52;3806:29;3825:9;3806:29;:::i;:::-;3796:39;;3854:35;3885:2;3874:9;3870:18;3854:35;:::i;:::-;3844:45;;3641:254;;;;;:::o;3900:127::-;3961:10;3956:3;3952:20;3949:1;3942:31;3992:4;3989:1;3982:15;4016:4;4013:1;4006:15;4032:1138;4127:6;4135;4143;4151;4204:3;4192:9;4183:7;4179:23;4175:33;4172:53;;;4221:1;4218;4211:12;4172:53;4244:29;4263:9;4244:29;:::i;:::-;4234:39;;4292:38;4326:2;4315:9;4311:18;4292:38;:::i;:::-;4282:48;;4377:2;4366:9;4362:18;4349:32;4339:42;;4432:2;4421:9;4417:18;4404:32;4455:18;4496:2;4488:6;4485:14;4482:34;;;4512:1;4509;4502:12;4482:34;4550:6;4539:9;4535:22;4525:32;;4595:7;4588:4;4584:2;4580:13;4576:27;4566:55;;4617:1;4614;4607:12;4566:55;4653:2;4640:16;4675:2;4671;4668:10;4665:36;;;4681:18;;:::i;:::-;4756:2;4750:9;4724:2;4810:13;;-1:-1:-1;;4806:22:1;;;4830:2;4802:31;4798:40;4786:53;;;4854:18;;;4874:22;;;4851:46;4848:72;;;4900:18;;:::i;:::-;4940:10;4936:2;4929:22;4975:2;4967:6;4960:18;5015:7;5010:2;5005;5001;4997:11;4993:20;4990:33;4987:53;;;5036:1;5033;5026:12;4987:53;5092:2;5087;5083;5079:11;5074:2;5066:6;5062:15;5049:46;5137:1;5132:2;5127;5119:6;5115:15;5111:24;5104:35;5158:6;5148:16;;;;;;;4032:1138;;;;;;;:::o;5175:248::-;5243:6;5251;5304:2;5292:9;5283:7;5279:23;5275:32;5272:52;;;5320:1;5317;5310:12;5272:52;-1:-1:-1;;5343:23:1;;;5413:2;5398:18;;;5385:32;;-1:-1:-1;5175:248:1:o;5428:180::-;5484:6;5537:2;5525:9;5516:7;5512:23;5508:32;5505:52;;;5553:1;5550;5543:12;5505:52;5576:26;5592:9;5576:26;:::i;5613:260::-;5681:6;5689;5742:2;5730:9;5721:7;5717:23;5713:32;5710:52;;;5758:1;5755;5748:12;5710:52;5781:29;5800:9;5781:29;:::i;:::-;5771:39;;5829:38;5863:2;5852:9;5848:18;5829:38;:::i;5878:380::-;5957:1;5953:12;;;;6000;;;6021:61;;6075:4;6067:6;6063:17;6053:27;;6021:61;6128:2;6120:6;6117:14;6097:18;6094:38;6091:161;;6174:10;6169:3;6165:20;6162:1;6155:31;6209:4;6206:1;6199:15;6237:4;6234:1;6227:15;6091:161;;5878:380;;;:::o;6263:127::-;6324:10;6319:3;6315:20;6312:1;6305:31;6355:4;6352:1;6345:15;6379:4;6376:1;6369:15;6395:168;6435:7;6501:1;6497;6493:6;6489:14;6486:1;6483:21;6478:1;6471:9;6464:17;6460:45;6457:71;;;6508:18;;:::i;:::-;-1:-1:-1;6548:9:1;;6395:168::o;6568:356::-;6770:2;6752:21;;;6789:18;;;6782:30;6848:34;6843:2;6828:18;;6821:62;6915:2;6900:18;;6568:356::o;8304:545::-;8406:2;8401:3;8398:11;8395:448;;;8442:1;8467:5;8463:2;8456:17;8512:4;8508:2;8498:19;8582:2;8570:10;8566:19;8563:1;8559:27;8553:4;8549:38;8618:4;8606:10;8603:20;8600:47;;;-1:-1:-1;8641:4:1;8600:47;8696:2;8691:3;8687:12;8684:1;8680:20;8674:4;8670:31;8660:41;;8751:82;8769:2;8762:5;8759:13;8751:82;;;8814:17;;;8795:1;8784:13;8751:82;;9025:1206;9149:18;9144:3;9141:27;9138:53;;;9171:18;;:::i;:::-;9200:94;9290:3;9250:38;9282:4;9276:11;9250:38;:::i;:::-;9244:4;9200:94;:::i;:::-;9320:1;9345:2;9340:3;9337:11;9362:1;9357:616;;;;10017:1;10034:3;10031:93;;;-1:-1:-1;10090:19:1;;;10077:33;10031:93;-1:-1:-1;;8982:1:1;8978:11;;;8974:24;8970:29;8960:40;9006:1;9002:11;;;8957:57;10137:78;;9330:895;;9357:616;8251:1;8244:14;;;8288:4;8275:18;;-1:-1:-1;;9393:17:1;;;9494:9;9516:229;9530:7;9527:1;9524:14;9516:229;;;9619:19;;;9606:33;9591:49;;9726:4;9711:20;;;;9679:1;9667:14;;;;9546:12;9516:229;;;9520:3;9773;9764:7;9761:16;9758:159;;;9897:1;9893:6;9887:3;9881;9878:1;9874:11;9870:21;9866:34;9862:39;9849:9;9844:3;9840:19;9827:33;9823:79;9815:6;9808:95;9758:159;;;9960:1;9954:3;9951:1;9947:11;9943:19;9937:4;9930:33;9330:895;;9025:1206;;;:::o;11655:128::-;11695:3;11726:1;11722:6;11719:1;11716:13;11713:39;;;11732:18;;:::i;:::-;-1:-1:-1;11768:9:1;;11655:128::o;12551:1007::-;12727:3;12756:1;12789:6;12783:13;12819:36;12845:9;12819:36;:::i;:::-;12874:1;12891:18;;;12918:133;;;;13065:1;13060:356;;;;12884:532;;12918:133;-1:-1:-1;;12951:24:1;;12939:37;;13024:14;;13017:22;13005:35;;12996:45;;;-1:-1:-1;12918:133:1;;13060:356;13091:6;13088:1;13081:17;13121:4;13166:2;13163:1;13153:16;13191:1;13205:165;13219:6;13216:1;13213:13;13205:165;;;13297:14;;13284:11;;;13277:35;13340:16;;;;13234:10;;13205:165;;;13209:3;;;13399:6;13394:3;13390:16;13383:23;;12884:532;;;;;13447:6;13441:13;13463:55;13509:8;13504:3;13497:4;13489:6;13485:17;13463:55;:::i;:::-;13534:18;;12551:1007;-1:-1:-1;;;;12551:1007:1:o;13970:489::-;-1:-1:-1;;;;;14239:15:1;;;14221:34;;14291:15;;14286:2;14271:18;;14264:43;14338:2;14323:18;;14316:34;;;14386:3;14381:2;14366:18;;14359:31;;;14164:4;;14407:46;;14433:19;;14425:6;14407:46;:::i;:::-;14399:54;13970:489;-1:-1:-1;;;;;;13970:489:1:o;14464:249::-;14533:6;14586:2;14574:9;14565:7;14561:23;14557:32;14554:52;;;14602:1;14599;14592:12;14554:52;14634:9;14628:16;14653:30;14677:5;14653:30;:::i;14718:135::-;14757:3;14778:17;;;14775:43;;14798:18;;:::i;:::-;-1:-1:-1;14845:1:1;14834:13;;14718:135::o;14858:127::-;14919:10;14914:3;14910:20;14907:1;14900:31;14950:4;14947:1;14940:15;14974:4;14971:1;14964:15;14990:120;15030:1;15056;15046:35;;15061:18;;:::i;:::-;-1:-1:-1;15095:9:1;;14990:120::o;15115:125::-;15155:4;15183:1;15180;15177:8;15174:34;;;15188:18;;:::i;:::-;-1:-1:-1;15225:9:1;;15115:125::o;15245:112::-;15277:1;15303;15293:35;;15308:18;;:::i;:::-;-1:-1:-1;15342:9:1;;15245:112::o;15362:127::-;15423:10;15418:3;15414:20;15411:1;15404:31;15454:4;15451:1;15444:15;15478:4;15475:1;15468:15
Swarm Source
ipfs://9673122574c2205686a0e65c1d0be8484bc370d432c363eb365ef6215146bc76
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.