ERC-721
Overview
Max Total Supply
588 GUCHI
Holders
85
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GUCHILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
YAMAGUCHI
Compiler Version
v0.8.22+commit.4fc1097e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-12-09 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.9.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) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 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 256, 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 << 3) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.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 `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string( abi.encodePacked( value < 0 ? "-" : "", toString(SignedMath.abs(value)) ) ); } /** * @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); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // 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.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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) } } } pragma solidity ^0.8.16; contract YAMAGUCHI is ERC721A, Ownable { string public baseTokenUri; uint256 public price = 0.0022 ether; uint256 public maxSupply = 900; uint256 public maxPerTx = 5; bool public sale; constructor(string memory __baseTokenUri) payable ERC721A("YAMAGUCHI", "GUCHI") { baseTokenUri = __baseTokenUri; } function mint(uint256 _amount) external payable { if (!sale) revert SalePaused(); if (_amount > maxPerTx) revert MaxPerTxExceeded(); if (totalSupply() + _amount > maxSupply) revert MaxSupplyExceeded(); if (msg.value < price * _amount) revert InsufficientFunds(); _mint(msg.sender, _amount); } function airdrop(uint256 _amount, address _to) external onlyOwner { _mint(_to, _amount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); return string(abi.encodePacked(baseTokenUri, _toString(tokenId), ".json")); } function _startTokenId() internal pure override returns (uint256) { return 1; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenUri; } function setBaseTokenUri(string calldata __baseTokenUri) external onlyOwner { baseTokenUri = __baseTokenUri; } function setPrice(uint256 _price) external onlyOwner { price = _price; } function setMaxPerTx(uint256 _maxPerTx) external onlyOwner { maxPerTx = _maxPerTx; } function setSupply(uint256 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function startSale() external onlyOwner { sale = !sale; } function withdraw() public onlyOwner { payable(msg.sender).transfer(address(this).balance); } error SalePaused(); error MaxSupplyExceeded(); error MaxPerTxExceeded(); error InsufficientFunds(); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"__baseTokenUri","type":"string"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InsufficientFunds","type":"error"},{"inputs":[],"name":"MaxPerTxExceeded","type":"error"},{"inputs":[],"name":"MaxSupplyExceeded","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":"SalePaused","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseTokenUri","type":"string"}],"name":"setBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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
60806040526607d0e36a818000600a55610384600b556005600c5560405162002e8e38038062002e8e83398181016040528101906200003f919062000376565b6040518060400160405280600981526020017f59414d41475543484900000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f47554348490000000000000000000000000000000000000000000000000000008152508160029081620000bc9190620005fc565b508060039081620000ce9190620005fc565b50620000df6200011f60201b60201c565b5f81905550505062000106620000fa6200012760201b60201c565b6200012e60201b60201c565b8060099081620001179190620005fc565b5050620006e0565b5f6001905090565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b62000252826200020a565b810181811067ffffffffffffffff821117156200027457620002736200021a565b5b80604052505050565b5f62000288620001f1565b905062000296828262000247565b919050565b5f67ffffffffffffffff821115620002b857620002b76200021a565b5b620002c3826200020a565b9050602081019050919050565b5f5b83811015620002ef578082015181840152602081019050620002d2565b5f8484015250505050565b5f620003106200030a846200029b565b6200027d565b9050828152602081018484840111156200032f576200032e62000206565b5b6200033c848285620002d0565b509392505050565b5f82601f8301126200035b576200035a62000202565b5b81516200036d848260208601620002fa565b91505092915050565b5f602082840312156200038e576200038d620001fa565b5b5f82015167ffffffffffffffff811115620003ae57620003ad620001fe565b5b620003bc8482850162000344565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200041457607f821691505b6020821081036200042a5762000429620003cf565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200048e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000451565b6200049a868362000451565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004e4620004de620004d884620004b2565b620004bb565b620004b2565b9050919050565b5f819050919050565b620004ff83620004c4565b620005176200050e82620004eb565b8484546200045d565b825550505050565b5f90565b6200052d6200051f565b6200053a818484620004f4565b505050565b5b818110156200056157620005555f8262000523565b60018101905062000540565b5050565b601f821115620005b0576200057a8162000430565b620005858462000442565b8101602085101562000595578190505b620005ad620005a48562000442565b8301826200053f565b50505b505050565b5f82821c905092915050565b5f620005d25f1984600802620005b5565b1980831691505092915050565b5f620005ec8383620005c1565b9150826002028217905092915050565b6200060782620003c5565b67ffffffffffffffff8111156200062357620006226200021a565b5b6200062f8254620003fc565b6200063c82828562000565565b5f60209050601f83116001811462000672575f84156200065d578287015190505b620006698582620005df565b865550620006d8565b601f198416620006828662000430565b5f5b82811015620006ab5784890151825560018201915060208501945060208101905062000684565b86831015620006cb5784890151620006c7601f891682620005c1565b8355505b6001600288020188555050505b505050505050565b6127a080620006ee5f395ff3fe6080604052600436106101cc575f3560e01c806391b7f5ed116100f6578063b88d4fde11610094578063d5abeb0111610063578063d5abeb01146105e0578063e985e9c51461060a578063f2fde38b14610646578063f968adbe1461066e576101cc565b8063b88d4fde14610538578063bc63f02e14610554578063c6f6f2161461057c578063c87b56dd146105a4576101cc565b8063a035b1fe116100d0578063a035b1fe146104b4578063a0712d68146104de578063a22cb465146104fa578063b66a0e5d14610522576101cc565b806391b7f5ed1461043a57806395652cfa1461046257806395d89b411461048a576101cc565b80633ccfd60b1161016e57806370a082311161013d57806370a0823114610394578063715018a6146103d05780637a0101a2146103e65780638da5cb5b14610410576101cc565b80633ccfd60b146102fc57806342842e0e146103125780636352211e1461032e5780636ad1fe021461036a576101cc565b8063095ea7b3116101aa578063095ea7b31461027257806318160ddd1461028e57806323b872dd146102b85780633b4c4b25146102d4576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f19190611af4565b610698565b6040516102039190611b39565b60405180910390f35b348015610217575f80fd5b50610220610729565b60405161022d9190611bdc565b60405180910390f35b348015610241575f80fd5b5061025c60048036038101906102579190611c2f565b6107b9565b6040516102699190611c99565b60405180910390f35b61028c60048036038101906102879190611cdc565b610833565b005b348015610299575f80fd5b506102a2610972565b6040516102af9190611d29565b60405180910390f35b6102d260048036038101906102cd9190611d42565b610987565b005b3480156102df575f80fd5b506102fa60048036038101906102f59190611c2f565b610c95565b005b348015610307575f80fd5b50610310610ca7565b005b61032c60048036038101906103279190611d42565b610cf5565b005b348015610339575f80fd5b50610354600480360381019061034f9190611c2f565b610d14565b6040516103619190611c99565b60405180910390f35b348015610375575f80fd5b5061037e610d25565b60405161038b9190611b39565b60405180910390f35b34801561039f575f80fd5b506103ba60048036038101906103b59190611d92565b610d37565b6040516103c79190611d29565b60405180910390f35b3480156103db575f80fd5b506103e4610dec565b005b3480156103f1575f80fd5b506103fa610dff565b6040516104079190611bdc565b60405180910390f35b34801561041b575f80fd5b50610424610e8b565b6040516104319190611c99565b60405180910390f35b348015610445575f80fd5b50610460600480360381019061045b9190611c2f565b610eb3565b005b34801561046d575f80fd5b5061048860048036038101906104839190611e1e565b610ec5565b005b348015610495575f80fd5b5061049e610ee3565b6040516104ab9190611bdc565b60405180910390f35b3480156104bf575f80fd5b506104c8610f73565b6040516104d59190611d29565b60405180910390f35b6104f860048036038101906104f39190611c2f565b610f79565b005b348015610505575f80fd5b50610520600480360381019061051b9190611e93565b61109c565b005b34801561052d575f80fd5b506105366111a2565b005b610552600480360381019061054d9190611ff9565b6111d4565b005b34801561055f575f80fd5b5061057a60048036038101906105759190612079565b611246565b005b348015610587575f80fd5b506105a2600480360381019061059d9190611c2f565b61125c565b005b3480156105af575f80fd5b506105ca60048036038101906105c59190611c2f565b61126e565b6040516105d79190611bdc565b60405180910390f35b3480156105eb575f80fd5b506105f46112e1565b6040516106019190611d29565b60405180910390f35b348015610615575f80fd5b50610630600480360381019061062b91906120b7565b6112e7565b60405161063d9190611b39565b60405180910390f35b348015610651575f80fd5b5061066c60048036038101906106679190611d92565b611375565b005b348015610679575f80fd5b506106826113f7565b60405161068f9190611d29565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107225750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073890612122565b80601f016020809104026020016040519081016040528092919081815260200182805461076490612122565b80156107af5780601f10610786576101008083540402835291602001916107af565b820191905f5260205f20905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b5f6107c3826113fd565b6107f9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61083d82610d14565b90508073ffffffffffffffffffffffffffffffffffffffff1661085e611457565b73ffffffffffffffffffffffffffffffffffffffff16146108c15761088a81610885611457565b6112e7565b6108c0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f61097b61145e565b6001545f540303905090565b5f61099182611466565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610a0384611529565b91509150610a198187610a14611457565b61154c565b610a6557610a2e86610a29611457565b6112e7565b610a64576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610aca576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad7868686600161158f565b8015610ae1575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610ba985610b85888887611595565b7c0200000000000000000000000000000000000000000000000000000000176115bc565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610c25575f6001850190505f60045f8381526020019081526020015f205403610c23575f548114610c22578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c8d86868660016115e6565b505050505050565b610c9d6115ec565b80600b8190555050565b610caf6115ec565b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610cf2573d5f803e3d5ffd5b50565b610d0f83838360405180602001604052805f8152506111d4565b505050565b5f610d1e82611466565b9050919050565b600d5f9054906101000a900460ff1681565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d9d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610df46115ec565b610dfd5f61166a565b565b60098054610e0c90612122565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3890612122565b8015610e835780601f10610e5a57610100808354040283529160200191610e83565b820191905f5260205f20905b815481529060010190602001808311610e6657829003601f168201915b505050505081565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ebb6115ec565b80600a8190555050565b610ecd6115ec565b818160099182610ede9291906122f9565b505050565b606060038054610ef290612122565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1e90612122565b8015610f695780601f10610f4057610100808354040283529160200191610f69565b820191905f5260205f20905b815481529060010190602001808311610f4c57829003601f168201915b5050505050905090565b600a5481565b600d5f9054906101000a900460ff16610fbe576040517f8a98cbd000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115610ffa576040517f845d1a2200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b5481611006610972565b61101091906123f3565b1115611048576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a546110569190612426565b34101561108f576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611099338261172d565b50565b8060075f6110a8611457565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611151611457565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111969190611b39565b60405180910390a35050565b6111aa6115ec565b600d5f9054906101000a900460ff1615600d5f6101000a81548160ff021916908315150217905550565b6111df848484610987565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461124057611209848484846118d6565b61123f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61124e6115ec565b611258818361172d565b5050565b6112646115ec565b80600c8190555050565b6060611279826113fd565b6112af576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60096112ba83611a21565b6040516020016112cb92919061256b565b6040516020818303038152906040529050919050565b600b5481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61137d6115ec565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290612609565b60405180910390fd5b6113f48161166a565b50565b600c5481565b5f8161140761145e565b1115801561141557505f5482105b801561145057505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f808290508061147461145e565b116114f2575f548110156114f1575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036114ef575b5f81036114e55760045f836001900393508381526020019081526020015f205490506114be565b8092505050611524565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86115ab868684611a70565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6115f4611a78565b73ffffffffffffffffffffffffffffffffffffffff16611612610e8b565b73ffffffffffffffffffffffffffffffffffffffff1614611668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165f90612671565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805490505f820361176b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117775f84838561158f565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506117e9836117da5f865f611595565b6117e385611a7f565b176115bc565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146118835780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460018101905061184a565b505f82036118bd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506118d15f8483856115e6565b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118fb611457565b8786866040518563ffffffff1660e01b815260040161191d94939291906126e1565b6020604051808303815f875af192505050801561195857506040513d601f19601f82011682018060405250810190611955919061273f565b60015b6119ce573d805f8114611986576040519150601f19603f3d011682016040523d82523d5f602084013e61198b565b606091505b505f8151036119c6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391505f825281835b600115611a5b57600184039350600a81066030018453600a8104905080611a39575b50828103602084039350808452505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ad381611a9f565b8114611add575f80fd5b50565b5f81359050611aee81611aca565b92915050565b5f60208284031215611b0957611b08611a97565b5b5f611b1684828501611ae0565b91505092915050565b5f8115159050919050565b611b3381611b1f565b82525050565b5f602082019050611b4c5f830184611b2a565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611b89578082015181840152602081019050611b6e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611bae82611b52565b611bb88185611b5c565b9350611bc8818560208601611b6c565b611bd181611b94565b840191505092915050565b5f6020820190508181035f830152611bf48184611ba4565b905092915050565b5f819050919050565b611c0e81611bfc565b8114611c18575f80fd5b50565b5f81359050611c2981611c05565b92915050565b5f60208284031215611c4457611c43611a97565b5b5f611c5184828501611c1b565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c8382611c5a565b9050919050565b611c9381611c79565b82525050565b5f602082019050611cac5f830184611c8a565b92915050565b611cbb81611c79565b8114611cc5575f80fd5b50565b5f81359050611cd681611cb2565b92915050565b5f8060408385031215611cf257611cf1611a97565b5b5f611cff85828601611cc8565b9250506020611d1085828601611c1b565b9150509250929050565b611d2381611bfc565b82525050565b5f602082019050611d3c5f830184611d1a565b92915050565b5f805f60608486031215611d5957611d58611a97565b5b5f611d6686828701611cc8565b9350506020611d7786828701611cc8565b9250506040611d8886828701611c1b565b9150509250925092565b5f60208284031215611da757611da6611a97565b5b5f611db484828501611cc8565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611dde57611ddd611dbd565b5b8235905067ffffffffffffffff811115611dfb57611dfa611dc1565b5b602083019150836001820283011115611e1757611e16611dc5565b5b9250929050565b5f8060208385031215611e3457611e33611a97565b5b5f83013567ffffffffffffffff811115611e5157611e50611a9b565b5b611e5d85828601611dc9565b92509250509250929050565b611e7281611b1f565b8114611e7c575f80fd5b50565b5f81359050611e8d81611e69565b92915050565b5f8060408385031215611ea957611ea8611a97565b5b5f611eb685828601611cc8565b9250506020611ec785828601611e7f565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611f0b82611b94565b810181811067ffffffffffffffff82111715611f2a57611f29611ed5565b5b80604052505050565b5f611f3c611a8e565b9050611f488282611f02565b919050565b5f67ffffffffffffffff821115611f6757611f66611ed5565b5b611f7082611b94565b9050602081019050919050565b828183375f83830152505050565b5f611f9d611f9884611f4d565b611f33565b905082815260208101848484011115611fb957611fb8611ed1565b5b611fc4848285611f7d565b509392505050565b5f82601f830112611fe057611fdf611dbd565b5b8135611ff0848260208601611f8b565b91505092915050565b5f805f806080858703121561201157612010611a97565b5b5f61201e87828801611cc8565b945050602061202f87828801611cc8565b935050604061204087828801611c1b565b925050606085013567ffffffffffffffff81111561206157612060611a9b565b5b61206d87828801611fcc565b91505092959194509250565b5f806040838503121561208f5761208e611a97565b5b5f61209c85828601611c1b565b92505060206120ad85828601611cc8565b9150509250929050565b5f80604083850312156120cd576120cc611a97565b5b5f6120da85828601611cc8565b92505060206120eb85828601611cc8565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061213957607f821691505b60208210810361214c5761214b6120f5565b5b50919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026121b87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261217d565b6121c2868361217d565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6121fd6121f86121f384611bfc565b6121da565b611bfc565b9050919050565b5f819050919050565b612216836121e3565b61222a61222282612204565b848454612189565b825550505050565b5f90565b61223e612232565b61224981848461220d565b505050565b5b8181101561226c576122615f82612236565b60018101905061224f565b5050565b601f8211156122b1576122828161215c565b61228b8461216e565b8101602085101561229a578190505b6122ae6122a68561216e565b83018261224e565b50505b505050565b5f82821c905092915050565b5f6122d15f19846008026122b6565b1980831691505092915050565b5f6122e983836122c2565b9150826002028217905092915050565b6123038383612152565b67ffffffffffffffff81111561231c5761231b611ed5565b5b6123268254612122565b612331828285612270565b5f601f83116001811461235e575f841561234c578287013590505b61235685826122de565b8655506123bd565b601f19841661236c8661215c565b5f5b828110156123935784890135825560018201915060208501945060208101905061236e565b868310156123b057848901356123ac601f8916826122c2565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6123fd82611bfc565b915061240883611bfc565b92508282019050808211156124205761241f6123c6565b5b92915050565b5f61243082611bfc565b915061243b83611bfc565b925082820261244981611bfc565b915082820484148315176124605761245f6123c6565b5b5092915050565b5f81905092915050565b5f815461247d81612122565b6124878186612467565b9450600182165f81146124a157600181146124b6576124e8565b60ff19831686528115158202860193506124e8565b6124bf8561215c565b5f5b838110156124e0578154818901526001820191506020810190506124c1565b838801955050505b50505092915050565b5f6124fb82611b52565b6125058185612467565b9350612515818560208601611b6c565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612555600583612467565b915061256082612521565b600582019050919050565b5f6125768285612471565b915061258282846124f1565b915061258d82612549565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6125f3602683611b5c565b91506125fe82612599565b604082019050919050565b5f6020820190508181035f830152612620816125e7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61265b602083611b5c565b915061266682612627565b602082019050919050565b5f6020820190508181035f8301526126888161264f565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6126b38261268f565b6126bd8185612699565b93506126cd818560208601611b6c565b6126d681611b94565b840191505092915050565b5f6080820190506126f45f830187611c8a565b6127016020830186611c8a565b61270e6040830185611d1a565b818103606083015261272081846126a9565b905095945050505050565b5f8151905061273981611aca565b92915050565b5f6020828403121561275457612753611a97565b5b5f6127618482850161272b565b9150509291505056fea2646970667358221220fd7ba74d5cdc19e8bc289cc8515083c931dba21f2a064df1b3599de510dd88d164736f6c6343000816003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65746f4a70394d797776755343343362567862517456316363656d7a7343736965793173735a3171394c6b712f00000000000000000000
Deployed Bytecode
0x6080604052600436106101cc575f3560e01c806391b7f5ed116100f6578063b88d4fde11610094578063d5abeb0111610063578063d5abeb01146105e0578063e985e9c51461060a578063f2fde38b14610646578063f968adbe1461066e576101cc565b8063b88d4fde14610538578063bc63f02e14610554578063c6f6f2161461057c578063c87b56dd146105a4576101cc565b8063a035b1fe116100d0578063a035b1fe146104b4578063a0712d68146104de578063a22cb465146104fa578063b66a0e5d14610522576101cc565b806391b7f5ed1461043a57806395652cfa1461046257806395d89b411461048a576101cc565b80633ccfd60b1161016e57806370a082311161013d57806370a0823114610394578063715018a6146103d05780637a0101a2146103e65780638da5cb5b14610410576101cc565b80633ccfd60b146102fc57806342842e0e146103125780636352211e1461032e5780636ad1fe021461036a576101cc565b8063095ea7b3116101aa578063095ea7b31461027257806318160ddd1461028e57806323b872dd146102b85780633b4c4b25146102d4576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f19190611af4565b610698565b6040516102039190611b39565b60405180910390f35b348015610217575f80fd5b50610220610729565b60405161022d9190611bdc565b60405180910390f35b348015610241575f80fd5b5061025c60048036038101906102579190611c2f565b6107b9565b6040516102699190611c99565b60405180910390f35b61028c60048036038101906102879190611cdc565b610833565b005b348015610299575f80fd5b506102a2610972565b6040516102af9190611d29565b60405180910390f35b6102d260048036038101906102cd9190611d42565b610987565b005b3480156102df575f80fd5b506102fa60048036038101906102f59190611c2f565b610c95565b005b348015610307575f80fd5b50610310610ca7565b005b61032c60048036038101906103279190611d42565b610cf5565b005b348015610339575f80fd5b50610354600480360381019061034f9190611c2f565b610d14565b6040516103619190611c99565b60405180910390f35b348015610375575f80fd5b5061037e610d25565b60405161038b9190611b39565b60405180910390f35b34801561039f575f80fd5b506103ba60048036038101906103b59190611d92565b610d37565b6040516103c79190611d29565b60405180910390f35b3480156103db575f80fd5b506103e4610dec565b005b3480156103f1575f80fd5b506103fa610dff565b6040516104079190611bdc565b60405180910390f35b34801561041b575f80fd5b50610424610e8b565b6040516104319190611c99565b60405180910390f35b348015610445575f80fd5b50610460600480360381019061045b9190611c2f565b610eb3565b005b34801561046d575f80fd5b5061048860048036038101906104839190611e1e565b610ec5565b005b348015610495575f80fd5b5061049e610ee3565b6040516104ab9190611bdc565b60405180910390f35b3480156104bf575f80fd5b506104c8610f73565b6040516104d59190611d29565b60405180910390f35b6104f860048036038101906104f39190611c2f565b610f79565b005b348015610505575f80fd5b50610520600480360381019061051b9190611e93565b61109c565b005b34801561052d575f80fd5b506105366111a2565b005b610552600480360381019061054d9190611ff9565b6111d4565b005b34801561055f575f80fd5b5061057a60048036038101906105759190612079565b611246565b005b348015610587575f80fd5b506105a2600480360381019061059d9190611c2f565b61125c565b005b3480156105af575f80fd5b506105ca60048036038101906105c59190611c2f565b61126e565b6040516105d79190611bdc565b60405180910390f35b3480156105eb575f80fd5b506105f46112e1565b6040516106019190611d29565b60405180910390f35b348015610615575f80fd5b50610630600480360381019061062b91906120b7565b6112e7565b60405161063d9190611b39565b60405180910390f35b348015610651575f80fd5b5061066c60048036038101906106679190611d92565b611375565b005b348015610679575f80fd5b506106826113f7565b60405161068f9190611d29565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107225750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073890612122565b80601f016020809104026020016040519081016040528092919081815260200182805461076490612122565b80156107af5780601f10610786576101008083540402835291602001916107af565b820191905f5260205f20905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b5f6107c3826113fd565b6107f9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61083d82610d14565b90508073ffffffffffffffffffffffffffffffffffffffff1661085e611457565b73ffffffffffffffffffffffffffffffffffffffff16146108c15761088a81610885611457565b6112e7565b6108c0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f61097b61145e565b6001545f540303905090565b5f61099182611466565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610a0384611529565b91509150610a198187610a14611457565b61154c565b610a6557610a2e86610a29611457565b6112e7565b610a64576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610aca576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad7868686600161158f565b8015610ae1575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610ba985610b85888887611595565b7c0200000000000000000000000000000000000000000000000000000000176115bc565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610c25575f6001850190505f60045f8381526020019081526020015f205403610c23575f548114610c22578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c8d86868660016115e6565b505050505050565b610c9d6115ec565b80600b8190555050565b610caf6115ec565b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610cf2573d5f803e3d5ffd5b50565b610d0f83838360405180602001604052805f8152506111d4565b505050565b5f610d1e82611466565b9050919050565b600d5f9054906101000a900460ff1681565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d9d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610df46115ec565b610dfd5f61166a565b565b60098054610e0c90612122565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3890612122565b8015610e835780601f10610e5a57610100808354040283529160200191610e83565b820191905f5260205f20905b815481529060010190602001808311610e6657829003601f168201915b505050505081565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ebb6115ec565b80600a8190555050565b610ecd6115ec565b818160099182610ede9291906122f9565b505050565b606060038054610ef290612122565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1e90612122565b8015610f695780601f10610f4057610100808354040283529160200191610f69565b820191905f5260205f20905b815481529060010190602001808311610f4c57829003601f168201915b5050505050905090565b600a5481565b600d5f9054906101000a900460ff16610fbe576040517f8a98cbd000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115610ffa576040517f845d1a2200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b5481611006610972565b61101091906123f3565b1115611048576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a546110569190612426565b34101561108f576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611099338261172d565b50565b8060075f6110a8611457565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611151611457565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111969190611b39565b60405180910390a35050565b6111aa6115ec565b600d5f9054906101000a900460ff1615600d5f6101000a81548160ff021916908315150217905550565b6111df848484610987565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461124057611209848484846118d6565b61123f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61124e6115ec565b611258818361172d565b5050565b6112646115ec565b80600c8190555050565b6060611279826113fd565b6112af576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60096112ba83611a21565b6040516020016112cb92919061256b565b6040516020818303038152906040529050919050565b600b5481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61137d6115ec565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290612609565b60405180910390fd5b6113f48161166a565b50565b600c5481565b5f8161140761145e565b1115801561141557505f5482105b801561145057505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f808290508061147461145e565b116114f2575f548110156114f1575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036114ef575b5f81036114e55760045f836001900393508381526020019081526020015f205490506114be565b8092505050611524565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86115ab868684611a70565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6115f4611a78565b73ffffffffffffffffffffffffffffffffffffffff16611612610e8b565b73ffffffffffffffffffffffffffffffffffffffff1614611668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165f90612671565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805490505f820361176b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117775f84838561158f565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506117e9836117da5f865f611595565b6117e385611a7f565b176115bc565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146118835780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460018101905061184a565b505f82036118bd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506118d15f8483856115e6565b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118fb611457565b8786866040518563ffffffff1660e01b815260040161191d94939291906126e1565b6020604051808303815f875af192505050801561195857506040513d601f19601f82011682018060405250810190611955919061273f565b60015b6119ce573d805f8114611986576040519150601f19603f3d011682016040523d82523d5f602084013e61198b565b606091505b505f8151036119c6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391505f825281835b600115611a5b57600184039350600a81066030018453600a8104905080611a39575b50828103602084039350808452505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ad381611a9f565b8114611add575f80fd5b50565b5f81359050611aee81611aca565b92915050565b5f60208284031215611b0957611b08611a97565b5b5f611b1684828501611ae0565b91505092915050565b5f8115159050919050565b611b3381611b1f565b82525050565b5f602082019050611b4c5f830184611b2a565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611b89578082015181840152602081019050611b6e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611bae82611b52565b611bb88185611b5c565b9350611bc8818560208601611b6c565b611bd181611b94565b840191505092915050565b5f6020820190508181035f830152611bf48184611ba4565b905092915050565b5f819050919050565b611c0e81611bfc565b8114611c18575f80fd5b50565b5f81359050611c2981611c05565b92915050565b5f60208284031215611c4457611c43611a97565b5b5f611c5184828501611c1b565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c8382611c5a565b9050919050565b611c9381611c79565b82525050565b5f602082019050611cac5f830184611c8a565b92915050565b611cbb81611c79565b8114611cc5575f80fd5b50565b5f81359050611cd681611cb2565b92915050565b5f8060408385031215611cf257611cf1611a97565b5b5f611cff85828601611cc8565b9250506020611d1085828601611c1b565b9150509250929050565b611d2381611bfc565b82525050565b5f602082019050611d3c5f830184611d1a565b92915050565b5f805f60608486031215611d5957611d58611a97565b5b5f611d6686828701611cc8565b9350506020611d7786828701611cc8565b9250506040611d8886828701611c1b565b9150509250925092565b5f60208284031215611da757611da6611a97565b5b5f611db484828501611cc8565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611dde57611ddd611dbd565b5b8235905067ffffffffffffffff811115611dfb57611dfa611dc1565b5b602083019150836001820283011115611e1757611e16611dc5565b5b9250929050565b5f8060208385031215611e3457611e33611a97565b5b5f83013567ffffffffffffffff811115611e5157611e50611a9b565b5b611e5d85828601611dc9565b92509250509250929050565b611e7281611b1f565b8114611e7c575f80fd5b50565b5f81359050611e8d81611e69565b92915050565b5f8060408385031215611ea957611ea8611a97565b5b5f611eb685828601611cc8565b9250506020611ec785828601611e7f565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611f0b82611b94565b810181811067ffffffffffffffff82111715611f2a57611f29611ed5565b5b80604052505050565b5f611f3c611a8e565b9050611f488282611f02565b919050565b5f67ffffffffffffffff821115611f6757611f66611ed5565b5b611f7082611b94565b9050602081019050919050565b828183375f83830152505050565b5f611f9d611f9884611f4d565b611f33565b905082815260208101848484011115611fb957611fb8611ed1565b5b611fc4848285611f7d565b509392505050565b5f82601f830112611fe057611fdf611dbd565b5b8135611ff0848260208601611f8b565b91505092915050565b5f805f806080858703121561201157612010611a97565b5b5f61201e87828801611cc8565b945050602061202f87828801611cc8565b935050604061204087828801611c1b565b925050606085013567ffffffffffffffff81111561206157612060611a9b565b5b61206d87828801611fcc565b91505092959194509250565b5f806040838503121561208f5761208e611a97565b5b5f61209c85828601611c1b565b92505060206120ad85828601611cc8565b9150509250929050565b5f80604083850312156120cd576120cc611a97565b5b5f6120da85828601611cc8565b92505060206120eb85828601611cc8565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061213957607f821691505b60208210810361214c5761214b6120f5565b5b50919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026121b87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261217d565b6121c2868361217d565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6121fd6121f86121f384611bfc565b6121da565b611bfc565b9050919050565b5f819050919050565b612216836121e3565b61222a61222282612204565b848454612189565b825550505050565b5f90565b61223e612232565b61224981848461220d565b505050565b5b8181101561226c576122615f82612236565b60018101905061224f565b5050565b601f8211156122b1576122828161215c565b61228b8461216e565b8101602085101561229a578190505b6122ae6122a68561216e565b83018261224e565b50505b505050565b5f82821c905092915050565b5f6122d15f19846008026122b6565b1980831691505092915050565b5f6122e983836122c2565b9150826002028217905092915050565b6123038383612152565b67ffffffffffffffff81111561231c5761231b611ed5565b5b6123268254612122565b612331828285612270565b5f601f83116001811461235e575f841561234c578287013590505b61235685826122de565b8655506123bd565b601f19841661236c8661215c565b5f5b828110156123935784890135825560018201915060208501945060208101905061236e565b868310156123b057848901356123ac601f8916826122c2565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6123fd82611bfc565b915061240883611bfc565b92508282019050808211156124205761241f6123c6565b5b92915050565b5f61243082611bfc565b915061243b83611bfc565b925082820261244981611bfc565b915082820484148315176124605761245f6123c6565b5b5092915050565b5f81905092915050565b5f815461247d81612122565b6124878186612467565b9450600182165f81146124a157600181146124b6576124e8565b60ff19831686528115158202860193506124e8565b6124bf8561215c565b5f5b838110156124e0578154818901526001820191506020810190506124c1565b838801955050505b50505092915050565b5f6124fb82611b52565b6125058185612467565b9350612515818560208601611b6c565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612555600583612467565b915061256082612521565b600582019050919050565b5f6125768285612471565b915061258282846124f1565b915061258d82612549565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6125f3602683611b5c565b91506125fe82612599565b604082019050919050565b5f6020820190508181035f830152612620816125e7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61265b602083611b5c565b915061266682612627565b602082019050919050565b5f6020820190508181035f8301526126888161264f565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6126b38261268f565b6126bd8185612699565b93506126cd818560208601611b6c565b6126d681611b94565b840191505092915050565b5f6080820190506126f45f830187611c8a565b6127016020830186611c8a565b61270e6040830185611d1a565b818103606083015261272081846126a9565b905095945050505050565b5f8151905061273981611aca565b92915050565b5f6020828403121561275457612753611a97565b5b5f6127618482850161272b565b9150509291505056fea2646970667358221220fd7ba74d5cdc19e8bc289cc8515083c931dba21f2a064df1b3599de510dd88d164736f6c63430008160033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65746f4a70394d797776755343343362567862517456316363656d7a7343736965793173735a3171394c6b712f00000000000000000000
-----Decoded View---------------
Arg [0] : __baseTokenUri (string): ipfs://QmetoJp9MywvuSC43bVxbQtV1ccemzsCsiey1ssZ1q9Lkq/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d65746f4a70394d79777675534334336256786251745631
Arg [3] : 6363656d7a7343736965793173735a3171394c6b712f00000000000000000000
Deployed Bytecode Sourcemap
74835:2107:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40197:689;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41149:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48087:268;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47479:449;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36722:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51858:3003;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76524:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76710:107;;;;;;;;;;;;;:::i;:::-;;54957:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42639:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75029:16;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37906:283;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20618:103;;;;;;;;;;;;;:::i;:::-;;74881:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19977:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76324:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76192:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41325:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74916:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75195:346;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48695:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76631:71;;;;;;;;;;;;;:::i;:::-;;55748:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75549:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76418:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75661:301;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74958:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49118:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20876:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74995:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40197:689;40327:4;40671:10;40656:25;;:11;:25;;;;:102;;;;40748:10;40733:25;;:11;:25;;;;40656:102;:179;;;;40825:10;40810:25;;:11;:25;;;;40656:179;40636:199;;40197:689;;;:::o;41149:100::-;41203:13;41236:5;41229:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41149:100;:::o;48087:268::-;48208:7;48238:16;48246:7;48238;:16::i;:::-;48233:64;;48263:34;;;;;;;;;;;;;;48233:64;48317:15;:24;48333:7;48317:24;;;;;;;;;;;:30;;;;;;;;;;;;48310:37;;48087:268;;;:::o;47479:449::-;47609:13;47625:16;47633:7;47625;:16::i;:::-;47609:32;;47681:5;47658:28;;:19;:17;:19::i;:::-;:28;;;47654:175;;47706:44;47723:5;47730:19;:17;:19::i;:::-;47706:16;:44::i;:::-;47701:128;;47778:35;;;;;;;;;;;;;;47701:128;47654:175;47874:2;47841:15;:24;47857:7;47841:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;47912:7;47908:2;47892:28;;47901:5;47892:28;;;;;;;;;;;;47598:330;47479:449;;:::o;36722:323::-;36783:7;37011:15;:13;:15::i;:::-;36996:12;;36980:13;;:28;:46;36973:53;;36722:323;:::o;51858:3003::-;52000:27;52030;52049:7;52030:18;:27::i;:::-;52000:57;;52115:4;52074:45;;52090:19;52074:45;;;52070:99;;52141:28;;;;;;;;;;;;;;52070:99;52197:27;52239:23;52276:35;52303:7;52276:26;:35::i;:::-;52182:129;;;;52425:134;52468:15;52502:4;52525:19;:17;:19::i;:::-;52425:24;:134::i;:::-;52406:287;;52589:43;52606:4;52612:19;:17;:19::i;:::-;52589:16;:43::i;:::-;52584:109;;52658:35;;;;;;;;;;;;;;52584:109;52406:287;52724:1;52710:16;;:2;:16;;;52706:52;;52735:23;;;;;;;;;;;;;;52706:52;52771:43;52793:4;52799:2;52803:7;52812:1;52771:21;:43::i;:::-;52907:15;52904:160;;;53047:1;53026:19;53019:30;52904:160;53444:18;:24;53463:4;53444:24;;;;;;;;;;;;;;;;53442:26;;;;;;;;;;;;53513:18;:22;53532:2;53513:22;;;;;;;;;;;;;;;;53511:24;;;;;;;;;;;53835:167;53872:2;53942:45;53957:4;53963:2;53967:19;53942:14;:45::i;:::-;33121:8;53893:94;53835:18;:167::i;:::-;53806:17;:26;53824:7;53806:26;;;;;;;;;;;:196;;;;54173:1;33121:8;54122:19;:47;:52;54118:627;;54195:19;54227:1;54217:7;:11;54195:33;;54384:1;54350:17;:30;54368:11;54350:30;;;;;;;;;;;;:35;54346:384;;54488:13;;54473:11;:28;54469:242;;54668:19;54635:17;:30;54653:11;54635:30;;;;;;;;;;;:52;;;;54469:242;54346:384;54176:569;54118:627;54792:7;54788:2;54773:27;;54782:4;54773:27;;;;;;;;;;;;54811:42;54832:4;54838:2;54842:7;54851:1;54811:20;:42::i;:::-;51989:2872;;;51858:3003;;;:::o;76524:99::-;19863:13;:11;:13::i;:::-;76605:10:::1;76593:9;:22;;;;76524:99:::0;:::o;76710:107::-;19863:13;:11;:13::i;:::-;76766:10:::1;76758:28;;:51;76787:21;76758:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;76710:107::o:0;54957:193::-;55103:39;55120:4;55126:2;55130:7;55103:39;;;;;;;;;;;;:16;:39::i;:::-;54957:193;;;:::o;42639:202::-;42756:7;42804:27;42823:7;42804:18;:27::i;:::-;42781:52;;42639:202;;;:::o;75029:16::-;;;;;;;;;;;;;:::o;37906:283::-;38023:7;38069:1;38052:19;;:5;:19;;;38048:60;;38080:28;;;;;;;;;;;;;;38048:60;32065:13;38126:18;:25;38145:5;38126:25;;;;;;;;;;;;;;;;:55;38119:62;;37906:283;;;:::o;20618:103::-;19863:13;:11;:13::i;:::-;20683:30:::1;20710:1;20683:18;:30::i;:::-;20618:103::o:0;74881:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19977:87::-;20023:7;20050:6;;;;;;;;;;;20043:13;;19977:87;:::o;76324:86::-;19863:13;:11;:13::i;:::-;76396:6:::1;76388:5;:14;;;;76324:86:::0;:::o;76192:124::-;19863:13;:11;:13::i;:::-;76294:14:::1;;76279:12;:29;;;;;;;:::i;:::-;;76192:124:::0;;:::o;41325:104::-;41381:13;41414:7;41407:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41325:104;:::o;74916:35::-;;;;:::o;75195:346::-;75259:4;;;;;;;;;;;75254:30;;75272:12;;;;;;;;;;;;;;75254:30;75311:8;;75301:7;:18;75297:49;;;75328:18;;;;;;;;;;;;;;75297:49;75387:9;;75377:7;75361:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:35;75357:67;;;75405:19;;;;;;;;;;;;;;75357:67;75459:7;75451:5;;:15;;;;:::i;:::-;75439:9;:27;75435:59;;;75475:19;;;;;;;;;;;;;;75435:59;75507:26;75513:10;75525:7;75507:5;:26::i;:::-;75195:346;:::o;48695:266::-;48874:8;48822:18;:39;48841:19;:17;:19::i;:::-;48822:39;;;;;;;;;;;;;;;:49;48862:8;48822:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;48934:8;48898:55;;48913:19;:17;:19::i;:::-;48898:55;;;48944:8;48898:55;;;;;;:::i;:::-;;;;;;;;48695:266;;:::o;76631:71::-;19863:13;:11;:13::i;:::-;76690:4:::1;;;;;;;;;;;76689:5;76682:4;;:12;;;;;;;;;;;;;;;;;;76631:71::o:0;55748:407::-;55923:31;55936:4;55942:2;55946:7;55923:12;:31::i;:::-;55987:1;55969:2;:14;;;:19;55965:183;;56008:56;56039:4;56045:2;56049:7;56058:5;56008:30;:56::i;:::-;56003:145;;56092:40;;;;;;;;;;;;;;56003:145;55965:183;55748:407;;;;:::o;75549:104::-;19863:13;:11;:13::i;:::-;75626:19:::1;75632:3;75637:7;75626:5;:19::i;:::-;75549:104:::0;;:::o;76418:98::-;19863:13;:11;:13::i;:::-;76499:9:::1;76488:8;:20;;;;76418:98:::0;:::o;75661:301::-;75779:13;75815:16;75823:7;75815;:16::i;:::-;75810:59;;75840:29;;;;;;;;;;;;;;75810:59;75911:12;75925:18;75935:7;75925:9;:18::i;:::-;75894:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75880:74;;75661:301;;;:::o;74958:30::-;;;;:::o;49118:214::-;49260:4;49289:18;:25;49308:5;49289:25;;;;;;;;;;;;;;;:35;49315:8;49289:35;;;;;;;;;;;;;;;;;;;;;;;;;49282:42;;49118:214;;;;:::o;20876:238::-;19863:13;:11;:13::i;:::-;20999:1:::1;20979:22;;:8;:22;;::::0;20957:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21078:28;21097:8;21078:18;:28::i;:::-;20876:238:::0;:::o;74995:27::-;;;;:::o;49590:282::-;49655:4;49711:7;49692:15;:13;:15::i;:::-;:26;;:66;;;;;49745:13;;49735:7;:23;49692:66;:153;;;;;49844:1;32841:8;49796:17;:26;49814:7;49796:26;;;;;;;;;;;;:44;:49;49692:153;49672:173;;49590:282;;;:::o;72807:105::-;72867:7;72894:10;72887:17;;72807:105;:::o;75970:93::-;76027:7;76054:1;76047:8;;75970:93;:::o;43926:1307::-;44020:7;44045:12;44060:7;44045:22;;44128:4;44109:15;:13;:15::i;:::-;:23;44105:1061;;44162:13;;44155:4;:20;44151:1015;;;44200:14;44217:17;:23;44235:4;44217:23;;;;;;;;;;;;44200:40;;44334:1;32841:8;44306:6;:24;:29;44302:845;;44971:113;44988:1;44978:6;:11;44971:113;;45031:17;:25;45049:6;;;;;;;45031:25;;;;;;;;;;;;45022:34;;44971:113;;;45117:6;45110:13;;;;;;44302:845;44177:989;44151:1015;44105:1061;45194:31;;;;;;;;;;;;;;43926:1307;;;;:::o;50753:485::-;50855:27;50884:23;50925:38;50966:15;:24;50982:7;50966:24;;;;;;;;;;;50925:65;;51143:18;51120:41;;51200:19;51194:26;51175:45;;51105:126;50753:485;;;:::o;49981:659::-;50130:11;50295:16;50288:5;50284:28;50275:37;;50455:16;50444:9;50440:32;50427:45;;50605:15;50594:9;50591:30;50583:5;50572:9;50569:20;50566:56;50556:66;;49981:659;;;;;:::o;56817:159::-;;;;;:::o;72116:311::-;72251:7;72271:16;33245:3;72297:19;:41;;72271:68;;33245:3;72365:31;72376:4;72382:2;72386:9;72365:10;:31::i;:::-;72357:40;;:62;;72350:69;;;72116:311;;;;;:::o;45813:531::-;45920:14;46093:16;46086:5;46082:28;46073:37;;46305:5;46291:11;46266:23;46262:41;46259:52;46235:5;46214:112;46204:122;;45813:531;;;;:::o;57641:158::-;;;;;:::o;20142:132::-;20217:12;:10;:12::i;:::-;20206:23;;:7;:5;:7::i;:::-;:23;;;20198:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20142:132::o;21274:191::-;21348:16;21367:6;;;;;;;;;;;21348:25;;21393:8;21384:6;;:17;;;;;;;;;;;;;;;;;;21448:8;21417:40;;21438:8;21417:40;;;;;;;;;;;;21337:128;21274:191;:::o;59532:3021::-;59605:20;59628:13;;59605:36;;59668:1;59656:8;:13;59652:44;;59678:18;;;;;;;;;;;;;;59652:44;59709:61;59739:1;59743:2;59747:12;59761:8;59709:21;:61::i;:::-;60287:1;32203:2;60257:1;:26;;60256:32;60227:8;:62;60184:18;:22;60203:2;60184:22;;;;;;;;;;;;;;;;:105;;;;;;;;;;;60566:160;60603:2;60678:33;60701:1;60705:2;60709:1;60678:14;:33::i;:::-;60624:30;60645:8;60624:20;:30::i;:::-;:87;60566:18;:160::i;:::-;60532:17;:31;60550:12;60532:31;;;;;;;;;;;:194;;;;60743:16;60774:11;60803:8;60788:12;:23;60774:37;;61324:16;61320:2;61316:25;61304:37;;61696:12;61656:8;61615:1;61553:25;61494:1;61433;61406:335;62067:1;62053:12;62049:20;62007:346;62108:3;62099:7;62096:16;62007:346;;62326:7;62316:8;62313:1;62286:25;62283:1;62280;62275:59;62161:1;62152:7;62148:15;62137:26;;62007:346;;;62011:77;62398:1;62386:8;:13;62382:45;;62408:19;;;;;;;;;;;;;;62382:45;62460:3;62444:13;:19;;;;59958:2517;;62485:60;62514:1;62518:2;62522:12;62536:8;62485:20;:60::i;:::-;59594:2959;59532:3021;;:::o;58239:831::-;58402:4;58461:2;58436:45;;;58500:19;:17;:19::i;:::-;58538:4;58561:7;58587:5;58436:171;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58419:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58838:1;58821:6;:13;:18;58817:235;;58867:40;;;;;;;;;;;;;;58817:235;59010:6;59004:13;58995:6;58991:2;58987:15;58980:38;58419:644;58707:54;;;58680:81;;;:6;:81;;;;58656:105;;;58239:831;;;;;;:::o;73014:1786::-;73115:17;73554:4;73547;73541:11;73537:22;73646:1;73640:4;73633:15;73721:4;73718:1;73714:12;73707:19;;73803:1;73798:3;73791:14;73907:3;74146:5;74128:428;74154:1;74128:428;;;74194:1;74189:3;74185:11;74178:18;;74365:2;74359:4;74355:13;74351:2;74347:22;74342:3;74334:36;74459:2;74453:4;74449:13;74441:21;;74526:4;74128:428;74516:25;74128:428;74132:21;74595:3;74590;74586:13;74710:4;74705:3;74701:14;74694:21;;74775:6;74770:3;74763:19;73159:1634;;;73014:1786;;;:::o;71817:147::-;71954:6;71817:147;;;;;:::o;18507:98::-;18560:7;18587:10;18580:17;;18507:98;:::o;46446:356::-;46543:14;46781:1;46771:8;46768:15;46742:24;46738:46;46728:56;;46446:356;;;:::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:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:117;6557:1;6554;6547:12;6585:553;6643:8;6653:6;6703:3;6696:4;6688:6;6684:17;6680:27;6670:122;;6711:79;;:::i;:::-;6670:122;6824:6;6811:20;6801:30;;6854:18;6846:6;6843:30;6840:117;;;6876:79;;:::i;:::-;6840:117;6990:4;6982:6;6978:17;6966:29;;7044:3;7036:4;7028:6;7024:17;7014:8;7010:32;7007:41;7004:128;;;7051:79;;:::i;:::-;7004:128;6585:553;;;;;:::o;7144:529::-;7215:6;7223;7272:2;7260:9;7251:7;7247:23;7243:32;7240:119;;;7278:79;;:::i;:::-;7240:119;7426:1;7415:9;7411:17;7398:31;7456:18;7448:6;7445:30;7442:117;;;7478:79;;:::i;:::-;7442:117;7591:65;7648:7;7639:6;7628:9;7624:22;7591:65;:::i;:::-;7573:83;;;;7369:297;7144:529;;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:117::-;8523:1;8520;8513:12;8537:180;8585:77;8582:1;8575:88;8682:4;8679:1;8672:15;8706:4;8703:1;8696:15;8723:281;8806:27;8828:4;8806:27;:::i;:::-;8798:6;8794:40;8936:6;8924:10;8921:22;8900:18;8888:10;8885:34;8882:62;8879:88;;;8947:18;;:::i;:::-;8879:88;8987:10;8983:2;8976:22;8766:238;8723:281;;:::o;9010:129::-;9044:6;9071:20;;:::i;:::-;9061:30;;9100:33;9128:4;9120:6;9100:33;:::i;:::-;9010:129;;;:::o;9145:307::-;9206:4;9296:18;9288:6;9285:30;9282:56;;;9318:18;;:::i;:::-;9282:56;9356:29;9378:6;9356:29;:::i;:::-;9348:37;;9440:4;9434;9430:15;9422:23;;9145:307;;;:::o;9458:146::-;9555:6;9550:3;9545;9532:30;9596:1;9587:6;9582:3;9578:16;9571:27;9458:146;;;:::o;9610:423::-;9687:5;9712:65;9728:48;9769:6;9728:48;:::i;:::-;9712:65;:::i;:::-;9703:74;;9800:6;9793:5;9786:21;9838:4;9831:5;9827:16;9876:3;9867:6;9862:3;9858:16;9855:25;9852:112;;;9883:79;;:::i;:::-;9852:112;9973:54;10020:6;10015:3;10010;9973:54;:::i;:::-;9693:340;9610:423;;;;;:::o;10052:338::-;10107:5;10156:3;10149:4;10141:6;10137:17;10133:27;10123:122;;10164:79;;:::i;:::-;10123:122;10281:6;10268:20;10306:78;10380:3;10372:6;10365:4;10357:6;10353:17;10306:78;:::i;:::-;10297:87;;10113:277;10052:338;;;;:::o;10396:943::-;10491:6;10499;10507;10515;10564:3;10552:9;10543:7;10539:23;10535:33;10532:120;;;10571:79;;:::i;:::-;10532:120;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;11102:2;11091:9;11087:18;11074:32;11133:18;11125:6;11122:30;11119:117;;;11155:79;;:::i;:::-;11119:117;11260:62;11314:7;11305:6;11294:9;11290:22;11260:62;:::i;:::-;11250:72;;11045:287;10396:943;;;;;;;:::o;11345:474::-;11413:6;11421;11470:2;11458:9;11449:7;11445:23;11441:32;11438:119;;;11476:79;;:::i;:::-;11438:119;11596:1;11621:53;11666:7;11657:6;11646:9;11642:22;11621:53;:::i;:::-;11611:63;;11567:117;11723:2;11749:53;11794:7;11785:6;11774:9;11770:22;11749:53;:::i;:::-;11739:63;;11694:118;11345:474;;;;;:::o;11825:::-;11893:6;11901;11950:2;11938:9;11929:7;11925:23;11921:32;11918:119;;;11956:79;;:::i;:::-;11918:119;12076:1;12101:53;12146:7;12137:6;12126:9;12122:22;12101:53;:::i;:::-;12091:63;;12047:117;12203:2;12229:53;12274:7;12265:6;12254:9;12250:22;12229:53;:::i;:::-;12219:63;;12174:118;11825:474;;;;;:::o;12305:180::-;12353:77;12350:1;12343:88;12450:4;12447:1;12440:15;12474:4;12471:1;12464:15;12491:320;12535:6;12572:1;12566:4;12562:12;12552:22;;12619:1;12613:4;12609:12;12640:18;12630:81;;12696:4;12688:6;12684:17;12674:27;;12630:81;12758:2;12750:6;12747:14;12727:18;12724:38;12721:84;;12777:18;;:::i;:::-;12721:84;12542:269;12491:320;;;:::o;12817:97::-;12876:6;12904:3;12894:13;;12817:97;;;;:::o;12920:141::-;12969:4;12992:3;12984:11;;13015:3;13012:1;13005:14;13049:4;13046:1;13036:18;13028:26;;12920:141;;;:::o;13067:93::-;13104:6;13151:2;13146;13139:5;13135:14;13131:23;13121:33;;13067:93;;;:::o;13166:107::-;13210:8;13260:5;13254:4;13250:16;13229:37;;13166:107;;;;:::o;13279:393::-;13348:6;13398:1;13386:10;13382:18;13421:97;13451:66;13440:9;13421:97;:::i;:::-;13539:39;13569:8;13558:9;13539:39;:::i;:::-;13527:51;;13611:4;13607:9;13600:5;13596:21;13587:30;;13660:4;13650:8;13646:19;13639:5;13636:30;13626:40;;13355:317;;13279:393;;;;;:::o;13678:60::-;13706:3;13727:5;13720:12;;13678:60;;;:::o;13744:142::-;13794:9;13827:53;13845:34;13854:24;13872:5;13854:24;:::i;:::-;13845:34;:::i;:::-;13827:53;:::i;:::-;13814:66;;13744:142;;;:::o;13892:75::-;13935:3;13956:5;13949:12;;13892:75;;;:::o;13973:269::-;14083:39;14114:7;14083:39;:::i;:::-;14144:91;14193:41;14217:16;14193:41;:::i;:::-;14185:6;14178:4;14172:11;14144:91;:::i;:::-;14138:4;14131:105;14049:193;13973:269;;;:::o;14248:73::-;14293:3;14248:73;:::o;14327:189::-;14404:32;;:::i;:::-;14445:65;14503:6;14495;14489:4;14445:65;:::i;:::-;14380:136;14327:189;;:::o;14522:186::-;14582:120;14599:3;14592:5;14589:14;14582:120;;;14653:39;14690:1;14683:5;14653:39;:::i;:::-;14626:1;14619:5;14615:13;14606:22;;14582:120;;;14522:186;;:::o;14714:543::-;14815:2;14810:3;14807:11;14804:446;;;14849:38;14881:5;14849:38;:::i;:::-;14933:29;14951:10;14933:29;:::i;:::-;14923:8;14919:44;15116:2;15104:10;15101:18;15098:49;;;15137:8;15122:23;;15098:49;15160:80;15216:22;15234:3;15216:22;:::i;:::-;15206:8;15202:37;15189:11;15160:80;:::i;:::-;14819:431;;14804:446;14714:543;;;:::o;15263:117::-;15317:8;15367:5;15361:4;15357:16;15336:37;;15263:117;;;;:::o;15386:169::-;15430:6;15463:51;15511:1;15507:6;15499:5;15496:1;15492:13;15463:51;:::i;:::-;15459:56;15544:4;15538;15534:15;15524:25;;15437:118;15386:169;;;;:::o;15560:295::-;15636:4;15782:29;15807:3;15801:4;15782:29;:::i;:::-;15774:37;;15844:3;15841:1;15837:11;15831:4;15828:21;15820:29;;15560:295;;;;:::o;15860:1403::-;15984:44;16024:3;16019;15984:44;:::i;:::-;16093:18;16085:6;16082:30;16079:56;;;16115:18;;:::i;:::-;16079:56;16159:38;16191:4;16185:11;16159:38;:::i;:::-;16244:67;16304:6;16296;16290:4;16244:67;:::i;:::-;16338:1;16367:2;16359:6;16356:14;16384:1;16379:632;;;;17055:1;17072:6;17069:84;;;17128:9;17123:3;17119:19;17106:33;17097:42;;17069:84;17179:67;17239:6;17232:5;17179:67;:::i;:::-;17173:4;17166:81;17028:229;16349:908;;16379:632;16431:4;16427:9;16419:6;16415:22;16465:37;16497:4;16465:37;:::i;:::-;16524:1;16538:215;16552:7;16549:1;16546:14;16538:215;;;16638:9;16633:3;16629:19;16616:33;16608:6;16601:49;16689:1;16681:6;16677:14;16667:24;;16736:2;16725:9;16721:18;16708:31;;16575:4;16572:1;16568:12;16563:17;;16538:215;;;16781:6;16772:7;16769:19;16766:186;;;16846:9;16841:3;16837:19;16824:33;16889:48;16931:4;16923:6;16919:17;16908:9;16889:48;:::i;:::-;16881:6;16874:64;16789:163;16766:186;16998:1;16994;16986:6;16982:14;16978:22;16972:4;16965:36;16386:625;;;16349:908;;15959:1304;;;15860:1403;;;:::o;17269:180::-;17317:77;17314:1;17307:88;17414:4;17411:1;17404:15;17438:4;17435:1;17428:15;17455:191;17495:3;17514:20;17532:1;17514:20;:::i;:::-;17509:25;;17548:20;17566:1;17548:20;:::i;:::-;17543:25;;17591:1;17588;17584:9;17577:16;;17612:3;17609:1;17606:10;17603:36;;;17619:18;;:::i;:::-;17603:36;17455:191;;;;:::o;17652:410::-;17692:7;17715:20;17733:1;17715:20;:::i;:::-;17710:25;;17749:20;17767:1;17749:20;:::i;:::-;17744:25;;17804:1;17801;17797:9;17826:30;17844:11;17826:30;:::i;:::-;17815:41;;18005:1;17996:7;17992:15;17989:1;17986:22;17966:1;17959:9;17939:83;17916:139;;18035:18;;:::i;:::-;17916:139;17700:362;17652:410;;;;:::o;18068:148::-;18170:11;18207:3;18192:18;;18068:148;;;;:::o;18246:874::-;18349:3;18386:5;18380:12;18415:36;18441:9;18415:36;:::i;:::-;18467:89;18549:6;18544:3;18467:89;:::i;:::-;18460:96;;18587:1;18576:9;18572:17;18603:1;18598:166;;;;18778:1;18773:341;;;;18565:549;;18598:166;18682:4;18678:9;18667;18663:25;18658:3;18651:38;18744:6;18737:14;18730:22;18722:6;18718:35;18713:3;18709:45;18702:52;;18598:166;;18773:341;18840:38;18872:5;18840:38;:::i;:::-;18900:1;18914:154;18928:6;18925:1;18922:13;18914:154;;;19002:7;18996:14;18992:1;18987:3;18983:11;18976:35;19052:1;19043:7;19039:15;19028:26;;18950:4;18947:1;18943:12;18938:17;;18914:154;;;19097:6;19092:3;19088:16;19081:23;;18780:334;;18565:549;;18353:767;;18246:874;;;;:::o;19126:390::-;19232:3;19260:39;19293:5;19260:39;:::i;:::-;19315:89;19397:6;19392:3;19315:89;:::i;:::-;19308:96;;19413:65;19471:6;19466:3;19459:4;19452:5;19448:16;19413:65;:::i;:::-;19503:6;19498:3;19494:16;19487:23;;19236:280;19126:390;;;;:::o;19522:155::-;19662:7;19658:1;19650:6;19646:14;19639:31;19522:155;:::o;19683:400::-;19843:3;19864:84;19946:1;19941:3;19864:84;:::i;:::-;19857:91;;19957:93;20046:3;19957:93;:::i;:::-;20075:1;20070:3;20066:11;20059:18;;19683:400;;;:::o;20089:695::-;20367:3;20389:92;20477:3;20468:6;20389:92;:::i;:::-;20382:99;;20498:95;20589:3;20580:6;20498:95;:::i;:::-;20491:102;;20610:148;20754:3;20610:148;:::i;:::-;20603:155;;20775:3;20768:10;;20089:695;;;;;:::o;20790:225::-;20930:34;20926:1;20918:6;20914:14;20907:58;20999:8;20994:2;20986:6;20982:15;20975:33;20790:225;:::o;21021:366::-;21163:3;21184:67;21248:2;21243:3;21184:67;:::i;:::-;21177:74;;21260:93;21349:3;21260:93;:::i;:::-;21378:2;21373:3;21369:12;21362:19;;21021:366;;;:::o;21393:419::-;21559:4;21597:2;21586:9;21582:18;21574:26;;21646:9;21640:4;21636:20;21632:1;21621:9;21617:17;21610:47;21674:131;21800:4;21674:131;:::i;:::-;21666:139;;21393:419;;;:::o;21818:182::-;21958:34;21954:1;21946:6;21942:14;21935:58;21818:182;:::o;22006:366::-;22148:3;22169:67;22233:2;22228:3;22169:67;:::i;:::-;22162:74;;22245:93;22334:3;22245:93;:::i;:::-;22363:2;22358:3;22354:12;22347:19;;22006:366;;;:::o;22378:419::-;22544:4;22582:2;22571:9;22567:18;22559:26;;22631:9;22625:4;22621:20;22617:1;22606:9;22602:17;22595:47;22659:131;22785:4;22659:131;:::i;:::-;22651:139;;22378:419;;;:::o;22803:98::-;22854:6;22888:5;22882:12;22872:22;;22803:98;;;:::o;22907:168::-;22990:11;23024:6;23019:3;23012:19;23064:4;23059:3;23055:14;23040:29;;22907:168;;;;:::o;23081:373::-;23167:3;23195:38;23227:5;23195:38;:::i;:::-;23249:70;23312:6;23307:3;23249:70;:::i;:::-;23242:77;;23328:65;23386:6;23381:3;23374:4;23367:5;23363:16;23328:65;:::i;:::-;23418:29;23440:6;23418:29;:::i;:::-;23413:3;23409:39;23402:46;;23171:283;23081:373;;;;:::o;23460:640::-;23655:4;23693:3;23682:9;23678:19;23670:27;;23707:71;23775:1;23764:9;23760:17;23751:6;23707:71;:::i;:::-;23788:72;23856:2;23845:9;23841:18;23832:6;23788:72;:::i;:::-;23870;23938:2;23927:9;23923:18;23914:6;23870:72;:::i;:::-;23989:9;23983:4;23979:20;23974:2;23963:9;23959:18;23952:48;24017:76;24088:4;24079:6;24017:76;:::i;:::-;24009:84;;23460:640;;;;;;;:::o;24106:141::-;24162:5;24193:6;24187:13;24178:22;;24209:32;24235:5;24209:32;:::i;:::-;24106:141;;;;:::o;24253:349::-;24322:6;24371:2;24359:9;24350:7;24346:23;24342:32;24339:119;;;24377:79;;:::i;:::-;24339:119;24497:1;24522:63;24577:7;24568:6;24557:9;24553:22;24522:63;:::i;:::-;24512:73;;24468:127;24253:349;;;;:::o
Swarm Source
ipfs://fd7ba74d5cdc19e8bc289cc8515083c931dba21f2a064df1b3599de510dd88d1
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.