Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
3,333 NDR
Holders
560
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
6 NDRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
caonimabiu
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-05 */ 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/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // SPDX-License-Identifier: MIT //A SOVRN-OPEN Drop pragma solidity >=0.8.9 <0.9.0; contract caonimabiu is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; bool public MintStart = false; bool public Metadata; uint256 public maxPerWallet = 6; uint256 public maxFree = 1; uint256 public maxSupply = 3333; uint256 public publicPrice = 0.0033 ether; string public _baseURL = "ipfs://bafybeictt4oqrt5nf4iyaum2slw26ldcl33agfvt3etna4qihqxndadene/"; string public prerevealURL = ""; mapping(address => uint256) private _walletMintedCount; constructor() ERC721A("NakaDocks", "NDR") {} function mintedCount(address owner) external view returns (uint256) { return _walletMintedCount[owner]; } function _baseURI() internal view override returns (string memory) { return _baseURL; } function _startTokenId() internal pure override returns (uint256) { return 1; } function contractURI() public pure returns (string memory) { return ""; } function finalizeMetadata() external onlyOwner { Metadata = true; } function reveal(string memory url) external onlyOwner { require(!Metadata, "Metadata is finalized"); _baseURL = url; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function tokenURI(uint256 tokenId) public view override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return bytes(_baseURI()).length > 0 ? string( abi.encodePacked(_baseURI(), tokenId.toString()) ) : prerevealURL; } function setPublicPrice(uint256 _price) external onlyOwner { publicPrice = _price; } function MintStartStatus() external onlyOwner { MintStart = !MintStart; } function setMaxSupply(uint256 newMaxSupply) external onlyOwner { maxSupply = newMaxSupply; } function setFree(uint256 newFree) external onlyOwner { maxFree = newFree; } function mint(uint256 count) external payable { uint256 minted = _walletMintedCount[msg.sender]; require(count > 0, "Must use at least one mint"); require(minted < maxPerWallet, "Max Per wallet"); uint256 payForCount = count; if (minted < maxFree) {if (maxFree - minted > count) {payForCount = 0;} else {payForCount = count - (maxFree - minted);}} require(MintStart, "Mint has not started"); require(_totalMinted() + count <= maxSupply, "Sold out"); require(msg.value >= payForCount * publicPrice,"Ether value sent is not sufficient"); _walletMintedCount[msg.sender] += count; _safeMint(msg.sender, count); } function devMint(address to, uint256 count) external onlyOwner { require(_totalMinted() + count <= maxSupply, "Sold out"); _safeMint(to, count); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Metadata","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintStartStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_baseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalizeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","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":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prerevealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFree","type":"uint256"}],"name":"setFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicPrice","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":[{"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
60806040526000600a60006101000a81548160ff0219169083151502179055506006600b556001600c55610d05600d55660bb9551fc24000600e556040518060800160405280604381526020016200395960439139600f9081620000649190620004bb565b506040518060200160405280600081525060109081620000859190620004bb565b503480156200009357600080fd5b506040518060400160405280600981526020017f4e616b61446f636b7300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e445200000000000000000000000000000000000000000000000000000000008152508160029081620001119190620004bb565b508060039081620001239190620004bb565b50620001346200016a60201b60201c565b60008190555050506200015c620001506200017360201b60201c565b6200017b60201b60201c565b6001600981905550620005a2565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002c357607f821691505b602082108103620002d957620002d86200027b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003437fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000304565b6200034f868362000304565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200039c62000396620003908462000367565b62000371565b62000367565b9050919050565b6000819050919050565b620003b8836200037b565b620003d0620003c782620003a3565b84845462000311565b825550505050565b600090565b620003e7620003d8565b620003f4818484620003ad565b505050565b5b818110156200041c5762000410600082620003dd565b600181019050620003fa565b5050565b601f8211156200046b576200043581620002df565b6200044084620002f4565b8101602085101562000450578190505b620004686200045f85620002f4565b830182620003f9565b50505b505050565b600082821c905092915050565b6000620004906000198460080262000470565b1980831691505092915050565b6000620004ab83836200047d565b9150826002028217905092915050565b620004c68262000241565b67ffffffffffffffff811115620004e257620004e16200024c565b5b620004ee8254620002aa565b620004fb82828562000420565b600060209050601f8311600181146200053357600084156200051e578287015190505b6200052a85826200049d565b8655506200059a565b601f1984166200054386620002df565b60005b828110156200056d5784890151825560018201915060208501945060208101905062000546565b868310156200058d578489015162000589601f8916826200047d565b8355505b6001600288020188555050505b505050505050565b6133a780620005b26000396000f3fe60806040526004361061020f5760003560e01c80638da5cb5b11610118578063d5abeb01116100a0578063e985e9c51161006f578063e985e9c514610710578063f2fde38b1461074d578063f4a560a514610776578063f9e0edae1461078d578063fddcb5ea146107b85761020f565b8063d5abeb0114610664578063d82104821461068f578063e3bcfc64146106ba578063e8a3d485146106e55761020f565b8063a5eb6ff2116100e7578063a5eb6ff21461058c578063a945bf80146105b7578063b88d4fde146105e2578063c6275255146105fe578063c87b56dd146106275761020f565b80638da5cb5b146104f157806395d89b411461051c578063a0712d6814610547578063a22cb465146105635761020f565b8063485a68a31161019b5780636f8b44b01161016a5780636f8b44b0146104345780637040d73f1461045d57806370a0823114610486578063715018a6146104c357806374b2eb85146104da5761020f565b8063485a68a31461037a5780634c261247146103a5578063627804af146103ce5780636352211e146103f75761020f565b806318160ddd116101e257806318160ddd146102d557806323b872dd146103005780633ccfd60b1461031c57806342842e0e14610333578063453c23101461034f5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906123d2565b6107f5565b604051610248919061241a565b60405180910390f35b34801561025d57600080fd5b50610266610887565b60405161027391906124c5565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061251d565b610919565b6040516102b0919061258b565b60405180910390f35b6102d360048036038101906102ce91906125d2565b610998565b005b3480156102e157600080fd5b506102ea610adc565b6040516102f79190612621565b60405180910390f35b61031a6004803603810190610315919061263c565b610af3565b005b34801561032857600080fd5b50610331610e15565b005b61034d6004803603810190610348919061263c565b610e6c565b005b34801561035b57600080fd5b50610364610e8c565b6040516103719190612621565b60405180910390f35b34801561038657600080fd5b5061038f610e92565b60405161039c9190612621565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c791906127c4565b610e98565b005b3480156103da57600080fd5b506103f560048036038101906103f091906125d2565b610f03565b005b34801561040357600080fd5b5061041e6004803603810190610419919061251d565b610f70565b60405161042b919061258b565b60405180910390f35b34801561044057600080fd5b5061045b6004803603810190610456919061251d565b610f82565b005b34801561046957600080fd5b50610484600480360381019061047f919061251d565b610f94565b005b34801561049257600080fd5b506104ad60048036038101906104a8919061280d565b610fa6565b6040516104ba9190612621565b60405180910390f35b3480156104cf57600080fd5b506104d861105e565b005b3480156104e657600080fd5b506104ef611072565b005b3480156104fd57600080fd5b506105066110a6565b604051610513919061258b565b60405180910390f35b34801561052857600080fd5b506105316110d0565b60405161053e91906124c5565b60405180910390f35b610561600480360381019061055c919061251d565b611162565b005b34801561056f57600080fd5b5061058a60048036038101906105859190612866565b6113d2565b005b34801561059857600080fd5b506105a16114dd565b6040516105ae919061241a565b60405180910390f35b3480156105c357600080fd5b506105cc6114f0565b6040516105d99190612621565b60405180910390f35b6105fc60048036038101906105f79190612947565b6114f6565b005b34801561060a57600080fd5b506106256004803603810190610620919061251d565b611569565b005b34801561063357600080fd5b5061064e6004803603810190610649919061251d565b61157b565b60405161065b91906124c5565b60405180910390f35b34801561067057600080fd5b5061067961169e565b6040516106869190612621565b60405180910390f35b34801561069b57600080fd5b506106a46116a4565b6040516106b191906124c5565b60405180910390f35b3480156106c657600080fd5b506106cf611732565b6040516106dc919061241a565b60405180910390f35b3480156106f157600080fd5b506106fa611745565b60405161070791906124c5565b60405180910390f35b34801561071c57600080fd5b50610737600480360381019061073291906129ca565b61175c565b604051610744919061241a565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f919061280d565b6117f0565b005b34801561078257600080fd5b5061078b611873565b005b34801561079957600080fd5b506107a2611898565b6040516107af91906124c5565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da919061280d565b611926565b6040516107ec9190612621565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108805750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461089690612a39565b80601f01602080910402602001604051908101604052809291908181526020018280546108c290612a39565b801561090f5780601f106108e45761010080835404028352916020019161090f565b820191906000526020600020905b8154815290600101906020018083116108f257829003601f168201915b5050505050905090565b60006109248261196f565b61095a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a382610f70565b90508073ffffffffffffffffffffffffffffffffffffffff166109c46119ce565b73ffffffffffffffffffffffffffffffffffffffff1614610a27576109f0816109eb6119ce565b61175c565b610a26576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ae66119d6565b6001546000540303905090565b6000610afe826119df565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b65576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b7184611aab565b91509150610b878187610b826119ce565b611ad2565b610bd357610b9c86610b976119ce565b61175c565b610bd2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c39576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c468686866001611b16565b8015610c5157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d1f85610cfb888887611b1c565b7c020000000000000000000000000000000000000000000000000000000017611b44565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610da55760006001850190506000600460008381526020019081526020016000205403610da3576000548114610da2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e0d8686866001611b6f565b505050505050565b610e1d611b75565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e68573d6000803e3d6000fd5b5050565b610e87838383604051806020016040528060008152506114f6565b505050565b600b5481565b600c5481565b610ea0611b75565b600a60019054906101000a900460ff1615610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee790612ab6565b60405180910390fd5b80600f9081610eff9190612c82565b5050565b610f0b611b75565b600d5481610f17611bf3565b610f219190612d83565b1115610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990612e03565b60405180910390fd5b610f6c8282611c06565b5050565b6000610f7b826119df565b9050919050565b610f8a611b75565b80600d8190555050565b610f9c611b75565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611066611b75565b6110706000611c24565b565b61107a611b75565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110df90612a39565b80601f016020809104026020016040519081016040528092919081815260200182805461110b90612a39565b80156111585780601f1061112d57610100808354040283529160200191611158565b820191906000526020600020905b81548152906001019060200180831161113b57829003601f168201915b5050505050905090565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082116111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090612e6f565b60405180910390fd5b600b54811061122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612edb565b60405180910390fd5b6000829050600c54821015611277578282600c5461124b9190612efb565b111561125a5760009050611276565b81600c546112689190612efb565b836112739190612efb565b90505b5b600a60009054906101000a900460ff166112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd90612f7b565b60405180910390fd5b600d54836112d2611bf3565b6112dc9190612d83565b111561131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131490612e03565b60405180910390fd5b600e548161132b9190612f9b565b34101561136d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113649061304f565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113bc9190612d83565b925050819055506113cd3384611c06565b505050565b80600760006113df6119ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661148c6119ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114d1919061241a565b60405180910390a35050565b600a60019054906101000a900460ff1681565b600e5481565b611501848484610af3565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115635761152c84848484611cea565b611562576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611571611b75565b80600e8190555050565b60606115868261196f565b6115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc906130e1565b60405180910390fd5b60006115cf611e3a565b511161166557601080546115e290612a39565b80601f016020809104026020016040519081016040528092919081815260200182805461160e90612a39565b801561165b5780601f106116305761010080835404028352916020019161165b565b820191906000526020600020905b81548152906001019060200180831161163e57829003601f168201915b5050505050611697565b61166d611e3a565b61167683611ecc565b60405160200161168792919061313d565b6040516020818303038152906040525b9050919050565b600d5481565b601080546116b190612a39565b80601f01602080910402602001604051908101604052809291908181526020018280546116dd90612a39565b801561172a5780601f106116ff5761010080835404028352916020019161172a565b820191906000526020600020905b81548152906001019060200180831161170d57829003601f168201915b505050505081565b600a60009054906101000a900460ff1681565b606060405180602001604052806000815250905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117f8611b75565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e906131d3565b60405180910390fd5b61187081611c24565b50565b61187b611b75565b6001600a60016101000a81548160ff021916908315150217905550565b600f80546118a590612a39565b80601f01602080910402602001604051908101604052809291908181526020018280546118d190612a39565b801561191e5780601f106118f35761010080835404028352916020019161191e565b820191906000526020600020905b81548152906001019060200180831161190157829003601f168201915b505050505081565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008161197a6119d6565b11158015611989575060005482105b80156119c7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806119ee6119d6565b11611a7457600054811015611a735760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a71575b60008103611a67576004600083600190039350838152602001908152602001600020549050611a3d565b8092505050611aa6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b33868684611f9a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611b7d611fa3565b73ffffffffffffffffffffffffffffffffffffffff16611b9b6110a6565b73ffffffffffffffffffffffffffffffffffffffff1614611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be89061323f565b60405180910390fd5b565b6000611bfd6119d6565b60005403905090565b611c20828260405180602001604052806000815250611fab565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d106119ce565b8786866040518563ffffffff1660e01b8152600401611d3294939291906132b4565b6020604051808303816000875af1925050508015611d6e57506040513d601f19601f82011682018060405250810190611d6b9190613315565b60015b611de7573d8060008114611d9e576040519150601f19603f3d011682016040523d82523d6000602084013e611da3565b606091505b506000815103611ddf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611e4990612a39565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7590612a39565b8015611ec25780601f10611e9757610100808354040283529160200191611ec2565b820191906000526020600020905b815481529060010190602001808311611ea557829003601f168201915b5050505050905090565b606060006001611edb84612048565b01905060008167ffffffffffffffff811115611efa57611ef9612699565b5b6040519080825280601f01601f191660200182016040528015611f2c5781602001600182028036833780820191505090505b509050600082602001820190505b600115611f8f578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f8357611f82613342565b5b04945060008503611f3a575b819350505050919050565b60009392505050565b600033905090565b611fb5838361219b565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461204357600080549050600083820390505b611ff56000868380600101945086611cea565b61202b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fe257816000541461204057600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120a6577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161209c5761209b613342565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106120e3576d04ee2d6d415b85acef810000000083816120d9576120d8613342565b5b0492506020810190505b662386f26fc10000831061211257662386f26fc10000838161210857612107613342565b5b0492506010810190505b6305f5e100831061213b576305f5e100838161213157612130613342565b5b0492506008810190505b612710831061216057612710838161215657612155613342565b5b0492506004810190505b60648310612183576064838161217957612178613342565b5b0492506002810190505b600a8310612192576001810190505b80915050919050565b600080549050600082036121db576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121e86000848385611b16565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061225f836122506000866000611b1c565b61225985612356565b17611b44565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461230057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122c5565b506000820361233b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123516000848385611b6f565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123af8161237a565b81146123ba57600080fd5b50565b6000813590506123cc816123a6565b92915050565b6000602082840312156123e8576123e7612370565b5b60006123f6848285016123bd565b91505092915050565b60008115159050919050565b612414816123ff565b82525050565b600060208201905061242f600083018461240b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561246f578082015181840152602081019050612454565b60008484015250505050565b6000601f19601f8301169050919050565b600061249782612435565b6124a18185612440565b93506124b1818560208601612451565b6124ba8161247b565b840191505092915050565b600060208201905081810360008301526124df818461248c565b905092915050565b6000819050919050565b6124fa816124e7565b811461250557600080fd5b50565b600081359050612517816124f1565b92915050565b60006020828403121561253357612532612370565b5b600061254184828501612508565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125758261254a565b9050919050565b6125858161256a565b82525050565b60006020820190506125a0600083018461257c565b92915050565b6125af8161256a565b81146125ba57600080fd5b50565b6000813590506125cc816125a6565b92915050565b600080604083850312156125e9576125e8612370565b5b60006125f7858286016125bd565b925050602061260885828601612508565b9150509250929050565b61261b816124e7565b82525050565b60006020820190506126366000830184612612565b92915050565b60008060006060848603121561265557612654612370565b5b6000612663868287016125bd565b9350506020612674868287016125bd565b925050604061268586828701612508565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126d18261247b565b810181811067ffffffffffffffff821117156126f0576126ef612699565b5b80604052505050565b6000612703612366565b905061270f82826126c8565b919050565b600067ffffffffffffffff82111561272f5761272e612699565b5b6127388261247b565b9050602081019050919050565b82818337600083830152505050565b600061276761276284612714565b6126f9565b90508281526020810184848401111561278357612782612694565b5b61278e848285612745565b509392505050565b600082601f8301126127ab576127aa61268f565b5b81356127bb848260208601612754565b91505092915050565b6000602082840312156127da576127d9612370565b5b600082013567ffffffffffffffff8111156127f8576127f7612375565b5b61280484828501612796565b91505092915050565b60006020828403121561282357612822612370565b5b6000612831848285016125bd565b91505092915050565b612843816123ff565b811461284e57600080fd5b50565b6000813590506128608161283a565b92915050565b6000806040838503121561287d5761287c612370565b5b600061288b858286016125bd565b925050602061289c85828601612851565b9150509250929050565b600067ffffffffffffffff8211156128c1576128c0612699565b5b6128ca8261247b565b9050602081019050919050565b60006128ea6128e5846128a6565b6126f9565b90508281526020810184848401111561290657612905612694565b5b612911848285612745565b509392505050565b600082601f83011261292e5761292d61268f565b5b813561293e8482602086016128d7565b91505092915050565b6000806000806080858703121561296157612960612370565b5b600061296f878288016125bd565b9450506020612980878288016125bd565b935050604061299187828801612508565b925050606085013567ffffffffffffffff8111156129b2576129b1612375565b5b6129be87828801612919565b91505092959194509250565b600080604083850312156129e1576129e0612370565b5b60006129ef858286016125bd565b9250506020612a00858286016125bd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a5157607f821691505b602082108103612a6457612a63612a0a565b5b50919050565b7f4d657461646174612069732066696e616c697a65640000000000000000000000600082015250565b6000612aa0601583612440565b9150612aab82612a6a565b602082019050919050565b60006020820190508181036000830152612acf81612a93565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612b387fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612afb565b612b428683612afb565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612b7f612b7a612b75846124e7565b612b5a565b6124e7565b9050919050565b6000819050919050565b612b9983612b64565b612bad612ba582612b86565b848454612b08565b825550505050565b600090565b612bc2612bb5565b612bcd818484612b90565b505050565b5b81811015612bf157612be6600082612bba565b600181019050612bd3565b5050565b601f821115612c3657612c0781612ad6565b612c1084612aeb565b81016020851015612c1f578190505b612c33612c2b85612aeb565b830182612bd2565b50505b505050565b600082821c905092915050565b6000612c5960001984600802612c3b565b1980831691505092915050565b6000612c728383612c48565b9150826002028217905092915050565b612c8b82612435565b67ffffffffffffffff811115612ca457612ca3612699565b5b612cae8254612a39565b612cb9828285612bf5565b600060209050601f831160018114612cec5760008415612cda578287015190505b612ce48582612c66565b865550612d4c565b601f198416612cfa86612ad6565b60005b82811015612d2257848901518255600182019150602085019450602081019050612cfd565b86831015612d3f5784890151612d3b601f891682612c48565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d8e826124e7565b9150612d99836124e7565b9250828201905080821115612db157612db0612d54565b5b92915050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612ded600883612440565b9150612df882612db7565b602082019050919050565b60006020820190508181036000830152612e1c81612de0565b9050919050565b7f4d75737420757365206174206c65617374206f6e65206d696e74000000000000600082015250565b6000612e59601a83612440565b9150612e6482612e23565b602082019050919050565b60006020820190508181036000830152612e8881612e4c565b9050919050565b7f4d6178205065722077616c6c6574000000000000000000000000000000000000600082015250565b6000612ec5600e83612440565b9150612ed082612e8f565b602082019050919050565b60006020820190508181036000830152612ef481612eb8565b9050919050565b6000612f06826124e7565b9150612f11836124e7565b9250828203905081811115612f2957612f28612d54565b5b92915050565b7f4d696e7420686173206e6f742073746172746564000000000000000000000000600082015250565b6000612f65601483612440565b9150612f7082612f2f565b602082019050919050565b60006020820190508181036000830152612f9481612f58565b9050919050565b6000612fa6826124e7565b9150612fb1836124e7565b9250828202612fbf816124e7565b91508282048414831517612fd657612fd5612d54565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b6000613039602283612440565b915061304482612fdd565b604082019050919050565b600060208201905081810360008301526130688161302c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006130cb602f83612440565b91506130d68261306f565b604082019050919050565b600060208201905081810360008301526130fa816130be565b9050919050565b600081905092915050565b600061311782612435565b6131218185613101565b9350613131818560208601612451565b80840191505092915050565b6000613149828561310c565b9150613155828461310c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131bd602683612440565b91506131c882613161565b604082019050919050565b600060208201905081810360008301526131ec816131b0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613229602083612440565b9150613234826131f3565b602082019050919050565b600060208201905081810360008301526132588161321c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132868261325f565b613290818561326a565b93506132a0818560208601612451565b6132a98161247b565b840191505092915050565b60006080820190506132c9600083018761257c565b6132d6602083018661257c565b6132e36040830185612612565b81810360608301526132f5818461327b565b905095945050505050565b60008151905061330f816123a6565b92915050565b60006020828403121561332b5761332a612370565b5b600061333984828501613300565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220ce3e51deb0cf6c1ad258e7920da42b899ee47a74f7c498cab9f1c59b53885b7664736f6c63430008130033697066733a2f2f62616679626569637474346f717274356e6634697961756d32736c7732366c64636c333361676676743365746e613471696871786e646164656e652f
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80638da5cb5b11610118578063d5abeb01116100a0578063e985e9c51161006f578063e985e9c514610710578063f2fde38b1461074d578063f4a560a514610776578063f9e0edae1461078d578063fddcb5ea146107b85761020f565b8063d5abeb0114610664578063d82104821461068f578063e3bcfc64146106ba578063e8a3d485146106e55761020f565b8063a5eb6ff2116100e7578063a5eb6ff21461058c578063a945bf80146105b7578063b88d4fde146105e2578063c6275255146105fe578063c87b56dd146106275761020f565b80638da5cb5b146104f157806395d89b411461051c578063a0712d6814610547578063a22cb465146105635761020f565b8063485a68a31161019b5780636f8b44b01161016a5780636f8b44b0146104345780637040d73f1461045d57806370a0823114610486578063715018a6146104c357806374b2eb85146104da5761020f565b8063485a68a31461037a5780634c261247146103a5578063627804af146103ce5780636352211e146103f75761020f565b806318160ddd116101e257806318160ddd146102d557806323b872dd146103005780633ccfd60b1461031c57806342842e0e14610333578063453c23101461034f5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906123d2565b6107f5565b604051610248919061241a565b60405180910390f35b34801561025d57600080fd5b50610266610887565b60405161027391906124c5565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061251d565b610919565b6040516102b0919061258b565b60405180910390f35b6102d360048036038101906102ce91906125d2565b610998565b005b3480156102e157600080fd5b506102ea610adc565b6040516102f79190612621565b60405180910390f35b61031a6004803603810190610315919061263c565b610af3565b005b34801561032857600080fd5b50610331610e15565b005b61034d6004803603810190610348919061263c565b610e6c565b005b34801561035b57600080fd5b50610364610e8c565b6040516103719190612621565b60405180910390f35b34801561038657600080fd5b5061038f610e92565b60405161039c9190612621565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c791906127c4565b610e98565b005b3480156103da57600080fd5b506103f560048036038101906103f091906125d2565b610f03565b005b34801561040357600080fd5b5061041e6004803603810190610419919061251d565b610f70565b60405161042b919061258b565b60405180910390f35b34801561044057600080fd5b5061045b6004803603810190610456919061251d565b610f82565b005b34801561046957600080fd5b50610484600480360381019061047f919061251d565b610f94565b005b34801561049257600080fd5b506104ad60048036038101906104a8919061280d565b610fa6565b6040516104ba9190612621565b60405180910390f35b3480156104cf57600080fd5b506104d861105e565b005b3480156104e657600080fd5b506104ef611072565b005b3480156104fd57600080fd5b506105066110a6565b604051610513919061258b565b60405180910390f35b34801561052857600080fd5b506105316110d0565b60405161053e91906124c5565b60405180910390f35b610561600480360381019061055c919061251d565b611162565b005b34801561056f57600080fd5b5061058a60048036038101906105859190612866565b6113d2565b005b34801561059857600080fd5b506105a16114dd565b6040516105ae919061241a565b60405180910390f35b3480156105c357600080fd5b506105cc6114f0565b6040516105d99190612621565b60405180910390f35b6105fc60048036038101906105f79190612947565b6114f6565b005b34801561060a57600080fd5b506106256004803603810190610620919061251d565b611569565b005b34801561063357600080fd5b5061064e6004803603810190610649919061251d565b61157b565b60405161065b91906124c5565b60405180910390f35b34801561067057600080fd5b5061067961169e565b6040516106869190612621565b60405180910390f35b34801561069b57600080fd5b506106a46116a4565b6040516106b191906124c5565b60405180910390f35b3480156106c657600080fd5b506106cf611732565b6040516106dc919061241a565b60405180910390f35b3480156106f157600080fd5b506106fa611745565b60405161070791906124c5565b60405180910390f35b34801561071c57600080fd5b50610737600480360381019061073291906129ca565b61175c565b604051610744919061241a565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f919061280d565b6117f0565b005b34801561078257600080fd5b5061078b611873565b005b34801561079957600080fd5b506107a2611898565b6040516107af91906124c5565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da919061280d565b611926565b6040516107ec9190612621565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108805750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461089690612a39565b80601f01602080910402602001604051908101604052809291908181526020018280546108c290612a39565b801561090f5780601f106108e45761010080835404028352916020019161090f565b820191906000526020600020905b8154815290600101906020018083116108f257829003601f168201915b5050505050905090565b60006109248261196f565b61095a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a382610f70565b90508073ffffffffffffffffffffffffffffffffffffffff166109c46119ce565b73ffffffffffffffffffffffffffffffffffffffff1614610a27576109f0816109eb6119ce565b61175c565b610a26576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ae66119d6565b6001546000540303905090565b6000610afe826119df565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b65576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b7184611aab565b91509150610b878187610b826119ce565b611ad2565b610bd357610b9c86610b976119ce565b61175c565b610bd2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c39576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c468686866001611b16565b8015610c5157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d1f85610cfb888887611b1c565b7c020000000000000000000000000000000000000000000000000000000017611b44565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610da55760006001850190506000600460008381526020019081526020016000205403610da3576000548114610da2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e0d8686866001611b6f565b505050505050565b610e1d611b75565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e68573d6000803e3d6000fd5b5050565b610e87838383604051806020016040528060008152506114f6565b505050565b600b5481565b600c5481565b610ea0611b75565b600a60019054906101000a900460ff1615610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee790612ab6565b60405180910390fd5b80600f9081610eff9190612c82565b5050565b610f0b611b75565b600d5481610f17611bf3565b610f219190612d83565b1115610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990612e03565b60405180910390fd5b610f6c8282611c06565b5050565b6000610f7b826119df565b9050919050565b610f8a611b75565b80600d8190555050565b610f9c611b75565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611066611b75565b6110706000611c24565b565b61107a611b75565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110df90612a39565b80601f016020809104026020016040519081016040528092919081815260200182805461110b90612a39565b80156111585780601f1061112d57610100808354040283529160200191611158565b820191906000526020600020905b81548152906001019060200180831161113b57829003601f168201915b5050505050905090565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082116111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090612e6f565b60405180910390fd5b600b54811061122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612edb565b60405180910390fd5b6000829050600c54821015611277578282600c5461124b9190612efb565b111561125a5760009050611276565b81600c546112689190612efb565b836112739190612efb565b90505b5b600a60009054906101000a900460ff166112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd90612f7b565b60405180910390fd5b600d54836112d2611bf3565b6112dc9190612d83565b111561131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131490612e03565b60405180910390fd5b600e548161132b9190612f9b565b34101561136d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113649061304f565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113bc9190612d83565b925050819055506113cd3384611c06565b505050565b80600760006113df6119ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661148c6119ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114d1919061241a565b60405180910390a35050565b600a60019054906101000a900460ff1681565b600e5481565b611501848484610af3565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115635761152c84848484611cea565b611562576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611571611b75565b80600e8190555050565b60606115868261196f565b6115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc906130e1565b60405180910390fd5b60006115cf611e3a565b511161166557601080546115e290612a39565b80601f016020809104026020016040519081016040528092919081815260200182805461160e90612a39565b801561165b5780601f106116305761010080835404028352916020019161165b565b820191906000526020600020905b81548152906001019060200180831161163e57829003601f168201915b5050505050611697565b61166d611e3a565b61167683611ecc565b60405160200161168792919061313d565b6040516020818303038152906040525b9050919050565b600d5481565b601080546116b190612a39565b80601f01602080910402602001604051908101604052809291908181526020018280546116dd90612a39565b801561172a5780601f106116ff5761010080835404028352916020019161172a565b820191906000526020600020905b81548152906001019060200180831161170d57829003601f168201915b505050505081565b600a60009054906101000a900460ff1681565b606060405180602001604052806000815250905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117f8611b75565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e906131d3565b60405180910390fd5b61187081611c24565b50565b61187b611b75565b6001600a60016101000a81548160ff021916908315150217905550565b600f80546118a590612a39565b80601f01602080910402602001604051908101604052809291908181526020018280546118d190612a39565b801561191e5780601f106118f35761010080835404028352916020019161191e565b820191906000526020600020905b81548152906001019060200180831161190157829003601f168201915b505050505081565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008161197a6119d6565b11158015611989575060005482105b80156119c7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806119ee6119d6565b11611a7457600054811015611a735760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a71575b60008103611a67576004600083600190039350838152602001908152602001600020549050611a3d565b8092505050611aa6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b33868684611f9a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611b7d611fa3565b73ffffffffffffffffffffffffffffffffffffffff16611b9b6110a6565b73ffffffffffffffffffffffffffffffffffffffff1614611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be89061323f565b60405180910390fd5b565b6000611bfd6119d6565b60005403905090565b611c20828260405180602001604052806000815250611fab565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d106119ce565b8786866040518563ffffffff1660e01b8152600401611d3294939291906132b4565b6020604051808303816000875af1925050508015611d6e57506040513d601f19601f82011682018060405250810190611d6b9190613315565b60015b611de7573d8060008114611d9e576040519150601f19603f3d011682016040523d82523d6000602084013e611da3565b606091505b506000815103611ddf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611e4990612a39565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7590612a39565b8015611ec25780601f10611e9757610100808354040283529160200191611ec2565b820191906000526020600020905b815481529060010190602001808311611ea557829003601f168201915b5050505050905090565b606060006001611edb84612048565b01905060008167ffffffffffffffff811115611efa57611ef9612699565b5b6040519080825280601f01601f191660200182016040528015611f2c5781602001600182028036833780820191505090505b509050600082602001820190505b600115611f8f578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f8357611f82613342565b5b04945060008503611f3a575b819350505050919050565b60009392505050565b600033905090565b611fb5838361219b565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461204357600080549050600083820390505b611ff56000868380600101945086611cea565b61202b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fe257816000541461204057600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120a6577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161209c5761209b613342565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106120e3576d04ee2d6d415b85acef810000000083816120d9576120d8613342565b5b0492506020810190505b662386f26fc10000831061211257662386f26fc10000838161210857612107613342565b5b0492506010810190505b6305f5e100831061213b576305f5e100838161213157612130613342565b5b0492506008810190505b612710831061216057612710838161215657612155613342565b5b0492506004810190505b60648310612183576064838161217957612178613342565b5b0492506002810190505b600a8310612192576001810190505b80915050919050565b600080549050600082036121db576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121e86000848385611b16565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061225f836122506000866000611b1c565b61225985612356565b17611b44565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461230057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122c5565b506000820361233b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123516000848385611b6f565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123af8161237a565b81146123ba57600080fd5b50565b6000813590506123cc816123a6565b92915050565b6000602082840312156123e8576123e7612370565b5b60006123f6848285016123bd565b91505092915050565b60008115159050919050565b612414816123ff565b82525050565b600060208201905061242f600083018461240b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561246f578082015181840152602081019050612454565b60008484015250505050565b6000601f19601f8301169050919050565b600061249782612435565b6124a18185612440565b93506124b1818560208601612451565b6124ba8161247b565b840191505092915050565b600060208201905081810360008301526124df818461248c565b905092915050565b6000819050919050565b6124fa816124e7565b811461250557600080fd5b50565b600081359050612517816124f1565b92915050565b60006020828403121561253357612532612370565b5b600061254184828501612508565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125758261254a565b9050919050565b6125858161256a565b82525050565b60006020820190506125a0600083018461257c565b92915050565b6125af8161256a565b81146125ba57600080fd5b50565b6000813590506125cc816125a6565b92915050565b600080604083850312156125e9576125e8612370565b5b60006125f7858286016125bd565b925050602061260885828601612508565b9150509250929050565b61261b816124e7565b82525050565b60006020820190506126366000830184612612565b92915050565b60008060006060848603121561265557612654612370565b5b6000612663868287016125bd565b9350506020612674868287016125bd565b925050604061268586828701612508565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126d18261247b565b810181811067ffffffffffffffff821117156126f0576126ef612699565b5b80604052505050565b6000612703612366565b905061270f82826126c8565b919050565b600067ffffffffffffffff82111561272f5761272e612699565b5b6127388261247b565b9050602081019050919050565b82818337600083830152505050565b600061276761276284612714565b6126f9565b90508281526020810184848401111561278357612782612694565b5b61278e848285612745565b509392505050565b600082601f8301126127ab576127aa61268f565b5b81356127bb848260208601612754565b91505092915050565b6000602082840312156127da576127d9612370565b5b600082013567ffffffffffffffff8111156127f8576127f7612375565b5b61280484828501612796565b91505092915050565b60006020828403121561282357612822612370565b5b6000612831848285016125bd565b91505092915050565b612843816123ff565b811461284e57600080fd5b50565b6000813590506128608161283a565b92915050565b6000806040838503121561287d5761287c612370565b5b600061288b858286016125bd565b925050602061289c85828601612851565b9150509250929050565b600067ffffffffffffffff8211156128c1576128c0612699565b5b6128ca8261247b565b9050602081019050919050565b60006128ea6128e5846128a6565b6126f9565b90508281526020810184848401111561290657612905612694565b5b612911848285612745565b509392505050565b600082601f83011261292e5761292d61268f565b5b813561293e8482602086016128d7565b91505092915050565b6000806000806080858703121561296157612960612370565b5b600061296f878288016125bd565b9450506020612980878288016125bd565b935050604061299187828801612508565b925050606085013567ffffffffffffffff8111156129b2576129b1612375565b5b6129be87828801612919565b91505092959194509250565b600080604083850312156129e1576129e0612370565b5b60006129ef858286016125bd565b9250506020612a00858286016125bd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a5157607f821691505b602082108103612a6457612a63612a0a565b5b50919050565b7f4d657461646174612069732066696e616c697a65640000000000000000000000600082015250565b6000612aa0601583612440565b9150612aab82612a6a565b602082019050919050565b60006020820190508181036000830152612acf81612a93565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612b387fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612afb565b612b428683612afb565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612b7f612b7a612b75846124e7565b612b5a565b6124e7565b9050919050565b6000819050919050565b612b9983612b64565b612bad612ba582612b86565b848454612b08565b825550505050565b600090565b612bc2612bb5565b612bcd818484612b90565b505050565b5b81811015612bf157612be6600082612bba565b600181019050612bd3565b5050565b601f821115612c3657612c0781612ad6565b612c1084612aeb565b81016020851015612c1f578190505b612c33612c2b85612aeb565b830182612bd2565b50505b505050565b600082821c905092915050565b6000612c5960001984600802612c3b565b1980831691505092915050565b6000612c728383612c48565b9150826002028217905092915050565b612c8b82612435565b67ffffffffffffffff811115612ca457612ca3612699565b5b612cae8254612a39565b612cb9828285612bf5565b600060209050601f831160018114612cec5760008415612cda578287015190505b612ce48582612c66565b865550612d4c565b601f198416612cfa86612ad6565b60005b82811015612d2257848901518255600182019150602085019450602081019050612cfd565b86831015612d3f5784890151612d3b601f891682612c48565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d8e826124e7565b9150612d99836124e7565b9250828201905080821115612db157612db0612d54565b5b92915050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612ded600883612440565b9150612df882612db7565b602082019050919050565b60006020820190508181036000830152612e1c81612de0565b9050919050565b7f4d75737420757365206174206c65617374206f6e65206d696e74000000000000600082015250565b6000612e59601a83612440565b9150612e6482612e23565b602082019050919050565b60006020820190508181036000830152612e8881612e4c565b9050919050565b7f4d6178205065722077616c6c6574000000000000000000000000000000000000600082015250565b6000612ec5600e83612440565b9150612ed082612e8f565b602082019050919050565b60006020820190508181036000830152612ef481612eb8565b9050919050565b6000612f06826124e7565b9150612f11836124e7565b9250828203905081811115612f2957612f28612d54565b5b92915050565b7f4d696e7420686173206e6f742073746172746564000000000000000000000000600082015250565b6000612f65601483612440565b9150612f7082612f2f565b602082019050919050565b60006020820190508181036000830152612f9481612f58565b9050919050565b6000612fa6826124e7565b9150612fb1836124e7565b9250828202612fbf816124e7565b91508282048414831517612fd657612fd5612d54565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b6000613039602283612440565b915061304482612fdd565b604082019050919050565b600060208201905081810360008301526130688161302c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006130cb602f83612440565b91506130d68261306f565b604082019050919050565b600060208201905081810360008301526130fa816130be565b9050919050565b600081905092915050565b600061311782612435565b6131218185613101565b9350613131818560208601612451565b80840191505092915050565b6000613149828561310c565b9150613155828461310c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131bd602683612440565b91506131c882613161565b604082019050919050565b600060208201905081810360008301526131ec816131b0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613229602083612440565b9150613234826131f3565b602082019050919050565b600060208201905081810360008301526132588161321c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132868261325f565b613290818561326a565b93506132a0818560208601612451565b6132a98161247b565b840191505092915050565b60006080820190506132c9600083018761257c565b6132d6602083018661257c565b6132e36040830185612612565b81810360608301526132f5818461327b565b905095945050505050565b60008151905061330f816123a6565b92915050565b60006020828403121561332b5761332a612370565b5b600061333984828501613300565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220ce3e51deb0cf6c1ad258e7920da42b899ee47a74f7c498cab9f1c59b53885b7664736f6c63430008130033
Deployed Bytecode Sourcemap
82545:3174:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49421:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50323:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56814:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56247:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46074:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60453:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83801:141;;;;;;;;;;;;;:::i;:::-;;63374:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82712:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82750:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83652:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85547:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51716:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84621:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84733:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47258:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30200:103;;;;;;;;;;;;;:::i;:::-;;84526:87;;;;;;;;;;;;;:::i;:::-;;29552;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50499:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84828:713;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57372:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82683:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82821:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64165:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84420:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83950:462;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82783:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82976;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82647:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83468:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57763:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30458:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83563:81;;;;;;;;;;;;;:::i;:::-;;82875:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83131:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49421:639;49506:4;49845:10;49830:25;;:11;:25;;;;:102;;;;49922:10;49907:25;;:11;:25;;;;49830:102;:179;;;;49999:10;49984:25;;:11;:25;;;;49830:179;49810:199;;49421:639;;;:::o;50323:100::-;50377:13;50410:5;50403:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50323:100;:::o;56814:218::-;56890:7;56915:16;56923:7;56915;:16::i;:::-;56910:64;;56940:34;;;;;;;;;;;;;;56910:64;56994:15;:24;57010:7;56994:24;;;;;;;;;;;:30;;;;;;;;;;;;56987:37;;56814:218;;;:::o;56247:408::-;56336:13;56352:16;56360:7;56352;:16::i;:::-;56336:32;;56408:5;56385:28;;:19;:17;:19::i;:::-;:28;;;56381:175;;56433:44;56450:5;56457:19;:17;:19::i;:::-;56433:16;:44::i;:::-;56428:128;;56505:35;;;;;;;;;;;;;;56428:128;56381:175;56601:2;56568:15;:24;56584:7;56568:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;56639:7;56635:2;56619:28;;56628:5;56619:28;;;;;;;;;;;;56325:330;56247:408;;:::o;46074:323::-;46135:7;46363:15;:13;:15::i;:::-;46348:12;;46332:13;;:28;:46;46325:53;;46074:323;:::o;60453:2825::-;60595:27;60625;60644:7;60625:18;:27::i;:::-;60595:57;;60710:4;60669:45;;60685:19;60669:45;;;60665:86;;60723:28;;;;;;;;;;;;;;60665:86;60765:27;60794:23;60821:35;60848:7;60821:26;:35::i;:::-;60764:92;;;;60956:68;60981:15;60998:4;61004:19;:17;:19::i;:::-;60956:24;:68::i;:::-;60951:180;;61044:43;61061:4;61067:19;:17;:19::i;:::-;61044:16;:43::i;:::-;61039:92;;61096:35;;;;;;;;;;;;;;61039:92;60951:180;61162:1;61148:16;;:2;:16;;;61144:52;;61173:23;;;;;;;;;;;;;;61144:52;61209:43;61231:4;61237:2;61241:7;61250:1;61209:21;:43::i;:::-;61345:15;61342:160;;;61485:1;61464:19;61457:30;61342:160;61882:18;:24;61901:4;61882:24;;;;;;;;;;;;;;;;61880:26;;;;;;;;;;;;61951:18;:22;61970:2;61951:22;;;;;;;;;;;;;;;;61949:24;;;;;;;;;;;62273:146;62310:2;62359:45;62374:4;62380:2;62384:19;62359:14;:45::i;:::-;42473:8;62331:73;62273:18;:146::i;:::-;62244:17;:26;62262:7;62244:26;;;;;;;;;;;:175;;;;62590:1;42473:8;62539:19;:47;:52;62535:627;;62612:19;62644:1;62634:7;:11;62612:33;;62801:1;62767:17;:30;62785:11;62767:30;;;;;;;;;;;;:35;62763:384;;62905:13;;62890:11;:28;62886:242;;63085:19;63052:17;:30;63070:11;63052:30;;;;;;;;;;;:52;;;;62886:242;62763:384;62593:569;62535:627;63209:7;63205:2;63190:27;;63199:4;63190:27;;;;;;;;;;;;63228:42;63249:4;63255:2;63259:7;63268:1;63228:20;:42::i;:::-;60584:2694;;;60453:2825;;;:::o;83801:141::-;29438:13;:11;:13::i;:::-;83849:15:::1;83867:21;83849:39;;83907:10;83899:28;;:37;83928:7;83899:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;83838:104;83801:141::o:0;63374:193::-;63520:39;63537:4;63543:2;63547:7;63520:39;;;;;;;;;;;;:16;:39::i;:::-;63374:193;;;:::o;82712:31::-;;;;:::o;82750:26::-;;;;:::o;83652:141::-;29438:13;:11;:13::i;:::-;83726:8:::1;;;;;;;;;;;83725:9;83717:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;83782:3;83771:8;:14;;;;;;:::i;:::-;;83652:141:::0;:::o;85547:169::-;29438:13;:11;:13::i;:::-;85655:9:::1;;85646:5;85629:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;85621:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;85688:20;85698:2;85702:5;85688:9;:20::i;:::-;85547:169:::0;;:::o;51716:152::-;51788:7;51831:27;51850:7;51831:18;:27::i;:::-;51808:52;;51716:152;;;:::o;84621:106::-;29438:13;:11;:13::i;:::-;84707:12:::1;84695:9;:24;;;;84621:106:::0;:::o;84733:89::-;29438:13;:11;:13::i;:::-;84807:7:::1;84797;:17;;;;84733:89:::0;:::o;47258:233::-;47330:7;47371:1;47354:19;;:5;:19;;;47350:60;;47382:28;;;;;;;;;;;;;;47350:60;41417:13;47428:18;:25;47447:5;47428:25;;;;;;;;;;;;;;;;:55;47421:62;;47258:233;;;:::o;30200:103::-;29438:13;:11;:13::i;:::-;30265:30:::1;30292:1;30265:18;:30::i;:::-;30200:103::o:0;84526:87::-;29438:13;:11;:13::i;:::-;84596:9:::1;;;;;;;;;;;84595:10;84583:9;;:22;;;;;;;;;;;;;;;;;;84526:87::o:0;29552:::-;29598:7;29625:6;;;;;;;;;;;29618:13;;29552:87;:::o;50499:104::-;50555:13;50588:7;50581:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50499:104;:::o;84828:713::-;84885:14;84902:18;:30;84921:10;84902:30;;;;;;;;;;;;;;;;84885:47;;84959:1;84951:5;:9;84943:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;85019:12;;85010:6;:21;85002:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;85061:19;85083:5;85061:27;;85112:7;;85103:6;:16;85099:131;;;85145:5;85136:6;85126:7;;:16;;;;:::i;:::-;:24;85122:107;;;85167:1;85153:15;;85122:107;;;85220:6;85210:7;;:16;;;;:::i;:::-;85201:5;:26;;;;:::i;:::-;85187:40;;85122:107;85099:131;85248:9;;;;;;;;;;;85240:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;85327:9;;85318:5;85301:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;85293:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;85395:11;;85381;:25;;;;:::i;:::-;85368:9;:38;;85360:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;85489:5;85455:18;:30;85474:10;85455:30;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;85505:28;85515:10;85527:5;85505:9;:28::i;:::-;84874:667;;84828:713;:::o;57372:234::-;57519:8;57467:18;:39;57486:19;:17;:19::i;:::-;57467:39;;;;;;;;;;;;;;;:49;57507:8;57467:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;57579:8;57543:55;;57558:19;:17;:19::i;:::-;57543:55;;;57589:8;57543:55;;;;;;:::i;:::-;;;;;;;;57372:234;;:::o;82683:20::-;;;;;;;;;;;;;:::o;82821:41::-;;;;:::o;64165:407::-;64340:31;64353:4;64359:2;64363:7;64340:12;:31::i;:::-;64404:1;64386:2;:14;;;:19;64382:183;;64425:56;64456:4;64462:2;64466:7;64475:5;64425:30;:56::i;:::-;64420:145;;64509:40;;;;;;;;;;;;;;64420:145;64382:183;64165:407;;;;:::o;84420:98::-;29438:13;:11;:13::i;:::-;84504:6:::1;84490:11;:20;;;;84420:98:::0;:::o;83950:462::-;84051:13;84104:16;84112:7;84104;:16::i;:::-;84082:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;84255:1;84234:10;:8;:10::i;:::-;84228:24;:28;:176;;84392:12;84228:176;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84322:10;:8;:10::i;:::-;84334:18;:7;:16;:18::i;:::-;84305:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84228:176;84208:196;;83950:462;;;:::o;82783:31::-;;;;:::o;82976:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;82647:29::-;;;;;;;;;;;;;:::o;83468:87::-;83512:13;83538:9;;;;;;;;;;;;;;83468:87;:::o;57763:164::-;57860:4;57884:18;:25;57903:5;57884:25;;;;;;;;;;;;;;;:35;57910:8;57884:35;;;;;;;;;;;;;;;;;;;;;;;;;57877:42;;57763:164;;;;:::o;30458:201::-;29438:13;:11;:13::i;:::-;30567:1:::1;30547:22;;:8;:22;;::::0;30539:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30623:28;30642:8;30623:18;:28::i;:::-;30458:201:::0;:::o;83563:81::-;29438:13;:11;:13::i;:::-;83632:4:::1;83621:8;;:15;;;;;;;;;;;;;;;;;;83563:81::o:0;82875:94::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;83131:119::-;83190:7;83217:18;:25;83236:5;83217:25;;;;;;;;;;;;;;;;83210:32;;83131:119;;;:::o;58185:282::-;58250:4;58306:7;58287:15;:13;:15::i;:::-;:26;;:66;;;;;58340:13;;58330:7;:23;58287:66;:153;;;;;58439:1;42193:8;58391:17;:26;58409:7;58391:26;;;;;;;;;;;;:44;:49;58287:153;58267:173;;58185:282;;;:::o;80493:105::-;80553:7;80580:10;80573:17;;80493:105;:::o;83367:93::-;83424:7;83451:1;83444:8;;83367:93;:::o;52871:1275::-;52938:7;52958:12;52973:7;52958:22;;53041:4;53022:15;:13;:15::i;:::-;:23;53018:1061;;53075:13;;53068:4;:20;53064:1015;;;53113:14;53130:17;:23;53148:4;53130:23;;;;;;;;;;;;53113:40;;53247:1;42193:8;53219:6;:24;:29;53215:845;;53884:113;53901:1;53891:6;:11;53884:113;;53944:17;:25;53962:6;;;;;;;53944:25;;;;;;;;;;;;53935:34;;53884:113;;;54030:6;54023:13;;;;;;53215:845;53090:989;53064:1015;53018:1061;54107:31;;;;;;;;;;;;;;52871:1275;;;;:::o;59348:485::-;59450:27;59479:23;59520:38;59561:15;:24;59577:7;59561:24;;;;;;;;;;;59520:65;;59738:18;59715:41;;59795:19;59789:26;59770:45;;59700:126;59348:485;;;:::o;58576:659::-;58725:11;58890:16;58883:5;58879:28;58870:37;;59050:16;59039:9;59035:32;59022:45;;59200:15;59189:9;59186:30;59178:5;59167:9;59164:20;59161:56;59151:66;;58576:659;;;;;:::o;65234:159::-;;;;;:::o;79802:311::-;79937:7;79957:16;42597:3;79983:19;:41;;79957:68;;42597:3;80051:31;80062:4;80068:2;80072:9;80051:10;:31::i;:::-;80043:40;;:62;;80036:69;;;79802:311;;;;;:::o;54694:450::-;54774:14;54942:16;54935:5;54931:28;54922:37;;55119:5;55105:11;55080:23;55076:41;55073:52;55066:5;55063:63;55053:73;;54694:450;;;;:::o;66058:158::-;;;;;:::o;29717:132::-;29792:12;:10;:12::i;:::-;29781:23;;:7;:5;:7::i;:::-;:23;;;29773:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29717:132::o;46495:296::-;46550:7;46757:15;:13;:15::i;:::-;46741:13;;:31;46734:38;;46495:296;:::o;74325:112::-;74402:27;74412:2;74416:8;74402:27;;;;;;;;;;;;:9;:27::i;:::-;74325:112;;:::o;30819:191::-;30893:16;30912:6;;;;;;;;;;;30893:25;;30938:8;30929:6;;:17;;;;;;;;;;;;;;;;;;30993:8;30962:40;;30983:8;30962:40;;;;;;;;;;;;30882:128;30819:191;:::o;66656:716::-;66819:4;66865:2;66840:45;;;66886:19;:17;:19::i;:::-;66907:4;66913:7;66922:5;66840:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;66836:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67140:1;67123:6;:13;:18;67119:235;;67169:40;;;;;;;;;;;;;;67119:235;67312:6;67306:13;67297:6;67293:2;67289:15;67282:38;66836:529;67009:54;;;66999:64;;;:6;:64;;;;66992:71;;;66656:716;;;;;;:::o;83258:101::-;83310:13;83343:8;83336:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83258:101;:::o;25530:716::-;25586:13;25637:14;25674:1;25654:17;25665:5;25654:10;:17::i;:::-;:21;25637:38;;25690:20;25724:6;25713:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25690:41;;25746:11;25875:6;25871:2;25867:15;25859:6;25855:28;25848:35;;25912:288;25919:4;25912:288;;;25944:5;;;;;;;;26086:8;26081:2;26074:5;26070:14;26065:30;26060:3;26052:44;26142:2;26133:11;;;;;;:::i;:::-;;;;;26176:1;26167:5;:10;25912:288;26163:21;25912:288;26221:6;26214:13;;;;;25530:716;;;:::o;79503:147::-;79640:6;79503:147;;;;;:::o;28103:98::-;28156:7;28183:10;28176:17;;28103:98;:::o;73552:689::-;73683:19;73689:2;73693:8;73683:5;:19::i;:::-;73762:1;73744:2;:14;;;:19;73740:483;;73784:11;73798:13;;73784:27;;73830:13;73852:8;73846:3;:14;73830:30;;73879:233;73910:62;73949:1;73953:2;73957:7;;;;;;73966:5;73910:30;:62::i;:::-;73905:167;;74008:40;;;;;;;;;;;;;;73905:167;74107:3;74099:5;:11;73879:233;;74194:3;74177:13;;:20;74173:34;;74199:8;;;74173:34;73765:458;;73740:483;73552:689;;;:::o;22396:922::-;22449:7;22469:14;22486:1;22469:18;;22536:6;22527:5;:15;22523:102;;22572:6;22563:15;;;;;;:::i;:::-;;;;;22607:2;22597:12;;;;22523:102;22652:6;22643:5;:15;22639:102;;22688:6;22679:15;;;;;;:::i;:::-;;;;;22723:2;22713:12;;;;22639:102;22768:6;22759:5;:15;22755:102;;22804:6;22795:15;;;;;;:::i;:::-;;;;;22839:2;22829:12;;;;22755:102;22884:5;22875;:14;22871:99;;22919:5;22910:14;;;;;;:::i;:::-;;;;;22953:1;22943:11;;;;22871:99;22997:5;22988;:14;22984:99;;23032:5;23023:14;;;;;;:::i;:::-;;;;;23066:1;23056:11;;;;22984:99;23110:5;23101;:14;23097:99;;23145:5;23136:14;;;;;;:::i;:::-;;;;;23179:1;23169:11;;;;23097:99;23223:5;23214;:14;23210:66;;23259:1;23249:11;;;;23210:66;23304:6;23297:13;;;22396:922;;;:::o;67834:2966::-;67907:20;67930:13;;67907:36;;67970:1;67958:8;:13;67954:44;;67980:18;;;;;;;;;;;;;;67954:44;68011:61;68041:1;68045:2;68049:12;68063:8;68011:21;:61::i;:::-;68555:1;41555:2;68525:1;:26;;68524:32;68512:8;:45;68486:18;:22;68505:2;68486:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;68834:139;68871:2;68925:33;68948:1;68952:2;68956:1;68925:14;:33::i;:::-;68892:30;68913:8;68892:20;:30::i;:::-;:66;68834:18;:139::i;:::-;68800:17;:31;68818:12;68800:31;;;;;;;;;;;:173;;;;68990:16;69021:11;69050:8;69035:12;:23;69021:37;;69571:16;69567:2;69563:25;69551:37;;69943:12;69903:8;69862:1;69800:25;69741:1;69680;69653:335;70314:1;70300:12;70296:20;70254:346;70355:3;70346:7;70343:16;70254:346;;70573:7;70563:8;70560:1;70533:25;70530:1;70527;70522:59;70408:1;70399:7;70395:15;70384:26;;70254:346;;;70258:77;70645:1;70633:8;:13;70629:45;;70655:19;;;;;;;;;;;;;;70629:45;70707:3;70691:13;:19;;;;68260:2462;;70732:60;70761:1;70765:2;70769:12;70783:8;70732:20;:60::i;:::-;67896:2904;67834:2966;;:::o;55246:324::-;55316:14;55549:1;55539:8;55536:15;55510:24;55506:46;55496:56;;55246: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:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:171::-;12743:23;12739:1;12731:6;12727:14;12720:47;12603:171;:::o;12780:366::-;12922:3;12943:67;13007:2;13002:3;12943:67;:::i;:::-;12936:74;;13019:93;13108:3;13019:93;:::i;:::-;13137:2;13132:3;13128:12;13121:19;;12780:366;;;:::o;13152:419::-;13318:4;13356:2;13345:9;13341:18;13333:26;;13405:9;13399:4;13395:20;13391:1;13380:9;13376:17;13369:47;13433:131;13559:4;13433:131;:::i;:::-;13425:139;;13152:419;;;:::o;13577:141::-;13626:4;13649:3;13641:11;;13672:3;13669:1;13662:14;13706:4;13703:1;13693:18;13685:26;;13577:141;;;:::o;13724:93::-;13761:6;13808:2;13803;13796:5;13792:14;13788:23;13778:33;;13724:93;;;:::o;13823:107::-;13867:8;13917:5;13911:4;13907:16;13886:37;;13823:107;;;;:::o;13936:393::-;14005:6;14055:1;14043:10;14039:18;14078:97;14108:66;14097:9;14078:97;:::i;:::-;14196:39;14226:8;14215:9;14196:39;:::i;:::-;14184:51;;14268:4;14264:9;14257:5;14253:21;14244:30;;14317:4;14307:8;14303:19;14296:5;14293:30;14283:40;;14012:317;;13936:393;;;;;:::o;14335:60::-;14363:3;14384:5;14377:12;;14335:60;;;:::o;14401:142::-;14451:9;14484:53;14502:34;14511:24;14529:5;14511:24;:::i;:::-;14502:34;:::i;:::-;14484:53;:::i;:::-;14471:66;;14401:142;;;:::o;14549:75::-;14592:3;14613:5;14606:12;;14549:75;;;:::o;14630:269::-;14740:39;14771:7;14740:39;:::i;:::-;14801:91;14850:41;14874:16;14850:41;:::i;:::-;14842:6;14835:4;14829:11;14801:91;:::i;:::-;14795:4;14788:105;14706:193;14630:269;;;:::o;14905:73::-;14950:3;14905:73;:::o;14984:189::-;15061:32;;:::i;:::-;15102:65;15160:6;15152;15146:4;15102:65;:::i;:::-;15037:136;14984:189;;:::o;15179:186::-;15239:120;15256:3;15249:5;15246:14;15239:120;;;15310:39;15347:1;15340:5;15310:39;:::i;:::-;15283:1;15276:5;15272:13;15263:22;;15239:120;;;15179:186;;:::o;15371:543::-;15472:2;15467:3;15464:11;15461:446;;;15506:38;15538:5;15506:38;:::i;:::-;15590:29;15608:10;15590:29;:::i;:::-;15580:8;15576:44;15773:2;15761:10;15758:18;15755:49;;;15794:8;15779:23;;15755:49;15817:80;15873:22;15891:3;15873:22;:::i;:::-;15863:8;15859:37;15846:11;15817:80;:::i;:::-;15476:431;;15461:446;15371:543;;;:::o;15920:117::-;15974:8;16024:5;16018:4;16014:16;15993:37;;15920:117;;;;:::o;16043:169::-;16087:6;16120:51;16168:1;16164:6;16156:5;16153:1;16149:13;16120:51;:::i;:::-;16116:56;16201:4;16195;16191:15;16181:25;;16094:118;16043:169;;;;:::o;16217:295::-;16293:4;16439:29;16464:3;16458:4;16439:29;:::i;:::-;16431:37;;16501:3;16498:1;16494:11;16488:4;16485:21;16477:29;;16217:295;;;;:::o;16517:1395::-;16634:37;16667:3;16634:37;:::i;:::-;16736:18;16728:6;16725:30;16722:56;;;16758:18;;:::i;:::-;16722:56;16802:38;16834:4;16828:11;16802:38;:::i;:::-;16887:67;16947:6;16939;16933:4;16887:67;:::i;:::-;16981:1;17005:4;16992:17;;17037:2;17029:6;17026:14;17054:1;17049:618;;;;17711:1;17728:6;17725:77;;;17777:9;17772:3;17768:19;17762:26;17753:35;;17725:77;17828:67;17888:6;17881:5;17828:67;:::i;:::-;17822:4;17815:81;17684:222;17019:887;;17049:618;17101:4;17097:9;17089:6;17085:22;17135:37;17167:4;17135:37;:::i;:::-;17194:1;17208:208;17222:7;17219:1;17216:14;17208:208;;;17301:9;17296:3;17292:19;17286:26;17278:6;17271:42;17352:1;17344:6;17340:14;17330:24;;17399:2;17388:9;17384:18;17371:31;;17245:4;17242:1;17238:12;17233:17;;17208:208;;;17444:6;17435:7;17432:19;17429:179;;;17502:9;17497:3;17493:19;17487:26;17545:48;17587:4;17579:6;17575:17;17564:9;17545:48;:::i;:::-;17537:6;17530:64;17452:156;17429:179;17654:1;17650;17642:6;17638:14;17634:22;17628:4;17621:36;17056:611;;;17019:887;;16609:1303;;;16517:1395;;:::o;17918:180::-;17966:77;17963:1;17956:88;18063:4;18060:1;18053:15;18087:4;18084:1;18077:15;18104:191;18144:3;18163:20;18181:1;18163:20;:::i;:::-;18158:25;;18197:20;18215:1;18197:20;:::i;:::-;18192:25;;18240:1;18237;18233:9;18226:16;;18261:3;18258:1;18255:10;18252:36;;;18268:18;;:::i;:::-;18252:36;18104:191;;;;:::o;18301:158::-;18441:10;18437:1;18429:6;18425:14;18418:34;18301:158;:::o;18465:365::-;18607:3;18628:66;18692:1;18687:3;18628:66;:::i;:::-;18621:73;;18703:93;18792:3;18703:93;:::i;:::-;18821:2;18816:3;18812:12;18805:19;;18465:365;;;:::o;18836:419::-;19002:4;19040:2;19029:9;19025:18;19017:26;;19089:9;19083:4;19079:20;19075:1;19064:9;19060:17;19053:47;19117:131;19243:4;19117:131;:::i;:::-;19109:139;;18836:419;;;:::o;19261:176::-;19401:28;19397:1;19389:6;19385:14;19378:52;19261:176;:::o;19443:366::-;19585:3;19606:67;19670:2;19665:3;19606:67;:::i;:::-;19599:74;;19682:93;19771:3;19682:93;:::i;:::-;19800:2;19795:3;19791:12;19784:19;;19443:366;;;:::o;19815:419::-;19981:4;20019:2;20008:9;20004:18;19996:26;;20068:9;20062:4;20058:20;20054:1;20043:9;20039:17;20032:47;20096:131;20222:4;20096:131;:::i;:::-;20088:139;;19815:419;;;:::o;20240:164::-;20380:16;20376:1;20368:6;20364:14;20357:40;20240:164;:::o;20410:366::-;20552:3;20573:67;20637:2;20632:3;20573:67;:::i;:::-;20566:74;;20649:93;20738:3;20649:93;:::i;:::-;20767:2;20762:3;20758:12;20751:19;;20410:366;;;:::o;20782:419::-;20948:4;20986:2;20975:9;20971:18;20963:26;;21035:9;21029:4;21025:20;21021:1;21010:9;21006:17;20999:47;21063:131;21189:4;21063:131;:::i;:::-;21055:139;;20782:419;;;:::o;21207:194::-;21247:4;21267:20;21285:1;21267:20;:::i;:::-;21262:25;;21301:20;21319:1;21301:20;:::i;:::-;21296:25;;21345:1;21342;21338:9;21330:17;;21369:1;21363:4;21360:11;21357:37;;;21374:18;;:::i;:::-;21357:37;21207:194;;;;:::o;21407:170::-;21547:22;21543:1;21535:6;21531:14;21524:46;21407:170;:::o;21583:366::-;21725:3;21746:67;21810:2;21805:3;21746:67;:::i;:::-;21739:74;;21822:93;21911:3;21822:93;:::i;:::-;21940:2;21935:3;21931:12;21924:19;;21583:366;;;:::o;21955:419::-;22121:4;22159:2;22148:9;22144:18;22136:26;;22208:9;22202:4;22198:20;22194:1;22183:9;22179:17;22172:47;22236:131;22362:4;22236:131;:::i;:::-;22228:139;;21955:419;;;:::o;22380:410::-;22420:7;22443:20;22461:1;22443:20;:::i;:::-;22438:25;;22477:20;22495:1;22477:20;:::i;:::-;22472:25;;22532:1;22529;22525:9;22554:30;22572:11;22554:30;:::i;:::-;22543:41;;22733:1;22724:7;22720:15;22717:1;22714:22;22694:1;22687:9;22667:83;22644:139;;22763:18;;:::i;:::-;22644:139;22428:362;22380:410;;;;:::o;22796:221::-;22936:34;22932:1;22924:6;22920:14;22913:58;23005:4;23000:2;22992:6;22988:15;22981:29;22796:221;:::o;23023:366::-;23165:3;23186:67;23250:2;23245:3;23186:67;:::i;:::-;23179:74;;23262:93;23351:3;23262:93;:::i;:::-;23380:2;23375:3;23371:12;23364:19;;23023:366;;;:::o;23395:419::-;23561:4;23599:2;23588:9;23584:18;23576:26;;23648:9;23642:4;23638:20;23634:1;23623:9;23619:17;23612:47;23676:131;23802:4;23676:131;:::i;:::-;23668:139;;23395:419;;;:::o;23820:234::-;23960:34;23956:1;23948:6;23944:14;23937:58;24029:17;24024:2;24016:6;24012:15;24005:42;23820:234;:::o;24060:366::-;24202:3;24223:67;24287:2;24282:3;24223:67;:::i;:::-;24216:74;;24299:93;24388:3;24299:93;:::i;:::-;24417:2;24412:3;24408:12;24401:19;;24060:366;;;:::o;24432:419::-;24598:4;24636:2;24625:9;24621:18;24613:26;;24685:9;24679:4;24675:20;24671:1;24660:9;24656:17;24649:47;24713:131;24839:4;24713:131;:::i;:::-;24705:139;;24432:419;;;:::o;24857:148::-;24959:11;24996:3;24981:18;;24857:148;;;;:::o;25011:390::-;25117:3;25145:39;25178:5;25145:39;:::i;:::-;25200:89;25282:6;25277:3;25200:89;:::i;:::-;25193:96;;25298:65;25356:6;25351:3;25344:4;25337:5;25333:16;25298:65;:::i;:::-;25388:6;25383:3;25379:16;25372:23;;25121:280;25011:390;;;;:::o;25407:435::-;25587:3;25609:95;25700:3;25691:6;25609:95;:::i;:::-;25602:102;;25721:95;25812:3;25803:6;25721:95;:::i;:::-;25714:102;;25833:3;25826:10;;25407:435;;;;;:::o;25848:225::-;25988:34;25984:1;25976:6;25972:14;25965:58;26057:8;26052:2;26044:6;26040:15;26033:33;25848:225;:::o;26079:366::-;26221:3;26242:67;26306:2;26301:3;26242:67;:::i;:::-;26235:74;;26318:93;26407:3;26318:93;:::i;:::-;26436:2;26431:3;26427:12;26420:19;;26079:366;;;:::o;26451:419::-;26617:4;26655:2;26644:9;26640:18;26632:26;;26704:9;26698:4;26694:20;26690:1;26679:9;26675:17;26668:47;26732:131;26858:4;26732:131;:::i;:::-;26724:139;;26451:419;;;:::o;26876:182::-;27016:34;27012:1;27004:6;27000:14;26993:58;26876:182;:::o;27064:366::-;27206:3;27227:67;27291:2;27286:3;27227:67;:::i;:::-;27220:74;;27303:93;27392:3;27303:93;:::i;:::-;27421:2;27416:3;27412:12;27405:19;;27064:366;;;:::o;27436:419::-;27602:4;27640:2;27629:9;27625:18;27617:26;;27689:9;27683:4;27679:20;27675:1;27664:9;27660:17;27653:47;27717:131;27843:4;27717:131;:::i;:::-;27709:139;;27436:419;;;:::o;27861:98::-;27912:6;27946:5;27940:12;27930:22;;27861:98;;;:::o;27965:168::-;28048:11;28082:6;28077:3;28070:19;28122:4;28117:3;28113:14;28098:29;;27965:168;;;;:::o;28139:373::-;28225:3;28253:38;28285:5;28253:38;:::i;:::-;28307:70;28370:6;28365:3;28307:70;:::i;:::-;28300:77;;28386:65;28444:6;28439:3;28432:4;28425:5;28421:16;28386:65;:::i;:::-;28476:29;28498:6;28476:29;:::i;:::-;28471:3;28467:39;28460:46;;28229:283;28139:373;;;;:::o;28518:640::-;28713:4;28751:3;28740:9;28736:19;28728:27;;28765:71;28833:1;28822:9;28818:17;28809:6;28765:71;:::i;:::-;28846:72;28914:2;28903:9;28899:18;28890:6;28846:72;:::i;:::-;28928;28996:2;28985:9;28981:18;28972:6;28928:72;:::i;:::-;29047:9;29041:4;29037:20;29032:2;29021:9;29017:18;29010:48;29075:76;29146:4;29137:6;29075:76;:::i;:::-;29067:84;;28518:640;;;;;;;:::o;29164:141::-;29220:5;29251:6;29245:13;29236:22;;29267:32;29293:5;29267:32;:::i;:::-;29164:141;;;;:::o;29311:349::-;29380:6;29429:2;29417:9;29408:7;29404:23;29400:32;29397:119;;;29435:79;;:::i;:::-;29397:119;29555:1;29580:63;29635:7;29626:6;29615:9;29611:22;29580:63;:::i;:::-;29570:73;;29526:127;29311:349;;;;:::o;29666:180::-;29714:77;29711:1;29704:88;29811:4;29808:1;29801:15;29835:4;29832:1;29825:15
Swarm Source
ipfs://ce3e51deb0cf6c1ad258e7920da42b899ee47a74f7c498cab9f1c59b53885b76
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.