Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,649 KNK
Holders
472
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 KNKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KujiraNoKonton
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-21 */ // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/knk.sol //SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; contract KujiraNoKonton is ERC721A, Ownable { using Strings for uint256; string public notRevealedURI; string public baseTokenURI; bool public presaleOpen = false; bool public publicSaleOpen = false; bool public revealed = false; uint64 public devMintQuantity = 50; uint64 public maxSupply = 3246; uint64 public supplyInvestor = 0; uint64 public mintDiscountPrice = 0.0625 ether; uint64 public mintPrice = 0.125 ether; mapping(address => uint32) public freemint; mapping(address => uint32) public whitelistDiscount; mapping(address => uint32) public whitelist; mapping(address => uint32) public investorFree; constructor(string memory _notRevealedURI) ERC721A("KUJIRA NO KONTON", "KNK") { notRevealedURI = _notRevealedURI; } function freeMint() public { require(presaleOpen, "The mint is not open yet"); require(freemint[msg.sender] > 0, "You don't have enough freemint"); uint256 supply = totalSupply(); uint32 mintQuantity = freemint[msg.sender]; require(supply + mintQuantity <= maxSupply, "There is not enough NFT left"); freemint[msg.sender] = 0; _safeMint(msg.sender, mintQuantity); } function whitelistDiscountMint(uint32 _quantity) public payable { require(presaleOpen, "the wl Discount Mint is not open"); require(whitelistDiscount[msg.sender] >= _quantity, "You don't have enough whitelist discount mint"); uint256 supply = totalSupply(); require(supply + _quantity <= maxSupply, "There is not enough NFT left"); require(msg.value >= _quantity * mintDiscountPrice, "value of the transaction is too low"); whitelistDiscount[msg.sender] = whitelistDiscount[msg.sender] - _quantity; _safeMint(msg.sender, _quantity); } function whitelistMint(uint32 _quantity) public payable { require(presaleOpen, "the wl Mint is not open"); require(whitelist[msg.sender] >= _quantity, "You're not registered on the wl"); uint256 supply = totalSupply(); require(supply + _quantity <= maxSupply, "There is not enough NFT left"); require(msg.value >= _quantity * mintPrice, "value of transaction is too low"); whitelist[msg.sender] = whitelist[msg.sender] - _quantity; _safeMint(msg.sender, _quantity); } function publicMint(uint32 _quantity) public payable { require(publicSaleOpen, "public sale is not open"); require(_quantity <= 10, "the maximum amount of NFT you can mint in one tx is 10"); uint256 supply = totalSupply(); require(supply + _quantity <= maxSupply, "There is not enough NFT left"); require(msg.value >= _quantity * mintPrice, "value of transaction is too low"); _safeMint(msg.sender, _quantity); } function devMint(uint32 _quantity) public onlyOwner { require(numberMinted(msg.sender) + _quantity <= devMintQuantity, "the dev already mint all their NFT"); uint256 supply = totalSupply(); require(supply + _quantity <= maxSupply, "there is not enough NFT left"); _safeMint(msg.sender, _quantity); } function investorFreeMint() public { require(investorFree[msg.sender] > 0, "You don't have enough freemint"); uint32 mintQuantity = investorFree[msg.sender]; require(supplyInvestor + mintQuantity <= 504, "there is not enough investor mint left"); supplyInvestor += mintQuantity; investorFree[msg.sender] = 0; _safeMint(msg.sender, mintQuantity); } //list handling function setFreemint(address[] calldata _addresses, uint32[] calldata _nbr) public onlyOwner { require(_addresses.length == _nbr.length, "arrays must have the same length"); for (uint256 i = 0; i < _addresses.length; i++) { freemint[_addresses[i]] += _nbr[i]; } } function setWhitelistDiscount(address[] calldata _addresses, uint32[] calldata _nbr) public onlyOwner { require(_addresses.length == _nbr.length, "arrays must have the same length"); for (uint256 i = 0; i < _addresses.length; i++) { whitelistDiscount[_addresses[i]] += _nbr[i]; } } function setWhitelist(address[] calldata _addresses, uint32[] calldata _nbr) public onlyOwner { require(_addresses.length == _nbr.length, "arrays must have the same length"); for (uint256 i = 0; i < _addresses.length; i++) { whitelist[_addresses[i]] += _nbr[i]; } } function setInvestorFreemint(address[] calldata _addresses, uint32[] calldata _nbr) public onlyOwner { require(_addresses.length == _nbr.length, "arrays must have the same length"); for (uint256 i = 0; i < _addresses.length; i++) { investorFree[_addresses[i]] += _nbr[i]; } } //metadatas function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(!revealed) { return notRevealedURI; } string memory baseURI = baseTokenURI; return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } function numberMinted(address _owner) public view returns (uint256) { return _numberMinted(_owner); } //set function function setBaseURI(string memory _baseURI) public onlyOwner { baseTokenURI = _baseURI; } function setNotRevealURI(string memory _notRevealedURI) public onlyOwner { notRevealedURI = _notRevealedURI; } function setPresaleOpen(bool _set) public onlyOwner { presaleOpen = _set; } function setPublicSaleOpen(bool _set) public onlyOwner { publicSaleOpen = _set; } function reduceSupply(uint64 _newSupply) public onlyOwner { maxSupply = _newSupply; } function reveal(bool _set) public onlyOwner { revealed = _set; } //withdraw function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{ value: address(this).balance }(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_quantity","type":"uint32"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devMintQuantity","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freemint","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":"","type":"address"}],"name":"investorFree","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"investorFreeMint","outputs":[],"stateMutability":"nonpayable","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":"maxSupply","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintDiscountPrice","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_quantity","type":"uint32"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_newSupply","type":"uint64"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_set","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint32[]","name":"_nbr","type":"uint32[]"}],"name":"setFreemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint32[]","name":"_nbr","type":"uint32[]"}],"name":"setInvestorFreemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_set","type":"bool"}],"name":"setPresaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_set","type":"bool"}],"name":"setPublicSaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint32[]","name":"_nbr","type":"uint32[]"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint32[]","name":"_nbr","type":"uint32[]"}],"name":"setWhitelistDiscount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyInvestor","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistDiscount","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_quantity","type":"uint32"}],"name":"whitelistDiscountMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_quantity","type":"uint32"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052600b80546001600160d81b0319166c0cae0000000000000032000000179055600c80546f01bc16d674ec800000de0b6b3a7640006001600160801b03199091161790553480156200005457600080fd5b5060405162002f4038038062002f4083398101604081905262000077916200016c565b6040518060400160405280601081526020016f25aaa524a9209027279025a7a72a27a760811b815250604051806040016040528060038152602001624b4e4b60e81b8152508160029081620000cd9190620002d0565b506003620000dc8282620002d0565b50506000805550620000ee3362000104565b6009620000fc8282620002d0565b50506200039c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200018057600080fd5b82516001600160401b03808211156200019857600080fd5b818501915085601f830112620001ad57600080fd5b815181811115620001c257620001c262000156565b604051601f8201601f19908116603f01168101908382118183101715620001ed57620001ed62000156565b8160405282815288868487010111156200020657600080fd5b600093505b828410156200022a57848401860151818501870152928501926200020b565b600086848301015280965050505050505092915050565b600181811c908216806200025657607f821691505b6020821081036200027757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002cb57600081815260208120601f850160051c81016020861015620002a65750805b601f850160051c820191505b81811015620002c757828155600101620002b2565b5050505b505050565b81516001600160401b03811115620002ec57620002ec62000156565b6200030481620002fd845462000241565b846200027d565b602080601f8311600181146200033c5760008415620003235750858301515b600019600386901b1c1916600185901b178555620002c7565b600085815260208120601f198616915b828110156200036d578886015182559484019460019091019084016200034c565b50858210156200038c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612b9480620003ac6000396000f3fe6080604052600436106102ae5760003560e01c8063940cd05b11610175578063cf38ef5d116100dc578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b1461085f578063f5b966211461087f578063f9e237991461089f578063ff47a7c3146108be57600080fd5b8063e985e9c5146107f9578063f151d79114610819578063f2c05b2e1461082c57600080fd5b8063cf38ef5d14610736578063d547cfb71461075d578063d5abeb0114610772578063d7b183dc14610799578063dc33e681146107b9578063e8718343146107d957600080fd5b8063ab0f943e1161012e578063ab0f943e14610676578063afb69091146106a9578063b3c11d3a146106c9578063b88d4fde146106e9578063bee6348a146106fc578063c87b56dd1461071657600080fd5b8063940cd05b146105a757806395d89b41146105c757806396c292d1146105dc5780639b19251a146105fc5780639b2484601461062f578063a22cb4651461065657600080fd5b806342842e0e116102195780636817c76c116101d25780636817c76c146104ed57806370a082311461052c578063715018a61461054c57806371b0e87c1461056157806372250380146105745780638da5cb5b1461058957600080fd5b806342842e0e14610445578063518302271461045857806355f804b3146104785780635accac99146104985780635b70ea9f146104b85780636352211e146104cd57600080fd5b806323394d991161026b57806323394d99146103c257806323b872dd146103e257806326bd1d84146103f55780633844dce0146104155780633c3c909f1461042a5780633ccfd60b1461043d57600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063095ea7b3146103425780630a4fcf901461035757806318160ddd1461039f575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612435565b6108de565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd610930565b6040516102df91906124a2565b34801561031657600080fd5b5061032a6103253660046124b5565b6109c2565b6040516001600160a01b0390911681526020016102df565b6103556103503660046124ea565b610a06565b005b34801561036357600080fd5b5061038a610372366004612514565b60106020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016102df565b3480156103ab57600080fd5b50600154600054035b6040519081526020016102df565b3480156103ce57600080fd5b506103556103dd36600461253f565b610aa6565b6103556103f036600461255a565b610ac8565b34801561040157600080fd5b506103556104103660046125e1565b610c61565b34801561042157600080fd5b50610355610d57565b61035561043836600461264c565b610ed4565b6103556110af565b61035561045336600461255a565b611128565b34801561046457600080fd5b50600b546102d39062010000900460ff1681565b34801561048457600080fd5b506103556104933660046126fd565b611148565b3480156104a457600080fd5b506103556104b33660046126fd565b61115c565b3480156104c457600080fd5b50610355611170565b3480156104d957600080fd5b5061032a6104e83660046124b5565b6112b2565b3480156104f957600080fd5b50600c5461051490600160401b90046001600160401b031681565b6040516001600160401b0390911681526020016102df565b34801561053857600080fd5b506103b4610547366004612514565b6112bd565b34801561055857600080fd5b5061035561130b565b61035561056f36600461264c565b61131f565b34801561058057600080fd5b506102fd611511565b34801561059557600080fd5b506008546001600160a01b031661032a565b3480156105b357600080fd5b506103556105c236600461253f565b61159f565b3480156105d357600080fd5b506102fd6115c3565b3480156105e857600080fd5b50600c54610514906001600160401b031681565b34801561060857600080fd5b5061038a610617366004612514565b600f6020526000908152604090205463ffffffff1681565b34801561063b57600080fd5b50600b5461051490630100000090046001600160401b031681565b34801561066257600080fd5b50610355610671366004612745565b6115d2565b34801561068257600080fd5b5061038a610691366004612514565b600e6020526000908152604090205463ffffffff1681565b3480156106b557600080fd5b506103556106c43660046125e1565b61163e565b3480156106d557600080fd5b506103556106e436600461264c565b611724565b6103556106f7366004612778565b611845565b34801561070857600080fd5b50600b546102d39060ff1681565b34801561072257600080fd5b506102fd6107313660046124b5565b61188f565b34801561074257600080fd5b50600b5461051490600160981b90046001600160401b031681565b34801561076957600080fd5b506102fd611a7f565b34801561077e57600080fd5b50600b5461051490600160581b90046001600160401b031681565b3480156107a557600080fd5b506103556107b43660046125e1565b611a8c565b3480156107c557600080fd5b506103b46107d4366004612514565b611b72565b3480156107e557600080fd5b506103556107f43660046125e1565b611b9c565b34801561080557600080fd5b506102d36108143660046127f3565b611c82565b61035561082736600461264c565b611cb0565b34801561083857600080fd5b5061038a610847366004612514565b600d6020526000908152604090205463ffffffff1681565b34801561086b57600080fd5b5061035561087a366004612514565b611e4b565b34801561088b57600080fd5b5061035561089a36600461253f565b611ec1565b3480156108ab57600080fd5b50600b546102d390610100900460ff1681565b3480156108ca57600080fd5b506103556108d936600461281d565b611edc565b60006301ffc9a760e01b6001600160e01b03198316148061090f57506380ac58cd60e01b6001600160e01b03198316145b8061092a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461093f90612846565b80601f016020809104026020016040519081016040528092919081815260200182805461096b90612846565b80156109b85780601f1061098d576101008083540402835291602001916109b8565b820191906000526020600020905b81548152906001019060200180831161099b57829003601f168201915b5050505050905090565b60006109cd82611f11565b6109ea576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a11826112b2565b9050336001600160a01b03821614610a4a57610a2d8133611c82565b610a4a576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610aae611f38565b600b80549115156101000261ff0019909216919091179055565b6000610ad382611f92565b9050836001600160a01b0316816001600160a01b031614610b065760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610b5357610b368633611c82565b610b5357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b7a57604051633a954ecd60e21b815260040160405180910390fd5b8015610b8557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610c1757600184016000818152600460205260408120549003610c15576000548114610c155760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610c69611f38565b828114610c915760405162461bcd60e51b8152600401610c8890612880565b60405180910390fd5b60005b83811015610d5057828282818110610cae57610cae6128b5565b9050602002016020810190610cc3919061264c565b600f6000878785818110610cd957610cd96128b5565b9050602002016020810190610cee9190612514565b6001600160a01b03168152602081019190915260400160009081208054909190610d1f90849063ffffffff166128e1565b92506101000a81548163ffffffff021916908363ffffffff1602179055508080610d4890612905565b915050610c94565b5050505050565b3360009081526010602052604090205463ffffffff16610db95760405162461bcd60e51b815260206004820152601e60248201527f596f7520646f6e2774206861766520656e6f75676820667265656d696e7400006044820152606401610c88565b33600090815260106020526040902054600b5463ffffffff909116906101f890610df4908390600160981b90046001600160401b031661291e565b6001600160401b03161115610e5a5760405162461bcd60e51b815260206004820152602660248201527f7468657265206973206e6f7420656e6f75676820696e766573746f72206d696e6044820152651d081b19599d60d21b6064820152608401610c88565b8063ffffffff16600b60138282829054906101000a90046001600160401b0316610e84919061291e565b82546001600160401b039182166101009390930a928302919092021990911617905550336000818152601060205260409020805463ffffffff19169055610ed19063ffffffff8316611ff9565b50565b600b5460ff16610f265760405162461bcd60e51b815260206004820152601760248201527f74686520776c204d696e74206973206e6f74206f70656e0000000000000000006044820152606401610c88565b336000908152600f602052604090205463ffffffff80831691161015610f8e5760405162461bcd60e51b815260206004820152601f60248201527f596f75277265206e6f742072656769737465726564206f6e2074686520776c006044820152606401610c88565b6000610f9d6001546000540390565b600b54909150600160581b90046001600160401b0316610fc363ffffffff84168361293e565b1115610fe15760405162461bcd60e51b8152600401610c8890612951565b600c5461100490600160401b90046001600160401b031663ffffffff8416612988565b6001600160401b031634101561105c5760405162461bcd60e51b815260206004820152601f60248201527f76616c7565206f66207472616e73616374696f6e20697320746f6f206c6f77006044820152606401610c88565b336000908152600f602052604090205461107d90839063ffffffff166129b3565b336000818152600f60205260409020805463ffffffff191663ffffffff9384161790556110ab918416611ff9565b5050565b6110b7611f38565b60006110cb6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611115576040519150601f19603f3d011682016040523d82523d6000602084013e61111a565b606091505b5050905080610ed157600080fd5b61114383838360405180602001604052806000815250611845565b505050565b611150611f38565b600a6110ab8282612a16565b611164611f38565b60096110ab8282612a16565b600b5460ff166111c25760405162461bcd60e51b815260206004820152601860248201527f546865206d696e74206973206e6f74206f70656e2079657400000000000000006044820152606401610c88565b336000908152600d602052604090205463ffffffff166112245760405162461bcd60e51b815260206004820152601e60248201527f596f7520646f6e2774206861766520656e6f75676820667265656d696e7400006044820152606401610c88565b60006112336001546000540390565b336000908152600d6020526040902054600b5491925063ffffffff1690600160581b90046001600160401b031661126a828461293e565b11156112885760405162461bcd60e51b8152600401610c8890612951565b336000818152600d60205260409020805463ffffffff191690556110ab9063ffffffff8316611ff9565b600061092a82611f92565b60006001600160a01b0382166112e6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b611313611f38565b61131d6000612013565b565b600b5460ff166113715760405162461bcd60e51b815260206004820181905260248201527f74686520776c20446973636f756e74204d696e74206973206e6f74206f70656e6044820152606401610c88565b336000908152600e602052604090205463ffffffff808316911610156113ef5760405162461bcd60e51b815260206004820152602d60248201527f596f7520646f6e2774206861766520656e6f7567682077686974656c6973742060448201526c191a5cd8dbdd5b9d081b5a5b9d609a1b6064820152608401610c88565b60006113fe6001546000540390565b600b54909150600160581b90046001600160401b031661142463ffffffff84168361293e565b11156114425760405162461bcd60e51b8152600401610c8890612951565b600c5461145e906001600160401b031663ffffffff8416612988565b6001600160401b03163410156114c25760405162461bcd60e51b815260206004820152602360248201527f76616c7565206f6620746865207472616e73616374696f6e20697320746f6f206044820152626c6f7760e81b6064820152608401610c88565b336000908152600e60205260409020546114e390839063ffffffff166129b3565b336000818152600e60205260409020805463ffffffff191663ffffffff9384161790556110ab918416611ff9565b6009805461151e90612846565b80601f016020809104026020016040519081016040528092919081815260200182805461154a90612846565b80156115975780601f1061156c57610100808354040283529160200191611597565b820191906000526020600020905b81548152906001019060200180831161157a57829003601f168201915b505050505081565b6115a7611f38565b600b8054911515620100000262ff000019909216919091179055565b60606003805461093f90612846565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611646611f38565b8281146116655760405162461bcd60e51b8152600401610c8890612880565b60005b83811015610d5057828282818110611682576116826128b5565b9050602002016020810190611697919061264c565b601060008787858181106116ad576116ad6128b5565b90506020020160208101906116c29190612514565b6001600160a01b031681526020810191909152604001600090812080549091906116f390849063ffffffff166128e1565b92506101000a81548163ffffffff021916908363ffffffff160217905550808061171c90612905565b915050611668565b61172c611f38565b600b54630100000090046001600160401b031663ffffffff821661174f33611b72565b611759919061293e565b11156117b25760405162461bcd60e51b815260206004820152602260248201527f7468652064657620616c7265616479206d696e7420616c6c207468656972204e604482015261119560f21b6064820152608401610c88565b60006117c16001546000540390565b600b54909150600160581b90046001600160401b03166117e763ffffffff84168361293e565b11156118355760405162461bcd60e51b815260206004820152601c60248201527f7468657265206973206e6f7420656e6f756768204e4654206c656674000000006044820152606401610c88565b6110ab338363ffffffff16611ff9565b611850848484610ac8565b6001600160a01b0383163b156118895761186c84848484612065565b611889576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061189a82611f11565b6118fe5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c88565b600b5462010000900460ff166119a0576009805461191b90612846565b80601f016020809104026020016040519081016040528092919081815260200182805461194790612846565b80156119945780601f1061196957610100808354040283529160200191611994565b820191906000526020600020905b81548152906001019060200180831161197757829003601f168201915b50505050509050919050565b6000600a80546119af90612846565b80601f01602080910402602001604051908101604052809291908181526020018280546119db90612846565b8015611a285780601f106119fd57610100808354040283529160200191611a28565b820191906000526020600020905b815481529060010190602001808311611a0b57829003601f168201915b505050505090506000815111611a4d5760405180602001604052806000815250611a78565b80611a5784612151565b604051602001611a68929190612ad5565b6040516020818303038152906040525b9392505050565b600a805461151e90612846565b611a94611f38565b828114611ab35760405162461bcd60e51b8152600401610c8890612880565b60005b83811015610d5057828282818110611ad057611ad06128b5565b9050602002016020810190611ae5919061264c565b600e6000878785818110611afb57611afb6128b5565b9050602002016020810190611b109190612514565b6001600160a01b03168152602081019190915260400160009081208054909190611b4190849063ffffffff166128e1565b92506101000a81548163ffffffff021916908363ffffffff1602179055508080611b6a90612905565b915050611ab6565b6001600160a01b038116600090815260056020526040808220546001600160401b03911c1661092a565b611ba4611f38565b828114611bc35760405162461bcd60e51b8152600401610c8890612880565b60005b83811015610d5057828282818110611be057611be06128b5565b9050602002016020810190611bf5919061264c565b600d6000878785818110611c0b57611c0b6128b5565b9050602002016020810190611c209190612514565b6001600160a01b03168152602081019190915260400160009081208054909190611c5190849063ffffffff166128e1565b92506101000a81548163ffffffff021916908363ffffffff1602179055508080611c7a90612905565b915050611bc6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600b54610100900460ff16611d075760405162461bcd60e51b815260206004820152601760248201527f7075626c69632073616c65206973206e6f74206f70656e0000000000000000006044820152606401610c88565b600a8163ffffffff161115611d7d5760405162461bcd60e51b815260206004820152603660248201527f746865206d6178696d756d20616d6f756e74206f66204e465420796f7520636160448201527506e206d696e7420696e206f6e652074782069732031360541b6064820152608401610c88565b6000611d8c6001546000540390565b600b54909150600160581b90046001600160401b0316611db263ffffffff84168361293e565b1115611dd05760405162461bcd60e51b8152600401610c8890612951565b600c54611df390600160401b90046001600160401b031663ffffffff8416612988565b6001600160401b03163410156118355760405162461bcd60e51b815260206004820152601f60248201527f76616c7565206f66207472616e73616374696f6e20697320746f6f206c6f77006044820152606401610c88565b611e53611f38565b6001600160a01b038116611eb85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c88565b610ed181612013565b611ec9611f38565b600b805460ff1916911515919091179055565b611ee4611f38565b600b80546001600160401b03909216600160581b0267ffffffffffffffff60581b19909216919091179055565b600080548210801561092a575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b0316331461131d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c88565b600081600054811015611fe05760008181526004602052604081205490600160e01b82169003611fde575b80600003611a78575060001901600081815260046020526040902054611fbd565b505b604051636f96cda160e11b815260040160405180910390fd5b6110ab8282604051806020016040528060008152506121e3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061209a903390899088908890600401612b04565b6020604051808303816000875af19250505080156120d5575060408051601f3d908101601f191682019092526120d291810190612b41565b60015b612133573d808015612103576040519150601f19603f3d011682016040523d82523d6000602084013e612108565b606091505b50805160000361212b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600061215e83612249565b60010190506000816001600160401b0381111561217d5761217d612672565b6040519080825280601f01601f1916602001820160405280156121a7576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846121b157509392505050565b6121ed8383612321565b6001600160a01b0383163b15611143576000548281035b6122176000868380600101945086612065565b612234576040516368d2bf6b60e11b815260040160405180910390fd5b818110612204578160005414610d5057600080fd5b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106122885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106122b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106122d257662386f26fc10000830492506010015b6305f5e10083106122ea576305f5e100830492506008015b61271083106122fe57612710830492506004015b60648310612310576064830492506002015b600a831061092a5760010192915050565b60008054908290036123465760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146123f557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016123bd565b508160000361241657604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b031981168114610ed157600080fd5b60006020828403121561244757600080fd5b8135611a788161241f565b60005b8381101561246d578181015183820152602001612455565b50506000910152565b6000815180845261248e816020860160208601612452565b601f01601f19169290920160200192915050565b602081526000611a786020830184612476565b6000602082840312156124c757600080fd5b5035919050565b80356001600160a01b03811681146124e557600080fd5b919050565b600080604083850312156124fd57600080fd5b612506836124ce565b946020939093013593505050565b60006020828403121561252657600080fd5b611a78826124ce565b803580151581146124e557600080fd5b60006020828403121561255157600080fd5b611a788261252f565b60008060006060848603121561256f57600080fd5b612578846124ce565b9250612586602085016124ce565b9150604084013590509250925092565b60008083601f8401126125a857600080fd5b5081356001600160401b038111156125bf57600080fd5b6020830191508360208260051b85010111156125da57600080fd5b9250929050565b600080600080604085870312156125f757600080fd5b84356001600160401b038082111561260e57600080fd5b61261a88838901612596565b9096509450602087013591508082111561263357600080fd5b5061264087828801612596565b95989497509550505050565b60006020828403121561265e57600080fd5b813563ffffffff81168114611a7857600080fd5b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156126a2576126a2612672565b604051601f8501601f19908116603f011681019082821181831017156126ca576126ca612672565b816040528093508581528686860111156126e357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561270f57600080fd5b81356001600160401b0381111561272557600080fd5b8201601f8101841361273657600080fd5b61214984823560208401612688565b6000806040838503121561275857600080fd5b612761836124ce565b915061276f6020840161252f565b90509250929050565b6000806000806080858703121561278e57600080fd5b612797856124ce565b93506127a5602086016124ce565b92506040850135915060608501356001600160401b038111156127c757600080fd5b8501601f810187136127d857600080fd5b6127e787823560208401612688565b91505092959194509250565b6000806040838503121561280657600080fd5b61280f836124ce565b915061276f602084016124ce565b60006020828403121561282f57600080fd5b81356001600160401b0381168114611a7857600080fd5b600181811c9082168061285a57607f821691505b60208210810361287a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f617272617973206d7573742068617665207468652073616d65206c656e677468604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b63ffffffff8181168382160190808211156128fe576128fe6128cb565b5092915050565b600060018201612917576129176128cb565b5060010190565b6001600160401b038181168382160190808211156128fe576128fe6128cb565b8082018082111561092a5761092a6128cb565b6020808252601c908201527f5468657265206973206e6f7420656e6f756768204e4654206c65667400000000604082015260600190565b6001600160401b038181168382160280821691908281146129ab576129ab6128cb565b505092915050565b63ffffffff8281168282160390808211156128fe576128fe6128cb565b601f82111561114357600081815260208120601f850160051c810160208610156129f75750805b601f850160051c820191505b81811015610c5957828155600101612a03565b81516001600160401b03811115612a2f57612a2f612672565b612a4381612a3d8454612846565b846129d0565b602080601f831160018114612a785760008415612a605750858301515b600019600386901b1c1916600185901b178555610c59565b600085815260208120601f198616915b82811015612aa757888601518255948401946001909101908401612a88565b5085821015612ac55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351612ae7818460208801612452565b835190830190612afb818360208801612452565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b3790830184612476565b9695505050505050565b600060208284031215612b5357600080fd5b8151611a788161241f56fea2646970667358221220154684b9d53bc183c6c98f9143b18f48b59a6c3d02e402e57ab42520a85b1a8964736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102ae5760003560e01c8063940cd05b11610175578063cf38ef5d116100dc578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b1461085f578063f5b966211461087f578063f9e237991461089f578063ff47a7c3146108be57600080fd5b8063e985e9c5146107f9578063f151d79114610819578063f2c05b2e1461082c57600080fd5b8063cf38ef5d14610736578063d547cfb71461075d578063d5abeb0114610772578063d7b183dc14610799578063dc33e681146107b9578063e8718343146107d957600080fd5b8063ab0f943e1161012e578063ab0f943e14610676578063afb69091146106a9578063b3c11d3a146106c9578063b88d4fde146106e9578063bee6348a146106fc578063c87b56dd1461071657600080fd5b8063940cd05b146105a757806395d89b41146105c757806396c292d1146105dc5780639b19251a146105fc5780639b2484601461062f578063a22cb4651461065657600080fd5b806342842e0e116102195780636817c76c116101d25780636817c76c146104ed57806370a082311461052c578063715018a61461054c57806371b0e87c1461056157806372250380146105745780638da5cb5b1461058957600080fd5b806342842e0e14610445578063518302271461045857806355f804b3146104785780635accac99146104985780635b70ea9f146104b85780636352211e146104cd57600080fd5b806323394d991161026b57806323394d99146103c257806323b872dd146103e257806326bd1d84146103f55780633844dce0146104155780633c3c909f1461042a5780633ccfd60b1461043d57600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063095ea7b3146103425780630a4fcf901461035757806318160ddd1461039f575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612435565b6108de565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd610930565b6040516102df91906124a2565b34801561031657600080fd5b5061032a6103253660046124b5565b6109c2565b6040516001600160a01b0390911681526020016102df565b6103556103503660046124ea565b610a06565b005b34801561036357600080fd5b5061038a610372366004612514565b60106020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016102df565b3480156103ab57600080fd5b50600154600054035b6040519081526020016102df565b3480156103ce57600080fd5b506103556103dd36600461253f565b610aa6565b6103556103f036600461255a565b610ac8565b34801561040157600080fd5b506103556104103660046125e1565b610c61565b34801561042157600080fd5b50610355610d57565b61035561043836600461264c565b610ed4565b6103556110af565b61035561045336600461255a565b611128565b34801561046457600080fd5b50600b546102d39062010000900460ff1681565b34801561048457600080fd5b506103556104933660046126fd565b611148565b3480156104a457600080fd5b506103556104b33660046126fd565b61115c565b3480156104c457600080fd5b50610355611170565b3480156104d957600080fd5b5061032a6104e83660046124b5565b6112b2565b3480156104f957600080fd5b50600c5461051490600160401b90046001600160401b031681565b6040516001600160401b0390911681526020016102df565b34801561053857600080fd5b506103b4610547366004612514565b6112bd565b34801561055857600080fd5b5061035561130b565b61035561056f36600461264c565b61131f565b34801561058057600080fd5b506102fd611511565b34801561059557600080fd5b506008546001600160a01b031661032a565b3480156105b357600080fd5b506103556105c236600461253f565b61159f565b3480156105d357600080fd5b506102fd6115c3565b3480156105e857600080fd5b50600c54610514906001600160401b031681565b34801561060857600080fd5b5061038a610617366004612514565b600f6020526000908152604090205463ffffffff1681565b34801561063b57600080fd5b50600b5461051490630100000090046001600160401b031681565b34801561066257600080fd5b50610355610671366004612745565b6115d2565b34801561068257600080fd5b5061038a610691366004612514565b600e6020526000908152604090205463ffffffff1681565b3480156106b557600080fd5b506103556106c43660046125e1565b61163e565b3480156106d557600080fd5b506103556106e436600461264c565b611724565b6103556106f7366004612778565b611845565b34801561070857600080fd5b50600b546102d39060ff1681565b34801561072257600080fd5b506102fd6107313660046124b5565b61188f565b34801561074257600080fd5b50600b5461051490600160981b90046001600160401b031681565b34801561076957600080fd5b506102fd611a7f565b34801561077e57600080fd5b50600b5461051490600160581b90046001600160401b031681565b3480156107a557600080fd5b506103556107b43660046125e1565b611a8c565b3480156107c557600080fd5b506103b46107d4366004612514565b611b72565b3480156107e557600080fd5b506103556107f43660046125e1565b611b9c565b34801561080557600080fd5b506102d36108143660046127f3565b611c82565b61035561082736600461264c565b611cb0565b34801561083857600080fd5b5061038a610847366004612514565b600d6020526000908152604090205463ffffffff1681565b34801561086b57600080fd5b5061035561087a366004612514565b611e4b565b34801561088b57600080fd5b5061035561089a36600461253f565b611ec1565b3480156108ab57600080fd5b50600b546102d390610100900460ff1681565b3480156108ca57600080fd5b506103556108d936600461281d565b611edc565b60006301ffc9a760e01b6001600160e01b03198316148061090f57506380ac58cd60e01b6001600160e01b03198316145b8061092a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461093f90612846565b80601f016020809104026020016040519081016040528092919081815260200182805461096b90612846565b80156109b85780601f1061098d576101008083540402835291602001916109b8565b820191906000526020600020905b81548152906001019060200180831161099b57829003601f168201915b5050505050905090565b60006109cd82611f11565b6109ea576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a11826112b2565b9050336001600160a01b03821614610a4a57610a2d8133611c82565b610a4a576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610aae611f38565b600b80549115156101000261ff0019909216919091179055565b6000610ad382611f92565b9050836001600160a01b0316816001600160a01b031614610b065760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610b5357610b368633611c82565b610b5357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b7a57604051633a954ecd60e21b815260040160405180910390fd5b8015610b8557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610c1757600184016000818152600460205260408120549003610c15576000548114610c155760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610c69611f38565b828114610c915760405162461bcd60e51b8152600401610c8890612880565b60405180910390fd5b60005b83811015610d5057828282818110610cae57610cae6128b5565b9050602002016020810190610cc3919061264c565b600f6000878785818110610cd957610cd96128b5565b9050602002016020810190610cee9190612514565b6001600160a01b03168152602081019190915260400160009081208054909190610d1f90849063ffffffff166128e1565b92506101000a81548163ffffffff021916908363ffffffff1602179055508080610d4890612905565b915050610c94565b5050505050565b3360009081526010602052604090205463ffffffff16610db95760405162461bcd60e51b815260206004820152601e60248201527f596f7520646f6e2774206861766520656e6f75676820667265656d696e7400006044820152606401610c88565b33600090815260106020526040902054600b5463ffffffff909116906101f890610df4908390600160981b90046001600160401b031661291e565b6001600160401b03161115610e5a5760405162461bcd60e51b815260206004820152602660248201527f7468657265206973206e6f7420656e6f75676820696e766573746f72206d696e6044820152651d081b19599d60d21b6064820152608401610c88565b8063ffffffff16600b60138282829054906101000a90046001600160401b0316610e84919061291e565b82546001600160401b039182166101009390930a928302919092021990911617905550336000818152601060205260409020805463ffffffff19169055610ed19063ffffffff8316611ff9565b50565b600b5460ff16610f265760405162461bcd60e51b815260206004820152601760248201527f74686520776c204d696e74206973206e6f74206f70656e0000000000000000006044820152606401610c88565b336000908152600f602052604090205463ffffffff80831691161015610f8e5760405162461bcd60e51b815260206004820152601f60248201527f596f75277265206e6f742072656769737465726564206f6e2074686520776c006044820152606401610c88565b6000610f9d6001546000540390565b600b54909150600160581b90046001600160401b0316610fc363ffffffff84168361293e565b1115610fe15760405162461bcd60e51b8152600401610c8890612951565b600c5461100490600160401b90046001600160401b031663ffffffff8416612988565b6001600160401b031634101561105c5760405162461bcd60e51b815260206004820152601f60248201527f76616c7565206f66207472616e73616374696f6e20697320746f6f206c6f77006044820152606401610c88565b336000908152600f602052604090205461107d90839063ffffffff166129b3565b336000818152600f60205260409020805463ffffffff191663ffffffff9384161790556110ab918416611ff9565b5050565b6110b7611f38565b60006110cb6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611115576040519150601f19603f3d011682016040523d82523d6000602084013e61111a565b606091505b5050905080610ed157600080fd5b61114383838360405180602001604052806000815250611845565b505050565b611150611f38565b600a6110ab8282612a16565b611164611f38565b60096110ab8282612a16565b600b5460ff166111c25760405162461bcd60e51b815260206004820152601860248201527f546865206d696e74206973206e6f74206f70656e2079657400000000000000006044820152606401610c88565b336000908152600d602052604090205463ffffffff166112245760405162461bcd60e51b815260206004820152601e60248201527f596f7520646f6e2774206861766520656e6f75676820667265656d696e7400006044820152606401610c88565b60006112336001546000540390565b336000908152600d6020526040902054600b5491925063ffffffff1690600160581b90046001600160401b031661126a828461293e565b11156112885760405162461bcd60e51b8152600401610c8890612951565b336000818152600d60205260409020805463ffffffff191690556110ab9063ffffffff8316611ff9565b600061092a82611f92565b60006001600160a01b0382166112e6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b611313611f38565b61131d6000612013565b565b600b5460ff166113715760405162461bcd60e51b815260206004820181905260248201527f74686520776c20446973636f756e74204d696e74206973206e6f74206f70656e6044820152606401610c88565b336000908152600e602052604090205463ffffffff808316911610156113ef5760405162461bcd60e51b815260206004820152602d60248201527f596f7520646f6e2774206861766520656e6f7567682077686974656c6973742060448201526c191a5cd8dbdd5b9d081b5a5b9d609a1b6064820152608401610c88565b60006113fe6001546000540390565b600b54909150600160581b90046001600160401b031661142463ffffffff84168361293e565b11156114425760405162461bcd60e51b8152600401610c8890612951565b600c5461145e906001600160401b031663ffffffff8416612988565b6001600160401b03163410156114c25760405162461bcd60e51b815260206004820152602360248201527f76616c7565206f6620746865207472616e73616374696f6e20697320746f6f206044820152626c6f7760e81b6064820152608401610c88565b336000908152600e60205260409020546114e390839063ffffffff166129b3565b336000818152600e60205260409020805463ffffffff191663ffffffff9384161790556110ab918416611ff9565b6009805461151e90612846565b80601f016020809104026020016040519081016040528092919081815260200182805461154a90612846565b80156115975780601f1061156c57610100808354040283529160200191611597565b820191906000526020600020905b81548152906001019060200180831161157a57829003601f168201915b505050505081565b6115a7611f38565b600b8054911515620100000262ff000019909216919091179055565b60606003805461093f90612846565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611646611f38565b8281146116655760405162461bcd60e51b8152600401610c8890612880565b60005b83811015610d5057828282818110611682576116826128b5565b9050602002016020810190611697919061264c565b601060008787858181106116ad576116ad6128b5565b90506020020160208101906116c29190612514565b6001600160a01b031681526020810191909152604001600090812080549091906116f390849063ffffffff166128e1565b92506101000a81548163ffffffff021916908363ffffffff160217905550808061171c90612905565b915050611668565b61172c611f38565b600b54630100000090046001600160401b031663ffffffff821661174f33611b72565b611759919061293e565b11156117b25760405162461bcd60e51b815260206004820152602260248201527f7468652064657620616c7265616479206d696e7420616c6c207468656972204e604482015261119560f21b6064820152608401610c88565b60006117c16001546000540390565b600b54909150600160581b90046001600160401b03166117e763ffffffff84168361293e565b11156118355760405162461bcd60e51b815260206004820152601c60248201527f7468657265206973206e6f7420656e6f756768204e4654206c656674000000006044820152606401610c88565b6110ab338363ffffffff16611ff9565b611850848484610ac8565b6001600160a01b0383163b156118895761186c84848484612065565b611889576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061189a82611f11565b6118fe5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c88565b600b5462010000900460ff166119a0576009805461191b90612846565b80601f016020809104026020016040519081016040528092919081815260200182805461194790612846565b80156119945780601f1061196957610100808354040283529160200191611994565b820191906000526020600020905b81548152906001019060200180831161197757829003601f168201915b50505050509050919050565b6000600a80546119af90612846565b80601f01602080910402602001604051908101604052809291908181526020018280546119db90612846565b8015611a285780601f106119fd57610100808354040283529160200191611a28565b820191906000526020600020905b815481529060010190602001808311611a0b57829003601f168201915b505050505090506000815111611a4d5760405180602001604052806000815250611a78565b80611a5784612151565b604051602001611a68929190612ad5565b6040516020818303038152906040525b9392505050565b600a805461151e90612846565b611a94611f38565b828114611ab35760405162461bcd60e51b8152600401610c8890612880565b60005b83811015610d5057828282818110611ad057611ad06128b5565b9050602002016020810190611ae5919061264c565b600e6000878785818110611afb57611afb6128b5565b9050602002016020810190611b109190612514565b6001600160a01b03168152602081019190915260400160009081208054909190611b4190849063ffffffff166128e1565b92506101000a81548163ffffffff021916908363ffffffff1602179055508080611b6a90612905565b915050611ab6565b6001600160a01b038116600090815260056020526040808220546001600160401b03911c1661092a565b611ba4611f38565b828114611bc35760405162461bcd60e51b8152600401610c8890612880565b60005b83811015610d5057828282818110611be057611be06128b5565b9050602002016020810190611bf5919061264c565b600d6000878785818110611c0b57611c0b6128b5565b9050602002016020810190611c209190612514565b6001600160a01b03168152602081019190915260400160009081208054909190611c5190849063ffffffff166128e1565b92506101000a81548163ffffffff021916908363ffffffff1602179055508080611c7a90612905565b915050611bc6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600b54610100900460ff16611d075760405162461bcd60e51b815260206004820152601760248201527f7075626c69632073616c65206973206e6f74206f70656e0000000000000000006044820152606401610c88565b600a8163ffffffff161115611d7d5760405162461bcd60e51b815260206004820152603660248201527f746865206d6178696d756d20616d6f756e74206f66204e465420796f7520636160448201527506e206d696e7420696e206f6e652074782069732031360541b6064820152608401610c88565b6000611d8c6001546000540390565b600b54909150600160581b90046001600160401b0316611db263ffffffff84168361293e565b1115611dd05760405162461bcd60e51b8152600401610c8890612951565b600c54611df390600160401b90046001600160401b031663ffffffff8416612988565b6001600160401b03163410156118355760405162461bcd60e51b815260206004820152601f60248201527f76616c7565206f66207472616e73616374696f6e20697320746f6f206c6f77006044820152606401610c88565b611e53611f38565b6001600160a01b038116611eb85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c88565b610ed181612013565b611ec9611f38565b600b805460ff1916911515919091179055565b611ee4611f38565b600b80546001600160401b03909216600160581b0267ffffffffffffffff60581b19909216919091179055565b600080548210801561092a575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b0316331461131d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c88565b600081600054811015611fe05760008181526004602052604081205490600160e01b82169003611fde575b80600003611a78575060001901600081815260046020526040902054611fbd565b505b604051636f96cda160e11b815260040160405180910390fd5b6110ab8282604051806020016040528060008152506121e3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061209a903390899088908890600401612b04565b6020604051808303816000875af19250505080156120d5575060408051601f3d908101601f191682019092526120d291810190612b41565b60015b612133573d808015612103576040519150601f19603f3d011682016040523d82523d6000602084013e612108565b606091505b50805160000361212b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600061215e83612249565b60010190506000816001600160401b0381111561217d5761217d612672565b6040519080825280601f01601f1916602001820160405280156121a7576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846121b157509392505050565b6121ed8383612321565b6001600160a01b0383163b15611143576000548281035b6122176000868380600101945086612065565b612234576040516368d2bf6b60e11b815260040160405180910390fd5b818110612204578160005414610d5057600080fd5b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106122885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106122b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106122d257662386f26fc10000830492506010015b6305f5e10083106122ea576305f5e100830492506008015b61271083106122fe57612710830492506004015b60648310612310576064830492506002015b600a831061092a5760010192915050565b60008054908290036123465760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146123f557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016123bd565b508160000361241657604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b031981168114610ed157600080fd5b60006020828403121561244757600080fd5b8135611a788161241f565b60005b8381101561246d578181015183820152602001612455565b50506000910152565b6000815180845261248e816020860160208601612452565b601f01601f19169290920160200192915050565b602081526000611a786020830184612476565b6000602082840312156124c757600080fd5b5035919050565b80356001600160a01b03811681146124e557600080fd5b919050565b600080604083850312156124fd57600080fd5b612506836124ce565b946020939093013593505050565b60006020828403121561252657600080fd5b611a78826124ce565b803580151581146124e557600080fd5b60006020828403121561255157600080fd5b611a788261252f565b60008060006060848603121561256f57600080fd5b612578846124ce565b9250612586602085016124ce565b9150604084013590509250925092565b60008083601f8401126125a857600080fd5b5081356001600160401b038111156125bf57600080fd5b6020830191508360208260051b85010111156125da57600080fd5b9250929050565b600080600080604085870312156125f757600080fd5b84356001600160401b038082111561260e57600080fd5b61261a88838901612596565b9096509450602087013591508082111561263357600080fd5b5061264087828801612596565b95989497509550505050565b60006020828403121561265e57600080fd5b813563ffffffff81168114611a7857600080fd5b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156126a2576126a2612672565b604051601f8501601f19908116603f011681019082821181831017156126ca576126ca612672565b816040528093508581528686860111156126e357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561270f57600080fd5b81356001600160401b0381111561272557600080fd5b8201601f8101841361273657600080fd5b61214984823560208401612688565b6000806040838503121561275857600080fd5b612761836124ce565b915061276f6020840161252f565b90509250929050565b6000806000806080858703121561278e57600080fd5b612797856124ce565b93506127a5602086016124ce565b92506040850135915060608501356001600160401b038111156127c757600080fd5b8501601f810187136127d857600080fd5b6127e787823560208401612688565b91505092959194509250565b6000806040838503121561280657600080fd5b61280f836124ce565b915061276f602084016124ce565b60006020828403121561282f57600080fd5b81356001600160401b0381168114611a7857600080fd5b600181811c9082168061285a57607f821691505b60208210810361287a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f617272617973206d7573742068617665207468652073616d65206c656e677468604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b63ffffffff8181168382160190808211156128fe576128fe6128cb565b5092915050565b600060018201612917576129176128cb565b5060010190565b6001600160401b038181168382160190808211156128fe576128fe6128cb565b8082018082111561092a5761092a6128cb565b6020808252601c908201527f5468657265206973206e6f7420656e6f756768204e4654206c65667400000000604082015260600190565b6001600160401b038181168382160280821691908281146129ab576129ab6128cb565b505092915050565b63ffffffff8281168282160390808211156128fe576128fe6128cb565b601f82111561114357600081815260208120601f850160051c810160208610156129f75750805b601f850160051c820191505b81811015610c5957828155600101612a03565b81516001600160401b03811115612a2f57612a2f612672565b612a4381612a3d8454612846565b846129d0565b602080601f831160018114612a785760008415612a605750858301515b600019600386901b1c1916600185901b178555610c59565b600085815260208120601f198616915b82811015612aa757888601518255948401946001909101908401612a88565b5085821015612ac55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351612ae7818460208801612452565b835190830190612afb818360208801612452565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b3790830184612476565b9695505050505050565b600060208284031215612b5357600080fd5b8151611a788161241f56fea2646970667358221220154684b9d53bc183c6c98f9143b18f48b59a6c3d02e402e57ab42520a85b1a8964736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _notRevealedURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
70328:6451:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37196:639;;;;;;;;;;-1:-1:-1;37196:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;37196:639:0;;;;;;;;38098:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44589:218::-;;;;;;;;;;-1:-1:-1;44589:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;44589:218:0;1533:203:1;44022:408:0;;;;;;:::i;:::-;;:::i;:::-;;70966:46;;;;;;;;;;-1:-1:-1;70966:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2543:10:1;2531:23;;;2513:42;;2501:2;2486:18;70966:46:0;2369:192:1;33849:323:0;;;;;;;;;;-1:-1:-1;34123:12:0;;33910:7;34107:13;:28;33849:323;;;2712:25:1;;;2700:2;2685:18;33849:323:0;2566:177:1;76307:95:0;;;;;;;;;;-1:-1:-1;76307:95:0;;;;;:::i;:::-;;:::i;48228:2825::-;;;;;;:::i;:::-;;:::i;74669:310::-;;;;;;;;;;-1:-1:-1;74669:310:0;;;;;:::i;:::-;;:::i;73580:406::-;;;;;;;;;;;;;:::i;72210:535::-;;;;;;:::i;:::-;;:::i;76619:157::-;;;:::i;51149:193::-;;;;;;:::i;:::-;;:::i;70560:28::-;;;;;;;;;;-1:-1:-1;70560:28:0;;;;;;;;;;;75967:103;;;;;;;;;;-1:-1:-1;75967:103:0;;;;;:::i;:::-;;:::i;76078:124::-;;;;;;;;;;-1:-1:-1;76078:124:0;;;;;:::i;:::-;;:::i;71159:433::-;;;;;;;;;;;;;:::i;39491:152::-;;;;;;;;;;-1:-1:-1;39491:152:0;;;;;:::i;:::-;;:::i;70765:37::-;;;;;;;;;;-1:-1:-1;70765:37:0;;;;-1:-1:-1;;;70765:37:0;;-1:-1:-1;;;;;70765:37:0;;;;;;-1:-1:-1;;;;;6248:31:1;;;6230:50;;6218:2;6203:18;70765:37:0;6086:200:1;35033:233:0;;;;;;;;;;-1:-1:-1;35033:233:0;;;;;:::i;:::-;;:::i;17975:103::-;;;;;;;;;;;;;:::i;71600:602::-;;;;;;:::i;:::-;;:::i;70413:28::-;;;;;;;;;;;;;:::i;17327:87::-;;;;;;;;;;-1:-1:-1;17400:6:0;;-1:-1:-1;;;;;17400:6:0;17327:87;;76517:78;;;;;;;;;;-1:-1:-1;76517:78:0;;;;;:::i;:::-;;:::i;38274:104::-;;;;;;;;;;;;;:::i;70712:46::-;;;;;;;;;;-1:-1:-1;70712:46:0;;;;-1:-1:-1;;;;;70712:46:0;;;70916:43;;;;;;;;;;-1:-1:-1;70916:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;70595:34;;;;;;;;;;-1:-1:-1;70595:34:0;;;;;;;-1:-1:-1;;;;;70595:34:0;;;45147:234;;;;;;;;;;-1:-1:-1;45147:234:0;;;;;:::i;:::-;;:::i;70858:51::-;;;;;;;;;;-1:-1:-1;70858:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;74987:320;;;;;;;;;;-1:-1:-1;74987:320:0;;;;;:::i;:::-;;:::i;73232:340::-;;;;;;;;;;-1:-1:-1;73232:340:0;;;;;:::i;:::-;;:::i;51940:407::-;;;;;;:::i;:::-;;:::i;70481:31::-;;;;;;;;;;-1:-1:-1;70481:31:0;;;;;;;;75332:484;;;;;;;;;;-1:-1:-1;75332:484:0;;;;;:::i;:::-;;:::i;70673:32::-;;;;;;;;;;-1:-1:-1;70673:32:0;;;;-1:-1:-1;;;70673:32:0;;-1:-1:-1;;;;;70673:32:0;;;70448:26;;;;;;;;;;;;;:::i;70636:30::-;;;;;;;;;;-1:-1:-1;70636:30:0;;;;-1:-1:-1;;;70636:30:0;;-1:-1:-1;;;;;70636:30:0;;;74331:326;;;;;;;;;;-1:-1:-1;74331:326:0;;;;;:::i;:::-;;:::i;75824:115::-;;;;;;;;;;-1:-1:-1;75824:115:0;;;;;:::i;:::-;;:::i;74015:308::-;;;;;;;;;;-1:-1:-1;74015:308:0;;;;;:::i;:::-;;:::i;45538:164::-;;;;;;;;;;-1:-1:-1;45538:164:0;;;;;:::i;:::-;;:::i;72753:471::-;;;;;;:::i;:::-;;:::i;70809:42::-;;;;;;;;;;-1:-1:-1;70809:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;18233:201;;;;;;;;;;-1:-1:-1;18233:201:0;;;;;:::i;:::-;;:::i;76210:89::-;;;;;;;;;;-1:-1:-1;76210:89:0;;;;;:::i;:::-;;:::i;70519:34::-;;;;;;;;;;-1:-1:-1;70519:34:0;;;;;;;;;;;76410:99;;;;;;;;;;-1:-1:-1;76410:99:0;;;;;:::i;:::-;;:::i;37196:639::-;37281:4;-1:-1:-1;;;;;;;;;37605:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;37682:25:0;;;37605:102;:179;;;-1:-1:-1;;;;;;;;;;37759:25:0;;;37605:179;37585:199;37196:639;-1:-1:-1;;37196:639:0:o;38098:100::-;38152:13;38185:5;38178:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38098:100;:::o;44589:218::-;44665:7;44690:16;44698:7;44690;:16::i;:::-;44685:64;;44715:34;;-1:-1:-1;;;44715:34:0;;;;;;;;;;;44685:64;-1:-1:-1;44769:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;44769:30:0;;44589:218::o;44022:408::-;44111:13;44127:16;44135:7;44127;:16::i;:::-;44111:32;-1:-1:-1;68355:10:0;-1:-1:-1;;;;;44160:28:0;;;44156:175;;44208:44;44225:5;68355:10;45538:164;:::i;44208:44::-;44203:128;;44280:35;;-1:-1:-1;;;44280:35:0;;;;;;;;;;;44203:128;44343:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;44343:35:0;-1:-1:-1;;;;;44343:35:0;;;;;;;;;44394:28;;44343:24;;44394:28;;;;;;;44100:330;44022:408;;:::o;76307:95::-;17213:13;:11;:13::i;:::-;76373:14:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;76373:21:0;;::::1;::::0;;;::::1;::::0;;76307:95::o;48228:2825::-;48370:27;48400;48419:7;48400:18;:27::i;:::-;48370:57;;48485:4;-1:-1:-1;;;;;48444:45:0;48460:19;-1:-1:-1;;;;;48444:45:0;;48440:86;;48498:28;;-1:-1:-1;;;48498:28:0;;;;;;;;;;;48440:86;48540:27;47336:24;;;:15;:24;;;;;47564:26;;68355:10;46961:30;;;-1:-1:-1;;;;;46654:28:0;;46939:20;;;46936:56;48726:180;;48819:43;48836:4;68355:10;45538:164;:::i;48819:43::-;48814:92;;48871:35;;-1:-1:-1;;;48871:35:0;;;;;;;;;;;48814:92;-1:-1:-1;;;;;48923:16:0;;48919:52;;48948:23;;-1:-1:-1;;;48948:23:0;;;;;;;;;;;48919:52;49120:15;49117:160;;;49260:1;49239:19;49232:30;49117:160;-1:-1:-1;;;;;49657:24:0;;;;;;;:18;:24;;;;;;49655:26;;-1:-1:-1;;49655:26:0;;;49726:22;;;;;;;;;49724:24;;-1:-1:-1;49724:24:0;;;42880:11;42855:23;42851:41;42838:63;-1:-1:-1;;;42838:63:0;50019:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;50314:47:0;;:52;;50310:627;;50419:1;50409:11;;50387:19;50542:30;;;:17;:30;;;;;;:35;;50538:384;;50680:13;;50665:11;:28;50661:242;;50827:30;;;;:17;:30;;;;;:52;;;50661:242;50368:569;50310:627;50984:7;50980:2;-1:-1:-1;;;;;50965:27:0;50974:4;-1:-1:-1;;;;;50965:27:0;;;;;;;;;;;51003:42;48359:2694;;;48228:2825;;;:::o;74669:310::-;17213:13;:11;:13::i;:::-;74782:32;;::::1;74774:77;;;;-1:-1:-1::0;;;74774:77:0::1;;;;;;;:::i;:::-;;;;;;;;;74867:9;74862:110;74882:21:::0;;::::1;74862:110;;;74953:4;;74958:1;74953:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;74925:9;:24;74935:10;;74946:1;74935:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;74925:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;74925:24:0;;;:35;;:24;;-1:-1:-1;74925:35:0::1;::::0;;;::::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;74905:3;;;;;:::i;:::-;;;;74862:110;;;;74669:310:::0;;;;:::o;73580:406::-;73647:10;73661:1;73634:24;;;:12;:24;;;;;;;;73626:71;;;;-1:-1:-1;;;73626:71:0;;9305:2:1;73626:71:0;;;9287:21:1;9344:2;9324:18;;;9317:30;9383:32;9363:18;;;9356:60;9433:18;;73626:71:0;9103:354:1;73626:71:0;73743:10;73708:19;73730:24;;;:12;:24;;;;;;73773:14;;73730:24;;;;;73806:3;;73773:29;;73730:24;;-1:-1:-1;;;73773:14:0;;-1:-1:-1;;;;;73773:14:0;:29;:::i;:::-;-1:-1:-1;;;;;73773:36:0;;;73765:87;;;;-1:-1:-1;;;73765:87:0;;9849:2:1;73765:87:0;;;9831:21:1;9888:2;9868:18;;;9861:30;9927:34;9907:18;;;9900:62;-1:-1:-1;;;9978:18:1;;;9971:36;10024:19;;73765:87:0;9647:402:1;73765:87:0;73881:12;73863:30;;:14;;:30;;;;;;;;;;-1:-1:-1;;;;;73863:30:0;;;;;:::i;:::-;;;-1:-1:-1;;;;;73863:30:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;73917:10:0;-1:-1:-1;73904:24:0;;;:12;:24;;;;;:28;;-1:-1:-1;;73904:28:0;;;73943:35;;73904:28;73943:35;;:9;:35::i;:::-;73615:371;73580:406::o;72210:535::-;72285:11;;;;72277:47;;;;-1:-1:-1;;;72277:47:0;;10256:2:1;72277:47:0;;;10238:21:1;10295:2;10275:18;;;10268:30;10334:25;10314:18;;;10307:53;10377:18;;72277:47:0;10054:347:1;72277:47:0;72353:10;72343:21;;;;:9;:21;;;;;;:34;;;;:21;;:34;;72335:78;;;;-1:-1:-1;;;72335:78:0;;10608:2:1;72335:78:0;;;10590:21:1;10647:2;10627:18;;;10620:30;10686:33;10666:18;;;10659:61;10737:18;;72335:78:0;10406:355:1;72335:78:0;72424:14;72441:13;34123:12;;33910:7;34107:13;:28;;33849:323;72441:13;72495:9;;72424:30;;-1:-1:-1;;;;72495:9:0;;-1:-1:-1;;;;;72495:9:0;72473:18;;;;72424:30;72473:18;:::i;:::-;:31;;72465:72;;;;-1:-1:-1;;;72465:72:0;;;;;;;:::i;:::-;72581:9;;72569:21;;-1:-1:-1;;;72581:9:0;;-1:-1:-1;;;;;72581:9:0;72569:21;;;;:::i;:::-;-1:-1:-1;;;;;72556:34:0;:9;:34;;72548:78;;;;-1:-1:-1;;;72548:78:0;;11717:2:1;72548:78:0;;;11699:21:1;11756:2;11736:18;;;11729:30;11795:33;11775:18;;;11768:61;11846:18;;72548:78:0;11515:355:1;72548:78:0;72671:10;72661:21;;;;:9;:21;;;;;;:33;;72685:9;;72661:21;;:33;:::i;:::-;72647:10;72637:21;;;;:9;:21;;;;;:57;;-1:-1:-1;;72637:57:0;;;;;;;;72705:32;;;;:9;:32::i;:::-;72266:479;72210:535;:::o;76619:157::-;17213:13;:11;:13::i;:::-;76676:7:::1;76697;17400:6:::0;;-1:-1:-1;;;;;17400:6:0;;17327:87;76697:7:::1;-1:-1:-1::0;;;;;76689:21:0::1;76719;76689:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76675:71;;;76765:2;76757:11;;;::::0;::::1;51149:193:::0;51295:39;51312:4;51318:2;51322:7;51295:39;;;;;;;;;;;;:16;:39::i;:::-;51149:193;;;:::o;75967:103::-;17213:13;:11;:13::i;:::-;76039:12:::1;:23;76054:8:::0;76039:12;:23:::1;:::i;76078:124::-:0;17213:13;:11;:13::i;:::-;76162:14:::1;:32;76179:15:::0;76162:14;:32:::1;:::i;71159:433::-:0;71205:11;;;;71197:48;;;;-1:-1:-1;;;71197:48:0;;14671:2:1;71197:48:0;;;14653:21:1;14710:2;14690:18;;;14683:30;14749:26;14729:18;;;14722:54;14793:18;;71197:48:0;14469:348:1;71197:48:0;71273:10;71287:1;71264:20;;;:8;:20;;;;;;;;71256:67;;;;-1:-1:-1;;;71256:67:0;;9305:2:1;71256:67:0;;;9287:21:1;9344:2;9324:18;;;9317:30;9383:32;9363:18;;;9356:60;9433:18;;71256:67:0;9103:354:1;71256:67:0;71334:14;71351:13;34123:12;;33910:7;34107:13;:28;;33849:323;71351:13;71406:10;71375:19;71397:20;;;:8;:20;;;;;;71461:9;;71334:30;;-1:-1:-1;71397:20:0;;;-1:-1:-1;;;71461:9:0;;-1:-1:-1;;;;;71461:9:0;71436:21;71397:20;71334:30;71436:21;:::i;:::-;:34;;71428:75;;;;-1:-1:-1;;;71428:75:0;;;;;;;:::i;:::-;71523:10;71537:1;71514:20;;;:8;:20;;;;;:24;;-1:-1:-1;;71514:24:0;;;71549:35;;71514:24;71549:35;;:9;:35::i;39491:152::-;39563:7;39606:27;39625:7;39606:18;:27::i;35033:233::-;35105:7;-1:-1:-1;;;;;35129:19:0;;35125:60;;35157:28;;-1:-1:-1;;;35157:28:0;;;;;;;;;;;35125:60;-1:-1:-1;;;;;;35203:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;35203:55:0;;35033:233::o;17975:103::-;17213:13;:11;:13::i;:::-;18040:30:::1;18067:1;18040:18;:30::i;:::-;17975:103::o:0;71600:602::-;71683:11;;;;71675:56;;;;-1:-1:-1;;;71675:56:0;;15024:2:1;71675:56:0;;;15006:21:1;;;15043:18;;;15036:30;15102:34;15082:18;;;15075:62;15154:18;;71675:56:0;14822:356:1;71675:56:0;71768:10;71750:29;;;;:17;:29;;;;;;:42;;;;:29;;:42;;71742:100;;;;-1:-1:-1;;;71742:100:0;;15385:2:1;71742:100:0;;;15367:21:1;15424:2;15404:18;;;15397:30;15463:34;15443:18;;;15436:62;-1:-1:-1;;;15514:18:1;;;15507:43;15567:19;;71742:100:0;15183:409:1;71742:100:0;71853:14;71870:13;34123:12;;33910:7;34107:13;:28;;33849:323;71870:13;71924:9;;71853:30;;-1:-1:-1;;;;71924:9:0;;-1:-1:-1;;;;;71924:9:0;71902:18;;;;71853:30;71902:18;:::i;:::-;:31;;71894:72;;;;-1:-1:-1;;;71894:72:0;;;;;;;:::i;:::-;72010:17;;71998:29;;-1:-1:-1;;;;;72010:17:0;71998:29;;;;:::i;:::-;-1:-1:-1;;;;;71985:42:0;:9;:42;;71977:90;;;;-1:-1:-1;;;71977:90:0;;15799:2:1;71977:90:0;;;15781:21:1;15838:2;15818:18;;;15811:30;15877:34;15857:18;;;15850:62;-1:-1:-1;;;15928:18:1;;;15921:33;15971:19;;71977:90:0;15597:399:1;71977:90:0;72128:10;72110:29;;;;:17;:29;;;;;;:41;;72142:9;;72110:29;;:41;:::i;:::-;72096:10;72078:29;;;;:17;:29;;;;;:73;;-1:-1:-1;;72078:73:0;;;;;;;;72162:32;;;;:9;:32::i;70413:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;76517:78::-;17213:13;:11;:13::i;:::-;76572:8:::1;:15:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;76572:15:0;;::::1;::::0;;;::::1;::::0;;76517:78::o;38274:104::-;38330:13;38363:7;38356:14;;;;;:::i;45147:234::-;68355:10;45242:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;45242:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;45242:60:0;;;;;;;;;;45318:55;;540:41:1;;;45242:49:0;;68355:10;45318:55;;513:18:1;45318:55:0;;;;;;;45147:234;;:::o;74987:320::-;17213:13;:11;:13::i;:::-;75107:32;;::::1;75099:77;;;;-1:-1:-1::0;;;75099:77:0::1;;;;;;;:::i;:::-;75192:9;75187:113;75207:21:::0;;::::1;75187:113;;;75281:4;;75286:1;75281:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;75250:12;:27;75263:10;;75274:1;75263:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;75250:27:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;75250:27:0;;;:38;;:27;;-1:-1:-1;75250:38:0::1;::::0;;;::::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;75230:3;;;;;:::i;:::-;;;;75187:113;;73232:340:::0;17213:13;:11;:13::i;:::-;73343:15:::1;::::0;;;::::1;-1:-1:-1::0;;;;;73343:15:0::1;73303:36;::::0;::::1;:24;73316:10;73303:12;:24::i;:::-;:36;;;;:::i;:::-;:55;;73295:102;;;::::0;-1:-1:-1;;;73295:102:0;;16203:2:1;73295:102:0::1;::::0;::::1;16185:21:1::0;16242:2;16222:18;;;16215:30;16281:34;16261:18;;;16254:62;-1:-1:-1;;;16332:18:1;;;16325:32;16374:19;;73295:102:0::1;16001:398:1::0;73295:102:0::1;73408:14;73425:13;34123:12:::0;;33910:7;34107:13;:28;;33849:323;73425:13:::1;73479:9;::::0;73408:30;;-1:-1:-1;;;;73479:9:0;::::1;-1:-1:-1::0;;;;;73479:9:0::1;73457:18;;::::0;::::1;73408:30:::0;73457:18:::1;:::i;:::-;:31;;73449:72;;;::::0;-1:-1:-1;;;73449:72:0;;16606:2:1;73449:72:0::1;::::0;::::1;16588:21:1::0;16645:2;16625:18;;;16618:30;16684;16664:18;;;16657:58;16732:18;;73449:72:0::1;16404:352:1::0;73449:72:0::1;73532:32;73542:10;73554:9;73532:32;;:9;:32::i;51940:407::-:0;52115:31;52128:4;52134:2;52138:7;52115:12;:31::i;:::-;-1:-1:-1;;;;;52161:14:0;;;:19;52157:183;;52200:56;52231:4;52237:2;52241:7;52250:5;52200:30;:56::i;:::-;52195:145;;52284:40;;-1:-1:-1;;;52284:40:0;;;;;;;;;;;52195:145;51940:407;;;;:::o;75332:484::-;75450:13;75489:16;75497:7;75489;:16::i;:::-;75481:76;;;;-1:-1:-1;;;75481:76:0;;16963:2:1;75481:76:0;;;16945:21:1;17002:2;16982:18;;;16975:30;17041:34;17021:18;;;17014:62;-1:-1:-1;;;17092:18:1;;;17085:45;17147:19;;75481:76:0;16761:411:1;75481:76:0;75574:8;;;;;;;75570:62;;75606:14;75599:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75332:484;;;:::o;75570:62::-;75642:21;75666:12;75642:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75720:1;75702:7;75696:21;:25;:112;;;;;;;;;;;;;;;;;75761:7;75770:18;:7;:16;:18::i;:::-;75744:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75696:112;75689:119;75332:484;-1:-1:-1;;;75332:484:0:o;70448:26::-;;;;;;;:::i;74331:326::-;17213:13;:11;:13::i;:::-;74452:32;;::::1;74444:77;;;;-1:-1:-1::0;;;74444:77:0::1;;;;;;;:::i;:::-;74537:9;74532:118;74552:21:::0;;::::1;74532:118;;;74631:4;;74636:1;74631:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;74595:17;:32;74613:10;;74624:1;74613:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;74595:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;74595:32:0;;;:43;;:32;;-1:-1:-1;74595:43:0::1;::::0;;;::::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;74575:3;;;;;:::i;:::-;;;;74532:118;;75824:115:::0;-1:-1:-1;;;;;35437:25:0;;75883:7;35437:25;;;:18;:25;;29330:2;35437:25;;;;-1:-1:-1;;;;;35437:50:0;;35436:82;75910:21;35348:178;74015:308;17213:13;:11;:13::i;:::-;74127:32;;::::1;74119:77;;;;-1:-1:-1::0;;;74119:77:0::1;;;;;;;:::i;:::-;74212:9;74207:109;74227:21:::0;;::::1;74207:109;;;74297:4;;74302:1;74297:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;74270:8;:23;74279:10;;74290:1;74279:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;74270:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;74270:23:0;;;:34;;:23;;-1:-1:-1;74270:34:0::1;::::0;;;::::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;74250:3;;;;;:::i;:::-;;;;74207:109;;45538:164:::0;-1:-1:-1;;;;;45659:25:0;;;45635:4;45659:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45538:164::o;72753:471::-;72825:14;;;;;;;72817:50;;;;-1:-1:-1;;;72817:50:0;;17880:2:1;72817:50:0;;;17862:21:1;17919:2;17899:18;;;17892:30;17958:25;17938:18;;;17931:53;18001:18;;72817:50:0;17678:347:1;72817:50:0;72899:2;72886:9;:15;;;;72878:82;;;;-1:-1:-1;;;72878:82:0;;18232:2:1;72878:82:0;;;18214:21:1;18271:2;18251:18;;;18244:30;18310:34;18290:18;;;18283:62;-1:-1:-1;;;18361:18:1;;;18354:52;18423:19;;72878:82:0;18030:418:1;72878:82:0;72971:14;72988:13;34123:12;;33910:7;34107:13;:28;;33849:323;72988:13;73042:9;;72971:30;;-1:-1:-1;;;;73042:9:0;;-1:-1:-1;;;;;73042:9:0;73020:18;;;;72971:30;73020:18;:::i;:::-;:31;;73012:72;;;;-1:-1:-1;;;73012:72:0;;;;;;;:::i;:::-;73128:9;;73116:21;;-1:-1:-1;;;73128:9:0;;-1:-1:-1;;;;;73128:9:0;73116:21;;;;:::i;:::-;-1:-1:-1;;;;;73103:34:0;:9;:34;;73095:78;;;;-1:-1:-1;;;73095:78:0;;11717:2:1;73095:78:0;;;11699:21:1;11756:2;11736:18;;;11729:30;11795:33;11775:18;;;11768:61;11846:18;;73095:78:0;11515:355:1;18233:201:0;17213:13;:11;:13::i;:::-;-1:-1:-1;;;;;18322:22:0;::::1;18314:73;;;::::0;-1:-1:-1;;;18314:73:0;;18655:2:1;18314:73:0::1;::::0;::::1;18637:21:1::0;18694:2;18674:18;;;18667:30;18733:34;18713:18;;;18706:62;-1:-1:-1;;;18784:18:1;;;18777:36;18830:19;;18314:73:0::1;18453:402:1::0;18314:73:0::1;18398:28;18417:8;18398:18;:28::i;76210:89::-:0;17213:13;:11;:13::i;:::-;76273:11:::1;:18:::0;;-1:-1:-1;;76273:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;76210:89::o;76410:99::-;17213:13;:11;:13::i;:::-;76479:9:::1;:22:::0;;-1:-1:-1;;;;;76479:22:0;;::::1;-1:-1:-1::0;;;76479:22:0::1;-1:-1:-1::0;;;;76479:22:0;;::::1;::::0;;;::::1;::::0;;76410:99::o;45960:282::-;46025:4;46115:13;;46105:7;:23;46062:153;;;;-1:-1:-1;;46166:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;46166:44:0;:49;;45960:282::o;17492:132::-;17400:6;;-1:-1:-1;;;;;17400:6:0;68355:10;17556:23;17548:68;;;;-1:-1:-1;;;17548:68:0;;19062:2:1;17548:68:0;;;19044:21:1;;;19081:18;;;19074:30;19140:34;19120:18;;;19113:62;19192:18;;17548:68:0;18860:356:1;40646:1275:0;40713:7;40748;40850:13;;40843:4;:20;40839:1015;;;40888:14;40905:23;;;:17;:23;;;;;;;-1:-1:-1;;;40994:24:0;;:29;;40990:845;;41659:113;41666:6;41676:1;41666:11;41659:113;;-1:-1:-1;;;41737:6:0;41719:25;;;;:17;:25;;;;;;41659:113;;40990:845;40865:989;40839:1015;41882:31;;-1:-1:-1;;;41882:31:0;;;;;;;;;;;62100:112;62177:27;62187:2;62191:8;62177:27;;;;;;;;;;;;:9;:27::i;18594:191::-;18687:6;;;-1:-1:-1;;;;;18704:17:0;;;-1:-1:-1;;;;;;18704:17:0;;;;;;;18737:40;;18687:6;;;18704:17;18687:6;;18737:40;;18668:16;;18737:40;18657:128;18594:191;:::o;54431:716::-;54615:88;;-1:-1:-1;;;54615:88:0;;54594:4;;-1:-1:-1;;;;;54615:45:0;;;;;:88;;68355:10;;54682:4;;54688:7;;54697:5;;54615:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54615:88:0;;;;;;;;-1:-1:-1;;54615:88:0;;;;;;;;;;;;:::i;:::-;;;54611:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54898:6;:13;54915:1;54898:18;54894:235;;54944:40;;-1:-1:-1;;;54944:40:0;;;;;;;;;;;54894:235;55087:6;55081:13;55072:6;55068:2;55064:15;55057:38;54611:529;-1:-1:-1;;;;;;54774:64:0;-1:-1:-1;;;54774:64:0;;-1:-1:-1;54611:529:0;54431:716;;;;;;:::o;13305:::-;13361:13;13412:14;13429:17;13440:5;13429:10;:17::i;:::-;13449:1;13429:21;13412:38;;13465:20;13499:6;-1:-1:-1;;;;;13488:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13488:18:0;-1:-1:-1;13465:41:0;-1:-1:-1;13630:28:0;;;13646:2;13630:28;13687:288;-1:-1:-1;;13719:5:0;-1:-1:-1;;;13856:2:0;13845:14;;13840:30;13719:5;13827:44;13917:2;13908:11;;;-1:-1:-1;13938:21:0;13687:288;13938:21;-1:-1:-1;13996:6:0;13305:716;-1:-1:-1;;;13305:716:0:o;61327:689::-;61458:19;61464:2;61468:8;61458:5;:19::i;:::-;-1:-1:-1;;;;;61519:14:0;;;:19;61515:483;;61559:11;61573:13;61621:14;;;61654:233;61685:62;61724:1;61728:2;61732:7;;;;;;61741:5;61685:30;:62::i;:::-;61680:167;;61783:40;;-1:-1:-1;;;61783:40:0;;;;;;;;;;;61680:167;61882:3;61874:5;:11;61654:233;;61969:3;61952:13;;:20;61948:34;;61974:8;;;10171:922;10224:7;;-1:-1:-1;;;10302:15:0;;10298:102;;-1:-1:-1;;;10338:15:0;;;-1:-1:-1;10382:2:0;10372:12;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;-1:-1:-1;10498:2:0;10488:12;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;-1:-1:-1;10614:2:0;10604:12;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;-1:-1:-1;10728:1:0;10718:11;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;-1:-1:-1;10841:1:0;10831:11;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;-1:-1:-1;10954:1:0;10944:11;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;11079:6;10171:922;-1:-1:-1;;10171:922:0:o;55609:2966::-;55682:20;55705:13;;;55733;;;55729:44;;55755:18;;-1:-1:-1;;;55755:18:0;;;;;;;;;;;55729:44;-1:-1:-1;;;;;56261:22:0;;;;;;:18;:22;;;;29330:2;56261:22;;;:71;;56299:32;56287:45;;56261:71;;;56575:31;;;:17;:31;;;;;-1:-1:-1;43311:15:0;;43285:24;43281:46;42880:11;42855:23;42851:41;42848:52;42838:63;;56575:173;;56810:23;;;;56575:31;;56261:22;;57575:25;56261:22;;57428:335;58089:1;58075:12;58071:20;58029:346;58130:3;58121:7;58118:16;58029:346;;58348:7;58338:8;58335:1;58308:25;58305:1;58302;58297:59;58183:1;58170:15;58029:346;;;58033:77;58408:8;58420:1;58408:13;58404:45;;58430:19;;-1:-1:-1;;;58430:19:0;;;;;;;;;;;58404:45;58466:13;:19;-1:-1:-1;51149:193: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:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:186::-;2237:6;2290:2;2278:9;2269:7;2265:23;2261:32;2258:52;;;2306:1;2303;2296:12;2258:52;2329:29;2348:9;2329:29;:::i;2748:160::-;2813:20;;2869:13;;2862:21;2852:32;;2842:60;;2898:1;2895;2888:12;2913:180;2969:6;3022:2;3010:9;3001:7;2997:23;2993:32;2990:52;;;3038:1;3035;3028:12;2990:52;3061:26;3077:9;3061:26;:::i;3098:328::-;3175:6;3183;3191;3244:2;3232:9;3223:7;3219:23;3215:32;3212:52;;;3260:1;3257;3250:12;3212:52;3283:29;3302:9;3283:29;:::i;:::-;3273:39;;3331:38;3365:2;3354:9;3350:18;3331:38;:::i;:::-;3321:48;;3416:2;3405:9;3401:18;3388:32;3378:42;;3098:328;;;;;:::o;3431:367::-;3494:8;3504:6;3558:3;3551:4;3543:6;3539:17;3535:27;3525:55;;3576:1;3573;3566:12;3525:55;-1:-1:-1;3599:20:1;;-1:-1:-1;;;;;3631:30:1;;3628:50;;;3674:1;3671;3664:12;3628:50;3711:4;3703:6;3699:17;3687:29;;3771:3;3764:4;3754:6;3751:1;3747:14;3739:6;3735:27;3731:38;3728:47;3725:67;;;3788:1;3785;3778:12;3725:67;3431:367;;;;;:::o;3803:772::-;3924:6;3932;3940;3948;4001:2;3989:9;3980:7;3976:23;3972:32;3969:52;;;4017:1;4014;4007:12;3969:52;4057:9;4044:23;-1:-1:-1;;;;;4127:2:1;4119:6;4116:14;4113:34;;;4143:1;4140;4133:12;4113:34;4182:70;4244:7;4235:6;4224:9;4220:22;4182:70;:::i;:::-;4271:8;;-1:-1:-1;4156:96:1;-1:-1:-1;4359:2:1;4344:18;;4331:32;;-1:-1:-1;4375:16:1;;;4372:36;;;4404:1;4401;4394:12;4372:36;;4443:72;4507:7;4496:8;4485:9;4481:24;4443:72;:::i;:::-;3803:772;;;;-1:-1:-1;4534:8:1;-1:-1:-1;;;;3803:772:1:o;4580:276::-;4638:6;4691:2;4679:9;4670:7;4666:23;4662:32;4659:52;;;4707:1;4704;4697:12;4659:52;4746:9;4733:23;4796:10;4789:5;4785:22;4778:5;4775:33;4765:61;;4822:1;4819;4812:12;4861:127;4922:10;4917:3;4913:20;4910:1;4903:31;4953:4;4950:1;4943:15;4977:4;4974:1;4967:15;4993:632;5058:5;-1:-1:-1;;;;;5129:2:1;5121:6;5118:14;5115:40;;;5135:18;;:::i;:::-;5210:2;5204:9;5178:2;5264:15;;-1:-1:-1;;5260:24:1;;;5286:2;5256:33;5252:42;5240:55;;;5310:18;;;5330:22;;;5307:46;5304:72;;;5356:18;;:::i;:::-;5396:10;5392:2;5385:22;5425:6;5416:15;;5455:6;5447;5440:22;5495:3;5486:6;5481:3;5477:16;5474:25;5471:45;;;5512:1;5509;5502:12;5471:45;5562:6;5557:3;5550:4;5542:6;5538:17;5525:44;5617:1;5610:4;5601:6;5593;5589:19;5585:30;5578:41;;;;4993:632;;;;;:::o;5630:451::-;5699:6;5752:2;5740:9;5731:7;5727:23;5723:32;5720:52;;;5768:1;5765;5758:12;5720:52;5808:9;5795:23;-1:-1:-1;;;;;5833:6:1;5830:30;5827:50;;;5873:1;5870;5863:12;5827:50;5896:22;;5949:4;5941:13;;5937:27;-1:-1:-1;5927:55:1;;5978:1;5975;5968:12;5927:55;6001:74;6067:7;6062:2;6049:16;6044:2;6040;6036:11;6001:74;:::i;6291:254::-;6356:6;6364;6417:2;6405:9;6396:7;6392:23;6388:32;6385:52;;;6433:1;6430;6423:12;6385:52;6456:29;6475:9;6456:29;:::i;:::-;6446:39;;6504:35;6535:2;6524:9;6520:18;6504:35;:::i;:::-;6494:45;;6291:254;;;;;:::o;6550:667::-;6645:6;6653;6661;6669;6722:3;6710:9;6701:7;6697:23;6693:33;6690:53;;;6739:1;6736;6729:12;6690:53;6762:29;6781:9;6762:29;:::i;:::-;6752:39;;6810:38;6844:2;6833:9;6829:18;6810:38;:::i;:::-;6800:48;;6895:2;6884:9;6880:18;6867:32;6857:42;;6950:2;6939:9;6935:18;6922:32;-1:-1:-1;;;;;6969:6:1;6966:30;6963:50;;;7009:1;7006;6999:12;6963:50;7032:22;;7085:4;7077:13;;7073:27;-1:-1:-1;7063:55:1;;7114:1;7111;7104:12;7063:55;7137:74;7203:7;7198:2;7185:16;7180:2;7176;7172:11;7137:74;:::i;:::-;7127:84;;;6550:667;;;;;;;:::o;7222:260::-;7290:6;7298;7351:2;7339:9;7330:7;7326:23;7322:32;7319:52;;;7367:1;7364;7357:12;7319:52;7390:29;7409:9;7390:29;:::i;:::-;7380:39;;7438:38;7472:2;7461:9;7457:18;7438:38;:::i;7487:284::-;7545:6;7598:2;7586:9;7577:7;7573:23;7569:32;7566:52;;;7614:1;7611;7604:12;7566:52;7653:9;7640:23;-1:-1:-1;;;;;7696:5:1;7692:30;7685:5;7682:41;7672:69;;7737:1;7734;7727:12;7776:380;7855:1;7851:12;;;;7898;;;7919:61;;7973:4;7965:6;7961:17;7951:27;;7919:61;8026:2;8018:6;8015:14;7995:18;7992:38;7989:161;;8072:10;8067:3;8063:20;8060:1;8053:31;8107:4;8104:1;8097:15;8135:4;8132:1;8125:15;7989:161;;7776:380;;;:::o;8161:356::-;8363:2;8345:21;;;8382:18;;;8375:30;8441:34;8436:2;8421:18;;8414:62;8508:2;8493:18;;8161:356::o;8522:127::-;8583:10;8578:3;8574:20;8571:1;8564:31;8614:4;8611:1;8604:15;8638:4;8635:1;8628:15;8654:127;8715:10;8710:3;8706:20;8703:1;8696:31;8746:4;8743:1;8736:15;8770:4;8767:1;8760:15;8786:172;8853:10;8883;;;8895;;;8879:27;;8918:11;;;8915:37;;;8932:18;;:::i;:::-;8915:37;8786:172;;;;:::o;8963:135::-;9002:3;9023:17;;;9020:43;;9043:18;;:::i;:::-;-1:-1:-1;9090:1:1;9079:13;;8963:135::o;9462:180::-;-1:-1:-1;;;;;9567:10:1;;;9579;;;9563:27;;9602:11;;;9599:37;;;9616:18;;:::i;10766:125::-;10831:9;;;10852:10;;;10849:36;;;10865:18;;:::i;10896:352::-;11098:2;11080:21;;;11137:2;11117:18;;;11110:30;11176;11171:2;11156:18;;11149:58;11239:2;11224:18;;10896:352::o;11253:257::-;-1:-1:-1;;;;;11374:10:1;;;11386;;;11370:27;11417:20;;;;11324:18;11456:24;;;11446:58;;11484:18;;:::i;:::-;11446:58;;11253:257;;;;:::o;11875:175::-;11943:10;11986;;;11974;;;11970:27;;12009:12;;;12006:38;;;12024:18;;:::i;12391:545::-;12493:2;12488:3;12485:11;12482:448;;;12529:1;12554:5;12550:2;12543:17;12599:4;12595:2;12585:19;12669:2;12657:10;12653:19;12650:1;12646:27;12640:4;12636:38;12705:4;12693:10;12690:20;12687:47;;;-1:-1:-1;12728:4:1;12687:47;12783:2;12778:3;12774:12;12771:1;12767:20;12761:4;12757:31;12747:41;;12838:82;12856:2;12849:5;12846:13;12838:82;;;12901:17;;;12882:1;12871:13;12838:82;;13112:1352;13238:3;13232:10;-1:-1:-1;;;;;13257:6:1;13254:30;13251:56;;;13287:18;;:::i;:::-;13316:97;13406:6;13366:38;13398:4;13392:11;13366:38;:::i;:::-;13360:4;13316:97;:::i;:::-;13468:4;;13532:2;13521:14;;13549:1;13544:663;;;;14251:1;14268:6;14265:89;;;-1:-1:-1;14320:19:1;;;14314:26;14265:89;-1:-1:-1;;13069:1:1;13065:11;;;13061:24;13057:29;13047:40;13093:1;13089:11;;;13044:57;14367:81;;13514:944;;13544:663;12338:1;12331:14;;;12375:4;12362:18;;-1:-1:-1;;13580:20:1;;;13698:236;13712:7;13709:1;13706:14;13698:236;;;13801:19;;;13795:26;13780:42;;13893:27;;;;13861:1;13849:14;;;;13728:19;;13698:236;;;13702:3;13962:6;13953:7;13950:19;13947:201;;;14023:19;;;14017:26;-1:-1:-1;;14106:1:1;14102:14;;;14118:3;14098:24;14094:37;14090:42;14075:58;14060:74;;13947:201;-1:-1:-1;;;;;14194:1:1;14178:14;;;14174:22;14161:36;;-1:-1:-1;13112:1352:1:o;17177:496::-;17356:3;17394:6;17388:13;17410:66;17469:6;17464:3;17457:4;17449:6;17445:17;17410:66;:::i;:::-;17539:13;;17498:16;;;;17561:70;17539:13;17498:16;17608:4;17596:17;;17561:70;:::i;:::-;17647:20;;17177:496;-1:-1:-1;;;;17177:496:1:o;19221:489::-;-1:-1:-1;;;;;19490:15:1;;;19472:34;;19542:15;;19537:2;19522:18;;19515:43;19589:2;19574:18;;19567:34;;;19637:3;19632:2;19617:18;;19610:31;;;19415:4;;19658:46;;19684:19;;19676:6;19658:46;:::i;:::-;19650:54;19221:489;-1:-1:-1;;;;;;19221:489:1:o;19715:249::-;19784:6;19837:2;19825:9;19816:7;19812:23;19808:32;19805:52;;;19853:1;19850;19843:12;19805:52;19885:9;19879:16;19904:30;19928:5;19904:30;:::i
Swarm Source
ipfs://154684b9d53bc183c6c98f9143b18f48b59a6c3d02e402e57ab42520a85b1a89
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.