ERC-721
Overview
Max Total Supply
2,222 PP
Holders
1,104
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 PPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
pepoos
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-10 */ // SPDX-License-Identifier: MIT // 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/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (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/popos.sol pragma solidity >=0.8.9 <0.9.0; contract pepoos is ERC721A, Ownable, ReentrancyGuard { string public baseURI; string public endPoint = ".json"; string public hiddenMetadataUri = ""; bool public revealed = true; uint256 public price = 0.000 ether; uint256 public maxPerTx = 2; uint256 public maxPerWallet = 2; uint256 public maxSupply = 2222; constructor() ERC721A("pepoos", "PP") {} function toggleRevealed() external onlyOwner { revealed = !revealed; } function setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } function mint(uint256 amount) external payable { require(msg.sender == tx.origin, "You can't mint from a contract."); require(msg.value == amount * price, "Please send the exact amount in order to mint."); require(totalSupply() + amount <= maxSupply, "Sold out."); require(numberMinted(msg.sender) + amount <= maxPerWallet, "You have exceeded the mint limit per wallet."); require(amount <= maxPerTx, "You have exceeded the mint limit per transaction."); _safeMint(msg.sender, amount); } function ownerMint(uint256 amount) external onlyOwner { require(totalSupply() + amount <= maxSupply, "Can't mint"); _safeMint(msg.sender, amount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); if (revealed == false) { return hiddenMetadataUri; } return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId), endPoint)) : ''; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endPoint","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","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":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200004a9190620004d1565b5060405180602001604052806000815250600c90816200006b9190620004d1565b506001600d60006101000a81548160ff0219169083151502179055506000600e556002600f5560026010556108ae601155348015620000a957600080fd5b506040518060400160405280600681526020017f7065706f6f7300000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f50500000000000000000000000000000000000000000000000000000000000008152508160029081620001279190620004d1565b508060039081620001399190620004d1565b506200014a6200018060201b60201c565b600081905550505062000172620001666200018960201b60201c565b6200019160201b60201c565b6001600981905550620005b8565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d957607f821691505b602082108103620002ef57620002ee62000291565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003597fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200031a565b6200036586836200031a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003b2620003ac620003a6846200037d565b62000387565b6200037d565b9050919050565b6000819050919050565b620003ce8362000391565b620003e6620003dd82620003b9565b84845462000327565b825550505050565b600090565b620003fd620003ee565b6200040a818484620003c3565b505050565b5b81811015620004325762000426600082620003f3565b60018101905062000410565b5050565b601f82111562000481576200044b81620002f5565b62000456846200030a565b8101602085101562000466578190505b6200047e62000475856200030a565b8301826200040f565b50505b505050565b600082821c905092915050565b6000620004a66000198460080262000486565b1980831691505092915050565b6000620004c1838362000493565b9150826002028217905092915050565b620004dc8262000257565b67ffffffffffffffff811115620004f857620004f762000262565b5b620005048254620002c0565b6200051182828562000436565b600060209050601f83116001811462000549576000841562000534578287015190505b620005408582620004b3565b865550620005b0565b601f1984166200055986620002f5565b60005b8281101562000583578489015182556001820191506020850194506020810190506200055c565b86831015620005a357848901516200059f601f89168262000493565b8355505b6001600288020188555050505b505050505050565b61312d80620005c86000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610647578063f19e75d414610684578063f2fde38b146106ad578063f968adbe146106d6576101d8565b8063b88d4fde14610586578063c87b56dd146105a2578063d5abeb01146105df578063dc33e6811461060a576101d8565b8063a035b1fe116100d1578063a035b1fe146104eb578063a0712d6814610516578063a22cb46514610532578063a45ba8e71461055b576101d8565b8063715018a6146104535780638da5cb5b1461046a57806395d89b411461049557806399e51e1c146104c0576101d8565b806342842e0e1161017a5780635bc020bc116101495780635bc020bc146103975780636352211e146103ae5780636c0360eb146103eb57806370a0823114610416576101d8565b806342842e0e146102fc578063453c231014610318578063518302271461034357806355f804b31461036e576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd1461029e57806323b872dd146102c95780633ccfd60b146102e5576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612087565b610701565b60405161021191906120cf565b60405180910390f35b34801561022657600080fd5b5061022f610793565b60405161023c919061217a565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906121d2565b610825565b6040516102799190612240565b60405180910390f35b61029c60048036038101906102979190612287565b6108a4565b005b3480156102aa57600080fd5b506102b36109e8565b6040516102c091906122d6565b60405180910390f35b6102e360048036038101906102de91906122f1565b6109ff565b005b3480156102f157600080fd5b506102fa610d21565b005b610316600480360381019061031191906122f1565b610de8565b005b34801561032457600080fd5b5061032d610e08565b60405161033a91906122d6565b60405180910390f35b34801561034f57600080fd5b50610358610e0e565b60405161036591906120cf565b60405180910390f35b34801561037a57600080fd5b50610395600480360381019061039091906123a9565b610e21565b005b3480156103a357600080fd5b506103ac610e3f565b005b3480156103ba57600080fd5b506103d560048036038101906103d091906121d2565b610e73565b6040516103e29190612240565b60405180910390f35b3480156103f757600080fd5b50610400610e85565b60405161040d919061217a565b60405180910390f35b34801561042257600080fd5b5061043d600480360381019061043891906123f6565b610f13565b60405161044a91906122d6565b60405180910390f35b34801561045f57600080fd5b50610468610fcb565b005b34801561047657600080fd5b5061047f610fdf565b60405161048c9190612240565b60405180910390f35b3480156104a157600080fd5b506104aa611009565b6040516104b7919061217a565b60405180910390f35b3480156104cc57600080fd5b506104d561109b565b6040516104e2919061217a565b60405180910390f35b3480156104f757600080fd5b50610500611129565b60405161050d91906122d6565b60405180910390f35b610530600480360381019061052b91906121d2565b61112f565b005b34801561053e57600080fd5b506105596004803603810190610554919061244f565b6112ed565b005b34801561056757600080fd5b506105706113f8565b60405161057d919061217a565b60405180910390f35b6105a0600480360381019061059b91906125bf565b611486565b005b3480156105ae57600080fd5b506105c960048036038101906105c491906121d2565b6114f9565b6040516105d6919061217a565b60405180910390f35b3480156105eb57600080fd5b506105f4611649565b60405161060191906122d6565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c91906123f6565b61164f565b60405161063e91906122d6565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190612642565b611661565b60405161067b91906120cf565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a691906121d2565b6116f5565b005b3480156106b957600080fd5b506106d460048036038101906106cf91906123f6565b611761565b005b3480156106e257600080fd5b506106eb6117e4565b6040516106f891906122d6565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061078c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107a2906126b1565b80601f01602080910402602001604051908101604052809291908181526020018280546107ce906126b1565b801561081b5780601f106107f05761010080835404028352916020019161081b565b820191906000526020600020905b8154815290600101906020018083116107fe57829003601f168201915b5050505050905090565b6000610830826117ea565b610866576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108af82610e73565b90508073ffffffffffffffffffffffffffffffffffffffff166108d0611849565b73ffffffffffffffffffffffffffffffffffffffff1614610933576108fc816108f7611849565b611661565b610932576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109f2611851565b6001546000540303905090565b6000610a0a8261185a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a71576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a7d84611926565b91509150610a938187610a8e611849565b61194d565b610adf57610aa886610aa3611849565b611661565b610ade576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b45576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b528686866001611991565b8015610b5d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c2b85610c07888887611997565b7c0200000000000000000000000000000000000000000000000000000000176119bf565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610cb15760006001850190506000600460008381526020019081526020016000205403610caf576000548114610cae578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d1986868660016119ea565b505050505050565b610d296119f0565b610d31611a6e565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d5790612713565b60006040518083038185875af1925050503d8060008114610d94576040519150601f19603f3d011682016040523d82523d6000602084013e610d99565b606091505b5050905080610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490612774565b60405180910390fd5b50610de6611abd565b565b610e0383838360405180602001604052806000815250611486565b505050565b60105481565b600d60009054906101000a900460ff1681565b610e296119f0565b8181600a9182610e3a92919061294b565b505050565b610e476119f0565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000610e7e8261185a565b9050919050565b600a8054610e92906126b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebe906126b1565b8015610f0b5780601f10610ee057610100808354040283529160200191610f0b565b820191906000526020600020905b815481529060010190602001808311610eee57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f7a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fd36119f0565b610fdd6000611ac7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611018906126b1565b80601f0160208091040260200160405190810160405280929190818152602001828054611044906126b1565b80156110915780601f1061106657610100808354040283529160200191611091565b820191906000526020600020905b81548152906001019060200180831161107457829003601f168201915b5050505050905090565b600b80546110a8906126b1565b80601f01602080910402602001604051908101604052809291908181526020018280546110d4906126b1565b80156111215780601f106110f657610100808354040283529160200191611121565b820191906000526020600020905b81548152906001019060200180831161110457829003601f168201915b505050505081565b600e5481565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461119d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119490612a67565b60405180910390fd5b600e54816111ab9190612ab6565b34146111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e390612b6a565b60405180910390fd5b601154816111f86109e8565b6112029190612b8a565b1115611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a90612c0a565b60405180910390fd5b601054816112503361164f565b61125a9190612b8a565b111561129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290612c9c565b60405180910390fd5b600f548111156112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790612d2e565b60405180910390fd5b6112ea3382611b8d565b50565b80600760006112fa611849565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113a7611849565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ec91906120cf565b60405180910390a35050565b600c8054611405906126b1565b80601f0160208091040260200160405190810160405280929190818152602001828054611431906126b1565b801561147e5780601f106114535761010080835404028352916020019161147e565b820191906000526020600020905b81548152906001019060200180831161146157829003601f168201915b505050505081565b6114918484846109ff565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114f3576114bc84848484611bab565b6114f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611504826117ea565b61153a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600d60009054906101000a900460ff161515036115e757600c8054611562906126b1565b80601f016020809104026020016040519081016040528092919081815260200182805461158e906126b1565b80156115db5780601f106115b0576101008083540402835291602001916115db565b820191906000526020600020905b8154815290600101906020018083116115be57829003601f168201915b50505050509050611644565b6000600a80546115f6906126b1565b9050036116125760405180602001604052806000815250611641565b600a61161d83611cfb565b600b60405160200161163193929190612e0d565b6040516020818303038152906040525b90505b919050565b60115481565b600061165a82611d4b565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116fd6119f0565b601154816117096109e8565b6117139190612b8a565b1115611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b90612e8a565b60405180910390fd5b61175e3382611b8d565b50565b6117696119f0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cf90612f1c565b60405180910390fd5b6117e181611ac7565b50565b600f5481565b6000816117f5611851565b11158015611804575060005482105b8015611842575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611869611851565b116118ef576000548110156118ee5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036118ec575b600081036118e25760046000836001900393508381526020019081526020016000205490506118b8565b8092505050611921565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86119ae868684611da2565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6119f8611dab565b73ffffffffffffffffffffffffffffffffffffffff16611a16610fdf565b73ffffffffffffffffffffffffffffffffffffffff1614611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6390612f88565b60405180910390fd5b565b600260095403611ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaa90612ff4565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ba7828260405180602001604052806000815250611db3565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bd1611849565b8786866040518563ffffffff1660e01b8152600401611bf39493929190613069565b6020604051808303816000875af1925050508015611c2f57506040513d601f19601f82011682018060405250810190611c2c91906130ca565b60015b611ca8573d8060008114611c5f576040519150601f19603f3d011682016040523d82523d6000602084013e611c64565b606091505b506000815103611ca0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391506000825281835b600115611d3657600184039350600a81066030018453600a8104905080611d14575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b611dbd8383611e50565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e4b57600080549050600083820390505b611dfd6000868380600101945086611bab565b611e33576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dea578160005414611e4857600080fd5b50505b505050565b60008054905060008203611e90576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e9d6000848385611991565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f1483611f056000866000611997565b611f0e8561200b565b176119bf565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fb557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f7a565b5060008203611ff0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061200660008483856119ea565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120648161202f565b811461206f57600080fd5b50565b6000813590506120818161205b565b92915050565b60006020828403121561209d5761209c612025565b5b60006120ab84828501612072565b91505092915050565b60008115159050919050565b6120c9816120b4565b82525050565b60006020820190506120e460008301846120c0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612124578082015181840152602081019050612109565b60008484015250505050565b6000601f19601f8301169050919050565b600061214c826120ea565b61215681856120f5565b9350612166818560208601612106565b61216f81612130565b840191505092915050565b600060208201905081810360008301526121948184612141565b905092915050565b6000819050919050565b6121af8161219c565b81146121ba57600080fd5b50565b6000813590506121cc816121a6565b92915050565b6000602082840312156121e8576121e7612025565b5b60006121f6848285016121bd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061222a826121ff565b9050919050565b61223a8161221f565b82525050565b60006020820190506122556000830184612231565b92915050565b6122648161221f565b811461226f57600080fd5b50565b6000813590506122818161225b565b92915050565b6000806040838503121561229e5761229d612025565b5b60006122ac85828601612272565b92505060206122bd858286016121bd565b9150509250929050565b6122d08161219c565b82525050565b60006020820190506122eb60008301846122c7565b92915050565b60008060006060848603121561230a57612309612025565b5b600061231886828701612272565b935050602061232986828701612272565b925050604061233a868287016121bd565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261236957612368612344565b5b8235905067ffffffffffffffff81111561238657612385612349565b5b6020830191508360018202830111156123a2576123a161234e565b5b9250929050565b600080602083850312156123c0576123bf612025565b5b600083013567ffffffffffffffff8111156123de576123dd61202a565b5b6123ea85828601612353565b92509250509250929050565b60006020828403121561240c5761240b612025565b5b600061241a84828501612272565b91505092915050565b61242c816120b4565b811461243757600080fd5b50565b60008135905061244981612423565b92915050565b6000806040838503121561246657612465612025565b5b600061247485828601612272565b92505060206124858582860161243a565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124cc82612130565b810181811067ffffffffffffffff821117156124eb576124ea612494565b5b80604052505050565b60006124fe61201b565b905061250a82826124c3565b919050565b600067ffffffffffffffff82111561252a57612529612494565b5b61253382612130565b9050602081019050919050565b82818337600083830152505050565b600061256261255d8461250f565b6124f4565b90508281526020810184848401111561257e5761257d61248f565b5b612589848285612540565b509392505050565b600082601f8301126125a6576125a5612344565b5b81356125b684826020860161254f565b91505092915050565b600080600080608085870312156125d9576125d8612025565b5b60006125e787828801612272565b94505060206125f887828801612272565b9350506040612609878288016121bd565b925050606085013567ffffffffffffffff81111561262a5761262961202a565b5b61263687828801612591565b91505092959194509250565b6000806040838503121561265957612658612025565b5b600061266785828601612272565b925050602061267885828601612272565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126c957607f821691505b6020821081036126dc576126db612682565b5b50919050565b600081905092915050565b50565b60006126fd6000836126e2565b9150612708826126ed565b600082019050919050565b600061271e826126f0565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061275e6010836120f5565b915061276982612728565b602082019050919050565b6000602082019050818103600083015261278d81612751565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026128017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826127c4565b61280b86836127c4565b95508019841693508086168417925050509392505050565b6000819050919050565b600061284861284361283e8461219c565b612823565b61219c565b9050919050565b6000819050919050565b6128628361282d565b61287661286e8261284f565b8484546127d1565b825550505050565b600090565b61288b61287e565b612896818484612859565b505050565b5b818110156128ba576128af600082612883565b60018101905061289c565b5050565b601f8211156128ff576128d08161279f565b6128d9846127b4565b810160208510156128e8578190505b6128fc6128f4856127b4565b83018261289b565b50505b505050565b600082821c905092915050565b600061292260001984600802612904565b1980831691505092915050565b600061293b8383612911565b9150826002028217905092915050565b6129558383612794565b67ffffffffffffffff81111561296e5761296d612494565b5b61297882546126b1565b6129838282856128be565b6000601f8311600181146129b257600084156129a0578287013590505b6129aa858261292f565b865550612a12565b601f1984166129c08661279f565b60005b828110156129e8578489013582556001820191506020850194506020810190506129c3565b86831015612a055784890135612a01601f891682612911565b8355505b6001600288020188555050505b50505050505050565b7f596f752063616e2774206d696e742066726f6d206120636f6e74726163742e00600082015250565b6000612a51601f836120f5565b9150612a5c82612a1b565b602082019050919050565b60006020820190508181036000830152612a8081612a44565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ac18261219c565b9150612acc8361219c565b9250828202612ada8161219c565b91508282048414831517612af157612af0612a87565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e7420696e2060008201527f6f7264657220746f206d696e742e000000000000000000000000000000000000602082015250565b6000612b54602e836120f5565b9150612b5f82612af8565b604082019050919050565b60006020820190508181036000830152612b8381612b47565b9050919050565b6000612b958261219c565b9150612ba08361219c565b9250828201905080821115612bb857612bb7612a87565b5b92915050565b7f536f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b6000612bf46009836120f5565b9150612bff82612bbe565b602082019050919050565b60006020820190508181036000830152612c2381612be7565b9050919050565b7f596f75206861766520657863656564656420746865206d696e74206c696d697460008201527f207065722077616c6c65742e0000000000000000000000000000000000000000602082015250565b6000612c86602c836120f5565b9150612c9182612c2a565b604082019050919050565b60006020820190508181036000830152612cb581612c79565b9050919050565b7f596f75206861766520657863656564656420746865206d696e74206c696d697460008201527f20706572207472616e73616374696f6e2e000000000000000000000000000000602082015250565b6000612d186031836120f5565b9150612d2382612cbc565b604082019050919050565b60006020820190508181036000830152612d4781612d0b565b9050919050565b600081905092915050565b60008154612d66816126b1565b612d708186612d4e565b94506001821660008114612d8b5760018114612da057612dd3565b60ff1983168652811515820286019350612dd3565b612da98561279f565b60005b83811015612dcb57815481890152600182019150602081019050612dac565b838801955050505b50505092915050565b6000612de7826120ea565b612df18185612d4e565b9350612e01818560208601612106565b80840191505092915050565b6000612e198286612d59565b9150612e258285612ddc565b9150612e318284612d59565b9150819050949350505050565b7f43616e2774206d696e7400000000000000000000000000000000000000000000600082015250565b6000612e74600a836120f5565b9150612e7f82612e3e565b602082019050919050565b60006020820190508181036000830152612ea381612e67565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f066026836120f5565b9150612f1182612eaa565b604082019050919050565b60006020820190508181036000830152612f3581612ef9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f726020836120f5565b9150612f7d82612f3c565b602082019050919050565b60006020820190508181036000830152612fa181612f65565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612fde601f836120f5565b9150612fe982612fa8565b602082019050919050565b6000602082019050818103600083015261300d81612fd1565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061303b82613014565b613045818561301f565b9350613055818560208601612106565b61305e81612130565b840191505092915050565b600060808201905061307e6000830187612231565b61308b6020830186612231565b61309860408301856122c7565b81810360608301526130aa8184613030565b905095945050505050565b6000815190506130c48161205b565b92915050565b6000602082840312156130e0576130df612025565b5b60006130ee848285016130b5565b9150509291505056fea2646970667358221220d7f45dcf32e6115c938d709fc2f5b62d0a9033c228f67bd4fe8fdf64dd3cd81564736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101d85760003560e01c8063715018a611610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610647578063f19e75d414610684578063f2fde38b146106ad578063f968adbe146106d6576101d8565b8063b88d4fde14610586578063c87b56dd146105a2578063d5abeb01146105df578063dc33e6811461060a576101d8565b8063a035b1fe116100d1578063a035b1fe146104eb578063a0712d6814610516578063a22cb46514610532578063a45ba8e71461055b576101d8565b8063715018a6146104535780638da5cb5b1461046a57806395d89b411461049557806399e51e1c146104c0576101d8565b806342842e0e1161017a5780635bc020bc116101495780635bc020bc146103975780636352211e146103ae5780636c0360eb146103eb57806370a0823114610416576101d8565b806342842e0e146102fc578063453c231014610318578063518302271461034357806355f804b31461036e576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd1461029e57806323b872dd146102c95780633ccfd60b146102e5576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612087565b610701565b60405161021191906120cf565b60405180910390f35b34801561022657600080fd5b5061022f610793565b60405161023c919061217a565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906121d2565b610825565b6040516102799190612240565b60405180910390f35b61029c60048036038101906102979190612287565b6108a4565b005b3480156102aa57600080fd5b506102b36109e8565b6040516102c091906122d6565b60405180910390f35b6102e360048036038101906102de91906122f1565b6109ff565b005b3480156102f157600080fd5b506102fa610d21565b005b610316600480360381019061031191906122f1565b610de8565b005b34801561032457600080fd5b5061032d610e08565b60405161033a91906122d6565b60405180910390f35b34801561034f57600080fd5b50610358610e0e565b60405161036591906120cf565b60405180910390f35b34801561037a57600080fd5b50610395600480360381019061039091906123a9565b610e21565b005b3480156103a357600080fd5b506103ac610e3f565b005b3480156103ba57600080fd5b506103d560048036038101906103d091906121d2565b610e73565b6040516103e29190612240565b60405180910390f35b3480156103f757600080fd5b50610400610e85565b60405161040d919061217a565b60405180910390f35b34801561042257600080fd5b5061043d600480360381019061043891906123f6565b610f13565b60405161044a91906122d6565b60405180910390f35b34801561045f57600080fd5b50610468610fcb565b005b34801561047657600080fd5b5061047f610fdf565b60405161048c9190612240565b60405180910390f35b3480156104a157600080fd5b506104aa611009565b6040516104b7919061217a565b60405180910390f35b3480156104cc57600080fd5b506104d561109b565b6040516104e2919061217a565b60405180910390f35b3480156104f757600080fd5b50610500611129565b60405161050d91906122d6565b60405180910390f35b610530600480360381019061052b91906121d2565b61112f565b005b34801561053e57600080fd5b506105596004803603810190610554919061244f565b6112ed565b005b34801561056757600080fd5b506105706113f8565b60405161057d919061217a565b60405180910390f35b6105a0600480360381019061059b91906125bf565b611486565b005b3480156105ae57600080fd5b506105c960048036038101906105c491906121d2565b6114f9565b6040516105d6919061217a565b60405180910390f35b3480156105eb57600080fd5b506105f4611649565b60405161060191906122d6565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c91906123f6565b61164f565b60405161063e91906122d6565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190612642565b611661565b60405161067b91906120cf565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a691906121d2565b6116f5565b005b3480156106b957600080fd5b506106d460048036038101906106cf91906123f6565b611761565b005b3480156106e257600080fd5b506106eb6117e4565b6040516106f891906122d6565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061078c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107a2906126b1565b80601f01602080910402602001604051908101604052809291908181526020018280546107ce906126b1565b801561081b5780601f106107f05761010080835404028352916020019161081b565b820191906000526020600020905b8154815290600101906020018083116107fe57829003601f168201915b5050505050905090565b6000610830826117ea565b610866576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108af82610e73565b90508073ffffffffffffffffffffffffffffffffffffffff166108d0611849565b73ffffffffffffffffffffffffffffffffffffffff1614610933576108fc816108f7611849565b611661565b610932576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109f2611851565b6001546000540303905090565b6000610a0a8261185a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a71576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a7d84611926565b91509150610a938187610a8e611849565b61194d565b610adf57610aa886610aa3611849565b611661565b610ade576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b45576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b528686866001611991565b8015610b5d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c2b85610c07888887611997565b7c0200000000000000000000000000000000000000000000000000000000176119bf565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610cb15760006001850190506000600460008381526020019081526020016000205403610caf576000548114610cae578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d1986868660016119ea565b505050505050565b610d296119f0565b610d31611a6e565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d5790612713565b60006040518083038185875af1925050503d8060008114610d94576040519150601f19603f3d011682016040523d82523d6000602084013e610d99565b606091505b5050905080610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490612774565b60405180910390fd5b50610de6611abd565b565b610e0383838360405180602001604052806000815250611486565b505050565b60105481565b600d60009054906101000a900460ff1681565b610e296119f0565b8181600a9182610e3a92919061294b565b505050565b610e476119f0565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000610e7e8261185a565b9050919050565b600a8054610e92906126b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebe906126b1565b8015610f0b5780601f10610ee057610100808354040283529160200191610f0b565b820191906000526020600020905b815481529060010190602001808311610eee57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f7a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fd36119f0565b610fdd6000611ac7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611018906126b1565b80601f0160208091040260200160405190810160405280929190818152602001828054611044906126b1565b80156110915780601f1061106657610100808354040283529160200191611091565b820191906000526020600020905b81548152906001019060200180831161107457829003601f168201915b5050505050905090565b600b80546110a8906126b1565b80601f01602080910402602001604051908101604052809291908181526020018280546110d4906126b1565b80156111215780601f106110f657610100808354040283529160200191611121565b820191906000526020600020905b81548152906001019060200180831161110457829003601f168201915b505050505081565b600e5481565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461119d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119490612a67565b60405180910390fd5b600e54816111ab9190612ab6565b34146111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e390612b6a565b60405180910390fd5b601154816111f86109e8565b6112029190612b8a565b1115611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a90612c0a565b60405180910390fd5b601054816112503361164f565b61125a9190612b8a565b111561129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290612c9c565b60405180910390fd5b600f548111156112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790612d2e565b60405180910390fd5b6112ea3382611b8d565b50565b80600760006112fa611849565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113a7611849565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ec91906120cf565b60405180910390a35050565b600c8054611405906126b1565b80601f0160208091040260200160405190810160405280929190818152602001828054611431906126b1565b801561147e5780601f106114535761010080835404028352916020019161147e565b820191906000526020600020905b81548152906001019060200180831161146157829003601f168201915b505050505081565b6114918484846109ff565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114f3576114bc84848484611bab565b6114f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611504826117ea565b61153a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600d60009054906101000a900460ff161515036115e757600c8054611562906126b1565b80601f016020809104026020016040519081016040528092919081815260200182805461158e906126b1565b80156115db5780601f106115b0576101008083540402835291602001916115db565b820191906000526020600020905b8154815290600101906020018083116115be57829003601f168201915b50505050509050611644565b6000600a80546115f6906126b1565b9050036116125760405180602001604052806000815250611641565b600a61161d83611cfb565b600b60405160200161163193929190612e0d565b6040516020818303038152906040525b90505b919050565b60115481565b600061165a82611d4b565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116fd6119f0565b601154816117096109e8565b6117139190612b8a565b1115611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b90612e8a565b60405180910390fd5b61175e3382611b8d565b50565b6117696119f0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cf90612f1c565b60405180910390fd5b6117e181611ac7565b50565b600f5481565b6000816117f5611851565b11158015611804575060005482105b8015611842575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611869611851565b116118ef576000548110156118ee5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036118ec575b600081036118e25760046000836001900393508381526020019081526020016000205490506118b8565b8092505050611921565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86119ae868684611da2565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6119f8611dab565b73ffffffffffffffffffffffffffffffffffffffff16611a16610fdf565b73ffffffffffffffffffffffffffffffffffffffff1614611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6390612f88565b60405180910390fd5b565b600260095403611ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaa90612ff4565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ba7828260405180602001604052806000815250611db3565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bd1611849565b8786866040518563ffffffff1660e01b8152600401611bf39493929190613069565b6020604051808303816000875af1925050508015611c2f57506040513d601f19601f82011682018060405250810190611c2c91906130ca565b60015b611ca8573d8060008114611c5f576040519150601f19603f3d011682016040523d82523d6000602084013e611c64565b606091505b506000815103611ca0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391506000825281835b600115611d3657600184039350600a81066030018453600a8104905080611d14575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b611dbd8383611e50565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e4b57600080549050600083820390505b611dfd6000868380600101945086611bab565b611e33576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dea578160005414611e4857600080fd5b50505b505050565b60008054905060008203611e90576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e9d6000848385611991565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f1483611f056000866000611997565b611f0e8561200b565b176119bf565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fb557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f7a565b5060008203611ff0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061200660008483856119ea565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120648161202f565b811461206f57600080fd5b50565b6000813590506120818161205b565b92915050565b60006020828403121561209d5761209c612025565b5b60006120ab84828501612072565b91505092915050565b60008115159050919050565b6120c9816120b4565b82525050565b60006020820190506120e460008301846120c0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612124578082015181840152602081019050612109565b60008484015250505050565b6000601f19601f8301169050919050565b600061214c826120ea565b61215681856120f5565b9350612166818560208601612106565b61216f81612130565b840191505092915050565b600060208201905081810360008301526121948184612141565b905092915050565b6000819050919050565b6121af8161219c565b81146121ba57600080fd5b50565b6000813590506121cc816121a6565b92915050565b6000602082840312156121e8576121e7612025565b5b60006121f6848285016121bd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061222a826121ff565b9050919050565b61223a8161221f565b82525050565b60006020820190506122556000830184612231565b92915050565b6122648161221f565b811461226f57600080fd5b50565b6000813590506122818161225b565b92915050565b6000806040838503121561229e5761229d612025565b5b60006122ac85828601612272565b92505060206122bd858286016121bd565b9150509250929050565b6122d08161219c565b82525050565b60006020820190506122eb60008301846122c7565b92915050565b60008060006060848603121561230a57612309612025565b5b600061231886828701612272565b935050602061232986828701612272565b925050604061233a868287016121bd565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261236957612368612344565b5b8235905067ffffffffffffffff81111561238657612385612349565b5b6020830191508360018202830111156123a2576123a161234e565b5b9250929050565b600080602083850312156123c0576123bf612025565b5b600083013567ffffffffffffffff8111156123de576123dd61202a565b5b6123ea85828601612353565b92509250509250929050565b60006020828403121561240c5761240b612025565b5b600061241a84828501612272565b91505092915050565b61242c816120b4565b811461243757600080fd5b50565b60008135905061244981612423565b92915050565b6000806040838503121561246657612465612025565b5b600061247485828601612272565b92505060206124858582860161243a565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124cc82612130565b810181811067ffffffffffffffff821117156124eb576124ea612494565b5b80604052505050565b60006124fe61201b565b905061250a82826124c3565b919050565b600067ffffffffffffffff82111561252a57612529612494565b5b61253382612130565b9050602081019050919050565b82818337600083830152505050565b600061256261255d8461250f565b6124f4565b90508281526020810184848401111561257e5761257d61248f565b5b612589848285612540565b509392505050565b600082601f8301126125a6576125a5612344565b5b81356125b684826020860161254f565b91505092915050565b600080600080608085870312156125d9576125d8612025565b5b60006125e787828801612272565b94505060206125f887828801612272565b9350506040612609878288016121bd565b925050606085013567ffffffffffffffff81111561262a5761262961202a565b5b61263687828801612591565b91505092959194509250565b6000806040838503121561265957612658612025565b5b600061266785828601612272565b925050602061267885828601612272565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126c957607f821691505b6020821081036126dc576126db612682565b5b50919050565b600081905092915050565b50565b60006126fd6000836126e2565b9150612708826126ed565b600082019050919050565b600061271e826126f0565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061275e6010836120f5565b915061276982612728565b602082019050919050565b6000602082019050818103600083015261278d81612751565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026128017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826127c4565b61280b86836127c4565b95508019841693508086168417925050509392505050565b6000819050919050565b600061284861284361283e8461219c565b612823565b61219c565b9050919050565b6000819050919050565b6128628361282d565b61287661286e8261284f565b8484546127d1565b825550505050565b600090565b61288b61287e565b612896818484612859565b505050565b5b818110156128ba576128af600082612883565b60018101905061289c565b5050565b601f8211156128ff576128d08161279f565b6128d9846127b4565b810160208510156128e8578190505b6128fc6128f4856127b4565b83018261289b565b50505b505050565b600082821c905092915050565b600061292260001984600802612904565b1980831691505092915050565b600061293b8383612911565b9150826002028217905092915050565b6129558383612794565b67ffffffffffffffff81111561296e5761296d612494565b5b61297882546126b1565b6129838282856128be565b6000601f8311600181146129b257600084156129a0578287013590505b6129aa858261292f565b865550612a12565b601f1984166129c08661279f565b60005b828110156129e8578489013582556001820191506020850194506020810190506129c3565b86831015612a055784890135612a01601f891682612911565b8355505b6001600288020188555050505b50505050505050565b7f596f752063616e2774206d696e742066726f6d206120636f6e74726163742e00600082015250565b6000612a51601f836120f5565b9150612a5c82612a1b565b602082019050919050565b60006020820190508181036000830152612a8081612a44565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ac18261219c565b9150612acc8361219c565b9250828202612ada8161219c565b91508282048414831517612af157612af0612a87565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e7420696e2060008201527f6f7264657220746f206d696e742e000000000000000000000000000000000000602082015250565b6000612b54602e836120f5565b9150612b5f82612af8565b604082019050919050565b60006020820190508181036000830152612b8381612b47565b9050919050565b6000612b958261219c565b9150612ba08361219c565b9250828201905080821115612bb857612bb7612a87565b5b92915050565b7f536f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b6000612bf46009836120f5565b9150612bff82612bbe565b602082019050919050565b60006020820190508181036000830152612c2381612be7565b9050919050565b7f596f75206861766520657863656564656420746865206d696e74206c696d697460008201527f207065722077616c6c65742e0000000000000000000000000000000000000000602082015250565b6000612c86602c836120f5565b9150612c9182612c2a565b604082019050919050565b60006020820190508181036000830152612cb581612c79565b9050919050565b7f596f75206861766520657863656564656420746865206d696e74206c696d697460008201527f20706572207472616e73616374696f6e2e000000000000000000000000000000602082015250565b6000612d186031836120f5565b9150612d2382612cbc565b604082019050919050565b60006020820190508181036000830152612d4781612d0b565b9050919050565b600081905092915050565b60008154612d66816126b1565b612d708186612d4e565b94506001821660008114612d8b5760018114612da057612dd3565b60ff1983168652811515820286019350612dd3565b612da98561279f565b60005b83811015612dcb57815481890152600182019150602081019050612dac565b838801955050505b50505092915050565b6000612de7826120ea565b612df18185612d4e565b9350612e01818560208601612106565b80840191505092915050565b6000612e198286612d59565b9150612e258285612ddc565b9150612e318284612d59565b9150819050949350505050565b7f43616e2774206d696e7400000000000000000000000000000000000000000000600082015250565b6000612e74600a836120f5565b9150612e7f82612e3e565b602082019050919050565b60006020820190508181036000830152612ea381612e67565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f066026836120f5565b9150612f1182612eaa565b604082019050919050565b60006020820190508181036000830152612f3581612ef9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f726020836120f5565b9150612f7d82612f3c565b602082019050919050565b60006020820190508181036000830152612fa181612f65565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612fde601f836120f5565b9150612fe982612fa8565b602082019050919050565b6000602082019050818103600083015261300d81612fd1565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061303b82613014565b613045818561301f565b9350613055818560208601612106565b61305e81612130565b840191505092915050565b600060808201905061307e6000830187612231565b61308b6020830186612231565b61309860408301856122c7565b81810360608301526130aa8184613030565b905095945050505050565b6000815190506130c48161205b565b92915050565b6000602082840312156130e0576130df612025565b5b60006130ee848285016130b5565b9150509291505056fea2646970667358221220d7f45dcf32e6115c938d709fc2f5b62d0a9033c228f67bd4fe8fdf64dd3cd81564736f6c63430008110033
Deployed Bytecode Sourcemap
73295:2269:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40175:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41077:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47568:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47001:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36828:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51207:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75375:186;;;;;;;;;;;;;:::i;:::-;;54128:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73576:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73465:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73805:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73709:84;;;;;;;;;;;;;:::i;:::-;;42470:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73355:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38012:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20954:103;;;;;;;;;;;;;:::i;:::-;;20306:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41253:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73383:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73501:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73915:550;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48126:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73422:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54919:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74658:363;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73614:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75138:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48517:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74473:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21212:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73542:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40175:639;40260:4;40599:10;40584:25;;:11;:25;;;;:102;;;;40676:10;40661:25;;:11;:25;;;;40584:102;:179;;;;40753:10;40738:25;;:11;:25;;;;40584:179;40564:199;;40175:639;;;:::o;41077:100::-;41131:13;41164:5;41157:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41077:100;:::o;47568:218::-;47644:7;47669:16;47677:7;47669;:16::i;:::-;47664:64;;47694:34;;;;;;;;;;;;;;47664:64;47748:15;:24;47764:7;47748:24;;;;;;;;;;;:30;;;;;;;;;;;;47741:37;;47568:218;;;:::o;47001:408::-;47090:13;47106:16;47114:7;47106;:16::i;:::-;47090:32;;47162:5;47139:28;;:19;:17;:19::i;:::-;:28;;;47135:175;;47187:44;47204:5;47211:19;:17;:19::i;:::-;47187:16;:44::i;:::-;47182:128;;47259:35;;;;;;;;;;;;;;47182:128;47135:175;47355:2;47322:15;:24;47338:7;47322:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;47393:7;47389:2;47373:28;;47382:5;47373:28;;;;;;;;;;;;47079:330;47001:408;;:::o;36828:323::-;36889:7;37117:15;:13;:15::i;:::-;37102:12;;37086:13;;:28;:46;37079:53;;36828:323;:::o;51207:2825::-;51349:27;51379;51398:7;51379:18;:27::i;:::-;51349:57;;51464:4;51423:45;;51439:19;51423:45;;;51419:86;;51477:28;;;;;;;;;;;;;;51419:86;51519:27;51548:23;51575:35;51602:7;51575:26;:35::i;:::-;51518:92;;;;51710:68;51735:15;51752:4;51758:19;:17;:19::i;:::-;51710:24;:68::i;:::-;51705:180;;51798:43;51815:4;51821:19;:17;:19::i;:::-;51798:16;:43::i;:::-;51793:92;;51850:35;;;;;;;;;;;;;;51793:92;51705:180;51916:1;51902:16;;:2;:16;;;51898:52;;51927:23;;;;;;;;;;;;;;51898:52;51963:43;51985:4;51991:2;51995:7;52004:1;51963:21;:43::i;:::-;52099:15;52096:160;;;52239:1;52218:19;52211:30;52096:160;52636:18;:24;52655:4;52636:24;;;;;;;;;;;;;;;;52634:26;;;;;;;;;;;;52705:18;:22;52724:2;52705:22;;;;;;;;;;;;;;;;52703:24;;;;;;;;;;;53027:146;53064:2;53113:45;53128:4;53134:2;53138:19;53113:14;:45::i;:::-;33227:8;53085:73;53027:18;:146::i;:::-;52998:17;:26;53016:7;52998:26;;;;;;;;;;;:175;;;;53344:1;33227:8;53293:19;:47;:52;53289:627;;53366:19;53398:1;53388:7;:11;53366:33;;53555:1;53521:17;:30;53539:11;53521:30;;;;;;;;;;;;:35;53517:384;;53659:13;;53644:11;:28;53640:242;;53839:19;53806:17;:30;53824:11;53806:30;;;;;;;;;;;:52;;;;53640:242;53517:384;53347:569;53289:627;53963:7;53959:2;53944:27;;53953:4;53944:27;;;;;;;;;;;;53982:42;54003:4;54009:2;54013:7;54022:1;53982:20;:42::i;:::-;51338:2694;;;51207:2825;;;:::o;75375:186::-;20192:13;:11;:13::i;:::-;17577:21:::1;:19;:21::i;:::-;75439:12:::2;75457:10;:15;;75480:21;75457:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75438:68;;;75525:7;75517:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;75427:134;17621:20:::1;:18;:20::i;:::-;75375:186::o:0;54128:193::-;54274:39;54291:4;54297:2;54301:7;54274:39;;;;;;;;;;;;:16;:39::i;:::-;54128:193;;;:::o;73576:31::-;;;;:::o;73465:27::-;;;;;;;;;;;;;:::o;73805:102::-;20192:13;:11;:13::i;:::-;73891:8:::1;;73881:7;:18;;;;;;;:::i;:::-;;73805:102:::0;;:::o;73709:84::-;20192:13;:11;:13::i;:::-;73777:8:::1;;;;;;;;;;;73776:9;73765:8;;:20;;;;;;;;;;;;;;;;;;73709:84::o:0;42470:152::-;42542:7;42585:27;42604:7;42585:18;:27::i;:::-;42562:52;;42470:152;;;:::o;73355:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38012:233::-;38084:7;38125:1;38108:19;;:5;:19;;;38104:60;;38136:28;;;;;;;;;;;;;;38104:60;32171:13;38182:18;:25;38201:5;38182:25;;;;;;;;;;;;;;;;:55;38175:62;;38012:233;;;:::o;20954:103::-;20192:13;:11;:13::i;:::-;21019:30:::1;21046:1;21019:18;:30::i;:::-;20954:103::o:0;20306:87::-;20352:7;20379:6;;;;;;;;;;;20372:13;;20306:87;:::o;41253:104::-;41309:13;41342:7;41335:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41253:104;:::o;73383:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;73501:34::-;;;;:::o;73915:550::-;73997:9;73983:23;;:10;:23;;;73975:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;74083:5;;74074:6;:14;;;;:::i;:::-;74061:9;:27;74053:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;74184:9;;74174:6;74158:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;74150:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;74263:12;;74253:6;74226:24;74239:10;74226:12;:24::i;:::-;:33;;;;:::i;:::-;:49;;74218:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;74353:8;;74343:6;:18;;74335:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;74428:29;74438:10;74450:6;74428:9;:29::i;:::-;73915:550;:::o;48126:234::-;48273:8;48221:18;:39;48240:19;:17;:19::i;:::-;48221:39;;;;;;;;;;;;;;;:49;48261:8;48221:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;48333:8;48297:55;;48312:19;:17;:19::i;:::-;48297:55;;;48343:8;48297:55;;;;;;:::i;:::-;;;;;;;;48126:234;;:::o;73422:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54919:407::-;55094:31;55107:4;55113:2;55117:7;55094:12;:31::i;:::-;55158:1;55140:2;:14;;;:19;55136:183;;55179:56;55210:4;55216:2;55220:7;55229:5;55179:30;:56::i;:::-;55174:145;;55263:40;;;;;;;;;;;;;;55174:145;55136:183;54919:407;;;;:::o;74658:363::-;74731:13;74762:16;74770:7;74762;:16::i;:::-;74757:59;;74787:29;;;;;;;;;;;;;;74757:59;74843:5;74831:17;;:8;;;;;;;;;;;:17;;;74827:70;;74868:17;74861:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74827:70;74941:1;74922:7;74916:21;;;;;:::i;:::-;;;:26;:97;;;;;;;;;;;;;;;;;74969:7;74978:18;74988:7;74978:9;:18::i;:::-;74998:8;74952:55;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74916:97;74909:104;;74658:363;;;;:::o;73614:31::-;;;;:::o;75138:113::-;75196:7;75223:20;75237:5;75223:13;:20::i;:::-;75216:27;;75138:113;;;:::o;48517:164::-;48614:4;48638:18;:25;48657:5;48638:25;;;;;;;;;;;;;;;:35;48664:8;48638:35;;;;;;;;;;;;;;;;;;;;;;;;;48631:42;;48517:164;;;;:::o;74473:173::-;20192:13;:11;:13::i;:::-;74572:9:::1;;74562:6;74546:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;74538:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;74609:29;74619:10;74631:6;74609:9;:29::i;:::-;74473:173:::0;:::o;21212:201::-;20192:13;:11;:13::i;:::-;21321:1:::1;21301:22;;:8;:22;;::::0;21293:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21377:28;21396:8;21377:18;:28::i;:::-;21212:201:::0;:::o;73542:27::-;;;;:::o;48939:282::-;49004:4;49060:7;49041:15;:13;:15::i;:::-;:26;;:66;;;;;49094:13;;49084:7;:23;49041:66;:153;;;;;49193:1;32947:8;49145:17;:26;49163:7;49145:26;;;;;;;;;;;;:44;:49;49041:153;49021:173;;48939:282;;;:::o;71247:105::-;71307:7;71334:10;71327:17;;71247:105;:::o;75029:101::-;75094:7;75121:1;75114:8;;75029:101;:::o;43625:1275::-;43692:7;43712:12;43727:7;43712:22;;43795:4;43776:15;:13;:15::i;:::-;:23;43772:1061;;43829:13;;43822:4;:20;43818:1015;;;43867:14;43884:17;:23;43902:4;43884:23;;;;;;;;;;;;43867:40;;44001:1;32947:8;43973:6;:24;:29;43969:845;;44638:113;44655:1;44645:6;:11;44638:113;;44698:17;:25;44716:6;;;;;;;44698:25;;;;;;;;;;;;44689:34;;44638:113;;;44784:6;44777:13;;;;;;43969:845;43844:989;43818:1015;43772:1061;44861:31;;;;;;;;;;;;;;43625:1275;;;;:::o;50102:485::-;50204:27;50233:23;50274:38;50315:15;:24;50331:7;50315:24;;;;;;;;;;;50274:65;;50492:18;50469:41;;50549:19;50543:26;50524:45;;50454:126;50102:485;;;:::o;49330:659::-;49479:11;49644:16;49637:5;49633:28;49624:37;;49804:16;49793:9;49789:32;49776:45;;49954:15;49943:9;49940:30;49932:5;49921:9;49918:20;49915:56;49905:66;;49330:659;;;;;:::o;55988:159::-;;;;;:::o;70556:311::-;70691:7;70711:16;33351:3;70737:19;:41;;70711:68;;33351:3;70805:31;70816:4;70822:2;70826:9;70805:10;:31::i;:::-;70797:40;;:62;;70790:69;;;70556:311;;;;;:::o;45448:450::-;45528:14;45696:16;45689:5;45685:28;45676:37;;45873:5;45859:11;45834:23;45830:41;45827:52;45820:5;45817:63;45807:73;;45448:450;;;;:::o;56812:158::-;;;;;:::o;20471:132::-;20546:12;:10;:12::i;:::-;20535:23;;:7;:5;:7::i;:::-;:23;;;20527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20471:132::o;17657:293::-;17059:1;17791:7;;:19;17783:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;17059:1;17924:7;:18;;;;17657:293::o;17958:213::-;17015:1;18141:7;:22;;;;17958:213::o;21573:191::-;21647:16;21666:6;;;;;;;;;;;21647:25;;21692:8;21683:6;;:17;;;;;;;;;;;;;;;;;;21747:8;21716:40;;21737:8;21716:40;;;;;;;;;;;;21636:128;21573:191;:::o;65079:112::-;65156:27;65166:2;65170:8;65156:27;;;;;;;;;;;;:9;:27::i;:::-;65079:112;;:::o;57410:716::-;57573:4;57619:2;57594:45;;;57640:19;:17;:19::i;:::-;57661:4;57667:7;57676:5;57594:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57590:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57894:1;57877:6;:13;:18;57873:235;;57923:40;;;;;;;;;;;;;;57873:235;58066:6;58060:13;58051:6;58047:2;58043:15;58036:38;57590:529;57763:54;;;57753:64;;;:6;:64;;;;57746:71;;;57410:716;;;;;;:::o;71454:1745::-;71519:17;71953:4;71946;71940:11;71936:22;72045:1;72039:4;72032:15;72120:4;72117:1;72113:12;72106:19;;72202:1;72197:3;72190:14;72306:3;72545:5;72527:428;72553:1;72527:428;;;72593:1;72588:3;72584:11;72577:18;;72764:2;72758:4;72754:13;72750:2;72746:22;72741:3;72733:36;72858:2;72852:4;72848:13;72840:21;;72925:4;72527:428;72915:25;72527:428;72531:21;72994:3;72989;72985:13;73109:4;73104:3;73100:14;73093:21;;73174:6;73169:3;73162:19;71558:1634;;;71454:1745;;;:::o;38327:178::-;38388:7;32171:13;32309:2;38416:18;:25;38435:5;38416:25;;;;;;;;;;;;;;;;:50;;38415:82;38408:89;;38327:178;;;:::o;70257:147::-;70394:6;70257:147;;;;;:::o;18857:98::-;18910:7;18937:10;18930:17;;18857:98;:::o;64306:689::-;64437:19;64443:2;64447:8;64437:5;:19::i;:::-;64516:1;64498:2;:14;;;:19;64494:483;;64538:11;64552:13;;64538:27;;64584:13;64606:8;64600:3;:14;64584:30;;64633:233;64664:62;64703:1;64707:2;64711:7;;;;;;64720:5;64664:30;:62::i;:::-;64659:167;;64762:40;;;;;;;;;;;;;;64659:167;64861:3;64853:5;:11;64633:233;;64948:3;64931:13;;:20;64927:34;;64953:8;;;64927:34;64519:458;;64494:483;64306:689;;;:::o;58588:2966::-;58661:20;58684:13;;58661:36;;58724:1;58712:8;:13;58708:44;;58734:18;;;;;;;;;;;;;;58708:44;58765:61;58795:1;58799:2;58803:12;58817:8;58765:21;:61::i;:::-;59309:1;32309:2;59279:1;:26;;59278:32;59266:8;:45;59240:18;:22;59259:2;59240:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;59588:139;59625:2;59679:33;59702:1;59706:2;59710:1;59679:14;:33::i;:::-;59646:30;59667:8;59646:20;:30::i;:::-;:66;59588:18;:139::i;:::-;59554:17;:31;59572:12;59554:31;;;;;;;;;;;:173;;;;59744:16;59775:11;59804:8;59789:12;:23;59775:37;;60325:16;60321:2;60317:25;60305:37;;60697:12;60657:8;60616:1;60554:25;60495:1;60434;60407:335;61068:1;61054:12;61050:20;61008:346;61109:3;61100:7;61097:16;61008:346;;61327:7;61317:8;61314:1;61287:25;61284:1;61281;61276:59;61162:1;61153:7;61149:15;61138:26;;61008:346;;;61012:77;61399:1;61387:8;:13;61383:45;;61409:19;;;;;;;;;;;;;;61383:45;61461:3;61445:13;:19;;;;59014:2462;;61486:60;61515:1;61519:2;61523:12;61537:8;61486:20;:60::i;:::-;58650:2904;58588:2966;;:::o;46000:324::-;46070:14;46303:1;46293:8;46290:15;46264:24;46260:46;46250:56;;46000:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:117::-;8523:1;8520;8513:12;8537:180;8585:77;8582:1;8575:88;8682:4;8679:1;8672:15;8706:4;8703:1;8696:15;8723:281;8806:27;8828:4;8806:27;:::i;:::-;8798:6;8794:40;8936:6;8924:10;8921:22;8900:18;8888:10;8885:34;8882:62;8879:88;;;8947:18;;:::i;:::-;8879:88;8987:10;8983:2;8976:22;8766:238;8723:281;;:::o;9010:129::-;9044:6;9071:20;;:::i;:::-;9061:30;;9100:33;9128:4;9120:6;9100:33;:::i;:::-;9010:129;;;:::o;9145:307::-;9206:4;9296:18;9288:6;9285:30;9282:56;;;9318:18;;:::i;:::-;9282:56;9356:29;9378:6;9356:29;:::i;:::-;9348:37;;9440:4;9434;9430:15;9422:23;;9145:307;;;:::o;9458:146::-;9555:6;9550:3;9545;9532:30;9596:1;9587:6;9582:3;9578:16;9571:27;9458:146;;;:::o;9610:423::-;9687:5;9712:65;9728:48;9769:6;9728:48;:::i;:::-;9712:65;:::i;:::-;9703:74;;9800:6;9793:5;9786:21;9838:4;9831:5;9827:16;9876:3;9867:6;9862:3;9858:16;9855:25;9852:112;;;9883:79;;:::i;:::-;9852:112;9973:54;10020:6;10015:3;10010;9973:54;:::i;:::-;9693:340;9610:423;;;;;:::o;10052:338::-;10107:5;10156:3;10149:4;10141:6;10137:17;10133:27;10123:122;;10164:79;;:::i;:::-;10123:122;10281:6;10268:20;10306:78;10380:3;10372:6;10365:4;10357:6;10353:17;10306:78;:::i;:::-;10297:87;;10113:277;10052:338;;;;:::o;10396:943::-;10491:6;10499;10507;10515;10564:3;10552:9;10543:7;10539:23;10535:33;10532:120;;;10571:79;;:::i;:::-;10532:120;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;11102:2;11091:9;11087:18;11074:32;11133:18;11125:6;11122:30;11119:117;;;11155:79;;:::i;:::-;11119:117;11260:62;11314:7;11305:6;11294:9;11290:22;11260:62;:::i;:::-;11250:72;;11045:287;10396:943;;;;;;;:::o;11345:474::-;11413:6;11421;11470:2;11458:9;11449:7;11445:23;11441:32;11438:119;;;11476:79;;:::i;:::-;11438:119;11596:1;11621:53;11666:7;11657:6;11646:9;11642:22;11621:53;:::i;:::-;11611:63;;11567:117;11723:2;11749:53;11794:7;11785:6;11774:9;11770:22;11749:53;:::i;:::-;11739:63;;11694:118;11345:474;;;;;:::o;11825:180::-;11873:77;11870:1;11863:88;11970:4;11967:1;11960:15;11994:4;11991:1;11984:15;12011:320;12055:6;12092:1;12086:4;12082:12;12072:22;;12139:1;12133:4;12129:12;12160:18;12150:81;;12216:4;12208:6;12204:17;12194:27;;12150:81;12278:2;12270:6;12267:14;12247:18;12244:38;12241:84;;12297:18;;:::i;:::-;12241:84;12062:269;12011:320;;;:::o;12337:147::-;12438:11;12475:3;12460:18;;12337:147;;;;:::o;12490:114::-;;:::o;12610:398::-;12769:3;12790:83;12871:1;12866:3;12790:83;:::i;:::-;12783:90;;12882:93;12971:3;12882:93;:::i;:::-;13000:1;12995:3;12991:11;12984:18;;12610:398;;;:::o;13014:379::-;13198:3;13220:147;13363:3;13220:147;:::i;:::-;13213:154;;13384:3;13377:10;;13014:379;;;:::o;13399:166::-;13539:18;13535:1;13527:6;13523:14;13516:42;13399:166;:::o;13571:366::-;13713:3;13734:67;13798:2;13793:3;13734:67;:::i;:::-;13727:74;;13810:93;13899:3;13810:93;:::i;:::-;13928:2;13923:3;13919:12;13912:19;;13571:366;;;:::o;13943:419::-;14109:4;14147:2;14136:9;14132:18;14124:26;;14196:9;14190:4;14186:20;14182:1;14171:9;14167:17;14160:47;14224:131;14350:4;14224:131;:::i;:::-;14216:139;;13943:419;;;:::o;14368:97::-;14427:6;14455:3;14445:13;;14368:97;;;;:::o;14471:141::-;14520:4;14543:3;14535:11;;14566:3;14563:1;14556:14;14600:4;14597:1;14587:18;14579:26;;14471:141;;;:::o;14618:93::-;14655:6;14702:2;14697;14690:5;14686:14;14682:23;14672:33;;14618:93;;;:::o;14717:107::-;14761:8;14811:5;14805:4;14801:16;14780:37;;14717:107;;;;:::o;14830:393::-;14899:6;14949:1;14937:10;14933:18;14972:97;15002:66;14991:9;14972:97;:::i;:::-;15090:39;15120:8;15109:9;15090:39;:::i;:::-;15078:51;;15162:4;15158:9;15151:5;15147:21;15138:30;;15211:4;15201:8;15197:19;15190:5;15187:30;15177:40;;14906:317;;14830:393;;;;;:::o;15229:60::-;15257:3;15278:5;15271:12;;15229:60;;;:::o;15295:142::-;15345:9;15378:53;15396:34;15405:24;15423:5;15405:24;:::i;:::-;15396:34;:::i;:::-;15378:53;:::i;:::-;15365:66;;15295:142;;;:::o;15443:75::-;15486:3;15507:5;15500:12;;15443:75;;;:::o;15524:269::-;15634:39;15665:7;15634:39;:::i;:::-;15695:91;15744:41;15768:16;15744:41;:::i;:::-;15736:6;15729:4;15723:11;15695:91;:::i;:::-;15689:4;15682:105;15600:193;15524:269;;;:::o;15799:73::-;15844:3;15799:73;:::o;15878:189::-;15955:32;;:::i;:::-;15996:65;16054:6;16046;16040:4;15996:65;:::i;:::-;15931:136;15878:189;;:::o;16073:186::-;16133:120;16150:3;16143:5;16140:14;16133:120;;;16204:39;16241:1;16234:5;16204:39;:::i;:::-;16177:1;16170:5;16166:13;16157:22;;16133:120;;;16073:186;;:::o;16265:543::-;16366:2;16361:3;16358:11;16355:446;;;16400:38;16432:5;16400:38;:::i;:::-;16484:29;16502:10;16484:29;:::i;:::-;16474:8;16470:44;16667:2;16655:10;16652:18;16649:49;;;16688:8;16673:23;;16649:49;16711:80;16767:22;16785:3;16767:22;:::i;:::-;16757:8;16753:37;16740:11;16711:80;:::i;:::-;16370:431;;16355:446;16265:543;;;:::o;16814:117::-;16868:8;16918:5;16912:4;16908:16;16887:37;;16814:117;;;;:::o;16937:169::-;16981:6;17014:51;17062:1;17058:6;17050:5;17047:1;17043:13;17014:51;:::i;:::-;17010:56;17095:4;17089;17085:15;17075:25;;16988:118;16937:169;;;;:::o;17111:295::-;17187:4;17333:29;17358:3;17352:4;17333:29;:::i;:::-;17325:37;;17395:3;17392:1;17388:11;17382:4;17379:21;17371:29;;17111:295;;;;:::o;17411:1403::-;17535:44;17575:3;17570;17535:44;:::i;:::-;17644:18;17636:6;17633:30;17630:56;;;17666:18;;:::i;:::-;17630:56;17710:38;17742:4;17736:11;17710:38;:::i;:::-;17795:67;17855:6;17847;17841:4;17795:67;:::i;:::-;17889:1;17918:2;17910:6;17907:14;17935:1;17930:632;;;;18606:1;18623:6;18620:84;;;18679:9;18674:3;18670:19;18657:33;18648:42;;18620:84;18730:67;18790:6;18783:5;18730:67;:::i;:::-;18724:4;18717:81;18579:229;17900:908;;17930:632;17982:4;17978:9;17970:6;17966:22;18016:37;18048:4;18016:37;:::i;:::-;18075:1;18089:215;18103:7;18100:1;18097:14;18089:215;;;18189:9;18184:3;18180:19;18167:33;18159:6;18152:49;18240:1;18232:6;18228:14;18218:24;;18287:2;18276:9;18272:18;18259:31;;18126:4;18123:1;18119:12;18114:17;;18089:215;;;18332:6;18323:7;18320:19;18317:186;;;18397:9;18392:3;18388:19;18375:33;18440:48;18482:4;18474:6;18470:17;18459:9;18440:48;:::i;:::-;18432:6;18425:64;18340:163;18317:186;18549:1;18545;18537:6;18533:14;18529:22;18523:4;18516:36;17937:625;;;17900:908;;17510:1304;;;17411:1403;;;:::o;18820:181::-;18960:33;18956:1;18948:6;18944:14;18937:57;18820:181;:::o;19007:366::-;19149:3;19170:67;19234:2;19229:3;19170:67;:::i;:::-;19163:74;;19246:93;19335:3;19246:93;:::i;:::-;19364:2;19359:3;19355:12;19348:19;;19007:366;;;:::o;19379:419::-;19545:4;19583:2;19572:9;19568:18;19560:26;;19632:9;19626:4;19622:20;19618:1;19607:9;19603:17;19596:47;19660:131;19786:4;19660:131;:::i;:::-;19652:139;;19379:419;;;:::o;19804:180::-;19852:77;19849:1;19842:88;19949:4;19946:1;19939:15;19973:4;19970:1;19963:15;19990:410;20030:7;20053:20;20071:1;20053:20;:::i;:::-;20048:25;;20087:20;20105:1;20087:20;:::i;:::-;20082:25;;20142:1;20139;20135:9;20164:30;20182:11;20164:30;:::i;:::-;20153:41;;20343:1;20334:7;20330:15;20327:1;20324:22;20304:1;20297:9;20277:83;20254:139;;20373:18;;:::i;:::-;20254:139;20038:362;19990:410;;;;:::o;20406:233::-;20546:34;20542:1;20534:6;20530:14;20523:58;20615:16;20610:2;20602:6;20598:15;20591:41;20406:233;:::o;20645:366::-;20787:3;20808:67;20872:2;20867:3;20808:67;:::i;:::-;20801:74;;20884:93;20973:3;20884:93;:::i;:::-;21002:2;20997:3;20993:12;20986:19;;20645:366;;;:::o;21017:419::-;21183:4;21221:2;21210:9;21206:18;21198:26;;21270:9;21264:4;21260:20;21256:1;21245:9;21241:17;21234:47;21298:131;21424:4;21298:131;:::i;:::-;21290:139;;21017:419;;;:::o;21442:191::-;21482:3;21501:20;21519:1;21501:20;:::i;:::-;21496:25;;21535:20;21553:1;21535:20;:::i;:::-;21530:25;;21578:1;21575;21571:9;21564:16;;21599:3;21596:1;21593:10;21590:36;;;21606:18;;:::i;:::-;21590:36;21442:191;;;;:::o;21639:159::-;21779:11;21775:1;21767:6;21763:14;21756:35;21639:159;:::o;21804:365::-;21946:3;21967:66;22031:1;22026:3;21967:66;:::i;:::-;21960:73;;22042:93;22131:3;22042:93;:::i;:::-;22160:2;22155:3;22151:12;22144:19;;21804:365;;;:::o;22175:419::-;22341:4;22379:2;22368:9;22364:18;22356:26;;22428:9;22422:4;22418:20;22414:1;22403:9;22399:17;22392:47;22456:131;22582:4;22456:131;:::i;:::-;22448:139;;22175:419;;;:::o;22600:231::-;22740:34;22736:1;22728:6;22724:14;22717:58;22809:14;22804:2;22796:6;22792:15;22785:39;22600:231;:::o;22837:366::-;22979:3;23000:67;23064:2;23059:3;23000:67;:::i;:::-;22993:74;;23076:93;23165:3;23076:93;:::i;:::-;23194:2;23189:3;23185:12;23178:19;;22837:366;;;:::o;23209:419::-;23375:4;23413:2;23402:9;23398:18;23390:26;;23462:9;23456:4;23452:20;23448:1;23437:9;23433:17;23426:47;23490:131;23616:4;23490:131;:::i;:::-;23482:139;;23209:419;;;:::o;23634:236::-;23774:34;23770:1;23762:6;23758:14;23751:58;23843:19;23838:2;23830:6;23826:15;23819:44;23634:236;:::o;23876:366::-;24018:3;24039:67;24103:2;24098:3;24039:67;:::i;:::-;24032:74;;24115:93;24204:3;24115:93;:::i;:::-;24233:2;24228:3;24224:12;24217:19;;23876:366;;;:::o;24248:419::-;24414:4;24452:2;24441:9;24437:18;24429:26;;24501:9;24495:4;24491:20;24487:1;24476:9;24472:17;24465:47;24529:131;24655:4;24529:131;:::i;:::-;24521:139;;24248:419;;;:::o;24673:148::-;24775:11;24812:3;24797:18;;24673:148;;;;:::o;24851:874::-;24954:3;24991:5;24985:12;25020:36;25046:9;25020:36;:::i;:::-;25072:89;25154:6;25149:3;25072:89;:::i;:::-;25065:96;;25192:1;25181:9;25177:17;25208:1;25203:166;;;;25383:1;25378:341;;;;25170:549;;25203:166;25287:4;25283:9;25272;25268:25;25263:3;25256:38;25349:6;25342:14;25335:22;25327:6;25323:35;25318:3;25314:45;25307:52;;25203:166;;25378:341;25445:38;25477:5;25445:38;:::i;:::-;25505:1;25519:154;25533:6;25530:1;25527:13;25519:154;;;25607:7;25601:14;25597:1;25592:3;25588:11;25581:35;25657:1;25648:7;25644:15;25633:26;;25555:4;25552:1;25548:12;25543:17;;25519:154;;;25702:6;25697:3;25693:16;25686:23;;25385:334;;25170:549;;24958:767;;24851:874;;;;:::o;25731:390::-;25837:3;25865:39;25898:5;25865:39;:::i;:::-;25920:89;26002:6;25997:3;25920:89;:::i;:::-;25913:96;;26018:65;26076:6;26071:3;26064:4;26057:5;26053:16;26018:65;:::i;:::-;26108:6;26103:3;26099:16;26092:23;;25841:280;25731:390;;;;:::o;26127:583::-;26349:3;26371:92;26459:3;26450:6;26371:92;:::i;:::-;26364:99;;26480:95;26571:3;26562:6;26480:95;:::i;:::-;26473:102;;26592:92;26680:3;26671:6;26592:92;:::i;:::-;26585:99;;26701:3;26694:10;;26127:583;;;;;;:::o;26716:160::-;26856:12;26852:1;26844:6;26840:14;26833:36;26716:160;:::o;26882:366::-;27024:3;27045:67;27109:2;27104:3;27045:67;:::i;:::-;27038:74;;27121:93;27210:3;27121:93;:::i;:::-;27239:2;27234:3;27230:12;27223:19;;26882:366;;;:::o;27254:419::-;27420:4;27458:2;27447:9;27443:18;27435:26;;27507:9;27501:4;27497:20;27493:1;27482:9;27478:17;27471:47;27535:131;27661:4;27535:131;:::i;:::-;27527:139;;27254:419;;;:::o;27679:225::-;27819:34;27815:1;27807:6;27803:14;27796:58;27888:8;27883:2;27875:6;27871:15;27864:33;27679:225;:::o;27910:366::-;28052:3;28073:67;28137:2;28132:3;28073:67;:::i;:::-;28066:74;;28149:93;28238:3;28149:93;:::i;:::-;28267:2;28262:3;28258:12;28251:19;;27910:366;;;:::o;28282:419::-;28448:4;28486:2;28475:9;28471:18;28463:26;;28535:9;28529:4;28525:20;28521:1;28510:9;28506:17;28499:47;28563:131;28689:4;28563:131;:::i;:::-;28555:139;;28282:419;;;:::o;28707:182::-;28847:34;28843:1;28835:6;28831:14;28824:58;28707:182;:::o;28895:366::-;29037:3;29058:67;29122:2;29117:3;29058:67;:::i;:::-;29051:74;;29134:93;29223:3;29134:93;:::i;:::-;29252:2;29247:3;29243:12;29236:19;;28895:366;;;:::o;29267:419::-;29433:4;29471:2;29460:9;29456:18;29448:26;;29520:9;29514:4;29510:20;29506:1;29495:9;29491:17;29484:47;29548:131;29674:4;29548:131;:::i;:::-;29540:139;;29267:419;;;:::o;29692:181::-;29832:33;29828:1;29820:6;29816:14;29809:57;29692:181;:::o;29879:366::-;30021:3;30042:67;30106:2;30101:3;30042:67;:::i;:::-;30035:74;;30118:93;30207:3;30118:93;:::i;:::-;30236:2;30231:3;30227:12;30220:19;;29879:366;;;:::o;30251:419::-;30417:4;30455:2;30444:9;30440:18;30432:26;;30504:9;30498:4;30494:20;30490:1;30479:9;30475:17;30468:47;30532:131;30658:4;30532:131;:::i;:::-;30524:139;;30251:419;;;:::o;30676:98::-;30727:6;30761:5;30755:12;30745:22;;30676:98;;;:::o;30780:168::-;30863:11;30897:6;30892:3;30885:19;30937:4;30932:3;30928:14;30913:29;;30780:168;;;;:::o;30954:373::-;31040:3;31068:38;31100:5;31068:38;:::i;:::-;31122:70;31185:6;31180:3;31122:70;:::i;:::-;31115:77;;31201:65;31259:6;31254:3;31247:4;31240:5;31236:16;31201:65;:::i;:::-;31291:29;31313:6;31291:29;:::i;:::-;31286:3;31282:39;31275:46;;31044:283;30954:373;;;;:::o;31333:640::-;31528:4;31566:3;31555:9;31551:19;31543:27;;31580:71;31648:1;31637:9;31633:17;31624:6;31580:71;:::i;:::-;31661:72;31729:2;31718:9;31714:18;31705:6;31661:72;:::i;:::-;31743;31811:2;31800:9;31796:18;31787:6;31743:72;:::i;:::-;31862:9;31856:4;31852:20;31847:2;31836:9;31832:18;31825:48;31890:76;31961:4;31952:6;31890:76;:::i;:::-;31882:84;;31333:640;;;;;;;:::o;31979:141::-;32035:5;32066:6;32060:13;32051:22;;32082:32;32108:5;32082:32;:::i;:::-;31979:141;;;;:::o;32126:349::-;32195:6;32244:2;32232:9;32223:7;32219:23;32215:32;32212:119;;;32250:79;;:::i;:::-;32212:119;32370:1;32395:63;32450:7;32441:6;32430:9;32426:22;32395:63;:::i;:::-;32385:73;;32341:127;32126:349;;;;:::o
Swarm Source
ipfs://d7f45dcf32e6115c938d709fc2f5b62d0a9033c228f67bd4fe8fdf64dd3cd815
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.