Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
377 RED
Holders
93
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 REDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
RedSkeleArmy
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-12 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/RedSkeleArmy.sol /* ██████╗ █████╗ ██╗███╗ ██╗████████╗ ██╔══██╗██╔══██╗██║████╗ ██║╚══██╔══╝ ██████╔╝███████║██║██╔██╗ ██║ ██║ ██╔═══╝ ██╔══██║██║██║╚██╗██║ ██║ ██║ ██║ ██║██║██║ ╚████║ ██║ ╚═╝ ╚═╝ ╚═╝╚═╝╚═╝ ╚═══╝ ╚═╝ ██╗████████╗ ██║╚══██╔══╝ ██║ ██║ ██║ ██║ ██║ ██║ ╚═╝ ╚═╝ ██████╗ ███████╗██████╗ ██╔══██╗██╔════╝██╔══██╗ ██████╔╝█████╗ ██║ ██║ ██╔══██╗██╔══╝ ██║ ██║ ██║ ██║███████╗██████╔╝ ╚═╝ ╚═╝╚══════╝╚═════╝ */ pragma solidity ^0.8.13; contract RedSkeleArmy is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; uint256 public _maxSupply = 5555; uint256 public maxMintAmountPerWallet = 100; uint256 public maxMintAmountPerTx = 100; string baseURL = ""; string ExtensionURL = ".json"; uint256 _initalPrice = 0 ether; uint256 public costOfNFT = 0.002 ether; uint256 public numberOfFreeNFTs = 1; string HiddenURL; bool revealed = true; bool paused = true; error ContractPaused(); error MaxMintWalletExceeded(); error MaxSupply(); error InvalidMintAmount(); error InsufficientFund(); error NoSmartContract(); error TokenNotExisting(); constructor(string memory _initBaseURI) ERC721A("Red Skele Army", "RED") { baseURL = _initBaseURI; } // ================== Mint Function ======================= modifier mintCompliance(uint256 _mintAmount) { if (msg.sender != tx.origin) revert NoSmartContract(); if (totalSupply() + _mintAmount > _maxSupply) revert MaxSupply(); if (_mintAmount > maxMintAmountPerTx) revert InvalidMintAmount(); if(paused) revert ContractPaused(); _; } modifier mintPriceCompliance(uint256 _mintAmount) { if(balanceOf(msg.sender) + _mintAmount > maxMintAmountPerWallet) revert MaxMintWalletExceeded(); if (_mintAmount < 0 || _mintAmount > maxMintAmountPerWallet) revert InvalidMintAmount(); if (msg.value < checkCost(_mintAmount)) revert InsufficientFund(); _; } /// @notice compliance of minting /// @dev user (msg.sender) mint /// @param _mintAmount the amount of tokens to mint function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount){ _safeMint(msg.sender, _mintAmount); } /// @dev user (msg.sender) mint /// @param _mintAmount the amount of tokens to mint /// @return value from number to mint function checkCost(uint256 _mintAmount) public view returns (uint256) { uint256 totalMints = _mintAmount + balanceOf(msg.sender); if ((totalMints <= numberOfFreeNFTs) ) { return _initalPrice; } else if ((balanceOf(msg.sender) == 0) && (totalMints > numberOfFreeNFTs) ) { uint256 total = costOfNFT * (_mintAmount - numberOfFreeNFTs); return total; } else { uint256 total2 = costOfNFT * _mintAmount; return total2; } } /// @notice airdrop function to airdrop same amount of tokens to addresses /// @dev only owner function /// @param accounts array of addresses /// @param amount the amount of tokens to airdrop users function airdrop(address[] memory accounts, uint256 amount)public onlyOwner mintCompliance(amount) { for(uint256 i = 0; i < accounts.length; i++){ _safeMint(accounts[i], amount); } } // =================== Orange Functions (Owner Only) =============== /// @dev pause/unpause minting function pause() public onlyOwner { paused = !paused; } /// @dev set URI /// @param uri new URI function setbaseURL(string memory uri) public onlyOwner{ baseURL = uri; } /// @dev extension URI like 'json' function setExtensionURL(string memory uri) public onlyOwner{ ExtensionURL = uri; } /// @dev set new cost of tokenId in WEI /// @param _cost new price in wei function setCostPrice(uint256 _cost) public onlyOwner{ costOfNFT = _cost; } /// @dev only owner /// @param supply new max supply function setSupply(uint256 supply) public onlyOwner{ _maxSupply = supply; } /// @dev only owner /// @param perTx new max mint per transaction function setMaxMintAmountPerTx(uint256 perTx) public onlyOwner{ maxMintAmountPerTx = perTx; } /// @dev only owner /// @param perWallet new max mint per wallet function setMaxMintAmountPerWallet(uint256 perWallet) public onlyOwner{ maxMintAmountPerWallet = perWallet; } /// @dev only owner /// @param perWallet set free number of nft per wallet function setnumberOfFreeNFTs(uint256 perWallet) public onlyOwner{ numberOfFreeNFTs = perWallet; } // ================================ Withdraw Function ==================== /// @notice withdraw ether from contract. /// @dev only owner function function withdraw() public onlyOwner nonReentrant{ (bool owner, ) = payable(owner()).call{value: address(this).balance}(''); require(owner); } // =================== Blue Functions (View Only) ==================== /// @dev return uri of token ID /// @param tokenId token ID to find uri for ///@return value for 'tokenId uri' function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) { if (!_exists(tokenId)) revert TokenNotExisting(); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ExtensionURL)) : ''; } /// @dev tokenId to start (1) function _startTokenId() internal view virtual override returns (uint256) { return 1; } ///@dev maxSupply of token /// @return max supply function _baseURI() internal view virtual override returns (string memory) { return baseURL; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractPaused","type":"error"},{"inputs":[],"name":"InsufficientFund","type":"error"},{"inputs":[],"name":"InvalidMintAmount","type":"error"},{"inputs":[],"name":"MaxMintWalletExceeded","type":"error"},{"inputs":[],"name":"MaxSupply","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoSmartContract","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TokenNotExisting","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"checkCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costOfNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfFreeNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setExtensionURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perWallet","type":"uint256"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setbaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perWallet","type":"uint256"}],"name":"setnumberOfFreeNFTs","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
60806040526115b3600a556064600b556064600c5560405180602001604052806000815250600d90805190602001906200003b929190620002dd565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e908051906020019062000089929190620002dd565b506000600f5566071afd498d000060105560016011556001601360006101000a81548160ff0219169083151502179055506001601360016101000a81548160ff021916908315150217905550348015620000e257600080fd5b50604051620036ea380380620036ea83398181016040528101906200010891906200052a565b6040518060400160405280600e81526020017f52656420536b656c652041726d790000000000000000000000000000000000008152506040518060400160405280600381526020017f524544000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200018c929190620002dd565b508060039080519060200190620001a5929190620002dd565b50620001b66200020660201b60201c565b6000819055505050620001de620001d26200020f60201b60201c565b6200021760201b60201c565b600160098190555080600d9080519060200190620001fe929190620002dd565b5050620005df565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002eb90620005aa565b90600052602060002090601f0160209004810192826200030f57600085556200035b565b82601f106200032a57805160ff19168380011785556200035b565b828001600101855582156200035b579182015b828111156200035a5782518255916020019190600101906200033d565b5b5090506200036a91906200036e565b5090565b5b80821115620003895760008160009055506001016200036f565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003f682620003ab565b810181811067ffffffffffffffff82111715620004185762000417620003bc565b5b80604052505050565b60006200042d6200038d565b90506200043b8282620003eb565b919050565b600067ffffffffffffffff8211156200045e576200045d620003bc565b5b6200046982620003ab565b9050602081019050919050565b60005b838110156200049657808201518184015260208101905062000479565b83811115620004a6576000848401525b50505050565b6000620004c3620004bd8462000440565b62000421565b905082815260208101848484011115620004e257620004e1620003a6565b5b620004ef84828562000476565b509392505050565b600082601f8301126200050f576200050e620003a1565b5b815162000521848260208601620004ac565b91505092915050565b60006020828403121562000543576200054262000397565b5b600082015167ffffffffffffffff8111156200056457620005636200039c565b5b6200057284828501620004f7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005c357607f821691505b602082108103620005d957620005d86200057b565b5b50919050565b6130fb80620005ef6000396000f3fe6080604052600436106101f95760003560e01c8063766b7d091161010d578063b071401b116100a0578063c204642c1161006f578063c204642c146106a0578063c87b56dd146106c9578063e098ff7314610706578063e985e9c514610731578063f2fde38b1461076e576101f9565b8063b071401b14610605578063b0fe64141461062e578063b88d4fde14610659578063bc951b9114610675576101f9565b806394354fd0116100dc57806394354fd01461056a57806395d89b4114610595578063a0712d68146105c0578063a22cb465146105dc576101f9565b8063766b7d09146104d65780638456cb59146104ff5780638da5cb5b1461051657806393e90b2314610541576101f9565b80633b4c4b2511610190578063626ab3b81161015f578063626ab3b8146103f35780636352211e1461041c578063676f26021461045957806370a0823114610482578063715018a6146104bf576101f9565b80633b4c4b251461036e5780633ccfd60b1461039757806342842e0e146103ae5780634d534a7d146103ca576101f9565b806311b4a832116101cc57806311b4a832146102bf57806318160ddd146102fc57806322f4596f1461032757806323b872dd14610352576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906123b3565b610797565b60405161023291906123fb565b60405180910390f35b34801561024757600080fd5b50610250610829565b60405161025d91906124af565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612507565b6108bb565b60405161029a9190612575565b60405180910390f35b6102bd60048036038101906102b891906125bc565b61093a565b005b3480156102cb57600080fd5b506102e660048036038101906102e19190612507565b610a7e565b6040516102f3919061260b565b60405180910390f35b34801561030857600080fd5b50610311610b0f565b60405161031e919061260b565b60405180910390f35b34801561033357600080fd5b5061033c610b26565b604051610349919061260b565b60405180910390f35b61036c60048036038101906103679190612626565b610b2c565b005b34801561037a57600080fd5b5061039560048036038101906103909190612507565b610e4e565b005b3480156103a357600080fd5b506103ac610e60565b005b6103c860048036038101906103c39190612626565b610ef8565b005b3480156103d657600080fd5b506103f160048036038101906103ec91906127ae565b610f18565b005b3480156103ff57600080fd5b5061041a600480360381019061041591906127ae565b610f3a565b005b34801561042857600080fd5b50610443600480360381019061043e9190612507565b610f5c565b6040516104509190612575565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612507565b610f6e565b005b34801561048e57600080fd5b506104a960048036038101906104a491906127f7565b610f80565b6040516104b6919061260b565b60405180910390f35b3480156104cb57600080fd5b506104d4611038565b005b3480156104e257600080fd5b506104fd60048036038101906104f89190612507565b61104c565b005b34801561050b57600080fd5b5061051461105e565b005b34801561052257600080fd5b5061052b611092565b6040516105389190612575565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612507565b6110bc565b005b34801561057657600080fd5b5061057f6110ce565b60405161058c919061260b565b60405180910390f35b3480156105a157600080fd5b506105aa6110d4565b6040516105b791906124af565b60405180910390f35b6105da60048036038101906105d59190612507565b611166565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190612850565b611385565b005b34801561061157600080fd5b5061062c60048036038101906106279190612507565b611490565b005b34801561063a57600080fd5b506106436114a2565b604051610650919061260b565b60405180910390f35b610673600480360381019061066e9190612931565b6114a8565b005b34801561068157600080fd5b5061068a61151b565b604051610697919061260b565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190612a7c565b611521565b005b3480156106d557600080fd5b506106f060048036038101906106eb9190612507565b6116a9565b6040516106fd91906124af565b60405180910390f35b34801561071257600080fd5b5061071b61174a565b604051610728919061260b565b60405180910390f35b34801561073d57600080fd5b5061075860048036038101906107539190612ad8565b611750565b60405161076591906123fb565b60405180910390f35b34801561077a57600080fd5b50610795600480360381019061079091906127f7565b6117e4565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108225750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461083890612b47565b80601f016020809104026020016040519081016040528092919081815260200182805461086490612b47565b80156108b15780601f10610886576101008083540402835291602001916108b1565b820191906000526020600020905b81548152906001019060200180831161089457829003601f168201915b5050505050905090565b60006108c682611867565b6108fc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094582610f5c565b90508073ffffffffffffffffffffffffffffffffffffffff166109666118c6565b73ffffffffffffffffffffffffffffffffffffffff16146109c9576109928161098d6118c6565b611750565b6109c8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080610a8a33610f80565b83610a959190612ba7565b90506011548111610aab57600f54915050610b0a565b6000610ab633610f80565b148015610ac4575060115481115b15610af257600060115484610ad99190612bfd565b601054610ae69190612c31565b90508092505050610b0a565b600083601054610b029190612c31565b905080925050505b919050565b6000610b196118ce565b6001546000540303905090565b600a5481565b6000610b37826118d7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610baa846119a3565b91509150610bc08187610bbb6118c6565b6119ca565b610c0c57610bd586610bd06118c6565b611750565b610c0b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c72576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c7f8686866001611a0e565b8015610c8a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d5885610d34888887611a14565b7c020000000000000000000000000000000000000000000000000000000017611a3c565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610dde5760006001850190506000600460008381526020019081526020016000205403610ddc576000548114610ddb578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e468686866001611a67565b505050505050565b610e56611a6d565b80600a8190555050565b610e68611a6d565b610e70611aeb565b6000610e7a611092565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e9d90612cbc565b60006040518083038185875af1925050503d8060008114610eda576040519150601f19603f3d011682016040523d82523d6000602084013e610edf565b606091505b5050905080610eed57600080fd5b50610ef6611b3a565b565b610f13838383604051806020016040528060008152506114a8565b505050565b610f20611a6d565b80600e9080519060200190610f369291906122a4565b5050565b610f42611a6d565b80600d9080519060200190610f589291906122a4565b5050565b6000610f67826118d7565b9050919050565b610f76611a6d565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611040611a6d565b61104a6000611b44565b565b611054611a6d565b80600b8190555050565b611066611a6d565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110c4611a6d565b8060118190555050565b600c5481565b6060600380546110e390612b47565b80601f016020809104026020016040519081016040528092919081815260200182805461110f90612b47565b801561115c5780601f106111315761010080835404028352916020019161115c565b820191906000526020600020905b81548152906001019060200180831161113f57829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111cc576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54816111d8610b0f565b6111e29190612ba7565b111561121a576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611256576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff161561129d576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b54816112ab33610f80565b6112b59190612ba7565b11156112ed576040517f6a3eaa7b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008110806112fd5750600b5481115b15611334576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61133d81610a7e565b341015611376576040517fd44b3c6200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113803384611c0a565b505050565b80600760006113926118c6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661143f6118c6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161148491906123fb565b60405180910390a35050565b611498611a6d565b80600c8190555050565b60115481565b6114b3848484610b2c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611515576114de84848484611c28565b611514576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b611529611a6d565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461158f576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548161159b610b0f565b6115a59190612ba7565b11156115dd576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611619576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615611660576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b83518110156116a35761169084828151811061168257611681612cd1565b5b602002602001015184611c0a565b808061169b90612d00565b915050611663565b50505050565b60606116b482611867565b6116ea576040517f2f9aab5800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116f4611d78565b905060008151116117145760405180602001604052806000815250611742565b8061171e84611e0a565b600e60405160200161173293929190612e18565b6040516020818303038152906040525b915050919050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117ec611a6d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290612ebb565b60405180910390fd5b61186481611b44565b50565b6000816118726118ce565b11158015611881575060005482105b80156118bf575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806118e66118ce565b1161196c5760005481101561196b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611969575b6000810361195f576004600083600190039350838152602001908152602001600020549050611935565b809250505061199e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a2b868684611ed8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611a75611ee1565b73ffffffffffffffffffffffffffffffffffffffff16611a93611092565b73ffffffffffffffffffffffffffffffffffffffff1614611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090612f27565b60405180910390fd5b565b600260095403611b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2790612f93565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c24828260405180602001604052806000815250611ee9565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c4e6118c6565b8786866040518563ffffffff1660e01b8152600401611c709493929190613008565b6020604051808303816000875af1925050508015611cac57506040513d601f19601f82011682018060405250810190611ca99190613069565b60015b611d25573d8060008114611cdc576040519150601f19603f3d011682016040523d82523d6000602084013e611ce1565b606091505b506000815103611d1d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611d8790612b47565b80601f0160208091040260200160405190810160405280929190818152602001828054611db390612b47565b8015611e005780601f10611dd557610100808354040283529160200191611e00565b820191906000526020600020905b815481529060010190602001808311611de357829003601f168201915b5050505050905090565b606060006001611e1984611f86565b01905060008167ffffffffffffffff811115611e3857611e37612683565b5b6040519080825280601f01601f191660200182016040528015611e6a5781602001600182028036833780820191505090505b509050600082602001820190505b600115611ecd578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611ec157611ec0613096565b5b04945060008503611e78575b819350505050919050565b60009392505050565b600033905090565b611ef383836120d9565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f8157600080549050600083820390505b611f336000868380600101945086611c28565b611f69576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f20578160005414611f7e57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611fe4577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611fda57611fd9613096565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612021576d04ee2d6d415b85acef8100000000838161201757612016613096565b5b0492506020810190505b662386f26fc10000831061205057662386f26fc10000838161204657612045613096565b5b0492506010810190505b6305f5e1008310612079576305f5e100838161206f5761206e613096565b5b0492506008810190505b612710831061209e57612710838161209457612093613096565b5b0492506004810190505b606483106120c157606483816120b7576120b6613096565b5b0492506002810190505b600a83106120d0576001810190505b80915050919050565b60008054905060008203612119576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121266000848385611a0e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061219d8361218e6000866000611a14565b61219785612294565b17611a3c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461223e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612203565b5060008203612279576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061228f6000848385611a67565b505050565b60006001821460e11b9050919050565b8280546122b090612b47565b90600052602060002090601f0160209004810192826122d25760008555612319565b82601f106122eb57805160ff1916838001178555612319565b82800160010185558215612319579182015b828111156123185782518255916020019190600101906122fd565b5b509050612326919061232a565b5090565b5b8082111561234357600081600090555060010161232b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123908161235b565b811461239b57600080fd5b50565b6000813590506123ad81612387565b92915050565b6000602082840312156123c9576123c8612351565b5b60006123d78482850161239e565b91505092915050565b60008115159050919050565b6123f5816123e0565b82525050565b600060208201905061241060008301846123ec565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612450578082015181840152602081019050612435565b8381111561245f576000848401525b50505050565b6000601f19601f8301169050919050565b600061248182612416565b61248b8185612421565b935061249b818560208601612432565b6124a481612465565b840191505092915050565b600060208201905081810360008301526124c98184612476565b905092915050565b6000819050919050565b6124e4816124d1565b81146124ef57600080fd5b50565b600081359050612501816124db565b92915050565b60006020828403121561251d5761251c612351565b5b600061252b848285016124f2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061255f82612534565b9050919050565b61256f81612554565b82525050565b600060208201905061258a6000830184612566565b92915050565b61259981612554565b81146125a457600080fd5b50565b6000813590506125b681612590565b92915050565b600080604083850312156125d3576125d2612351565b5b60006125e1858286016125a7565b92505060206125f2858286016124f2565b9150509250929050565b612605816124d1565b82525050565b600060208201905061262060008301846125fc565b92915050565b60008060006060848603121561263f5761263e612351565b5b600061264d868287016125a7565b935050602061265e868287016125a7565b925050604061266f868287016124f2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126bb82612465565b810181811067ffffffffffffffff821117156126da576126d9612683565b5b80604052505050565b60006126ed612347565b90506126f982826126b2565b919050565b600067ffffffffffffffff82111561271957612718612683565b5b61272282612465565b9050602081019050919050565b82818337600083830152505050565b600061275161274c846126fe565b6126e3565b90508281526020810184848401111561276d5761276c61267e565b5b61277884828561272f565b509392505050565b600082601f83011261279557612794612679565b5b81356127a584826020860161273e565b91505092915050565b6000602082840312156127c4576127c3612351565b5b600082013567ffffffffffffffff8111156127e2576127e1612356565b5b6127ee84828501612780565b91505092915050565b60006020828403121561280d5761280c612351565b5b600061281b848285016125a7565b91505092915050565b61282d816123e0565b811461283857600080fd5b50565b60008135905061284a81612824565b92915050565b6000806040838503121561286757612866612351565b5b6000612875858286016125a7565b92505060206128868582860161283b565b9150509250929050565b600067ffffffffffffffff8211156128ab576128aa612683565b5b6128b482612465565b9050602081019050919050565b60006128d46128cf84612890565b6126e3565b9050828152602081018484840111156128f0576128ef61267e565b5b6128fb84828561272f565b509392505050565b600082601f83011261291857612917612679565b5b81356129288482602086016128c1565b91505092915050565b6000806000806080858703121561294b5761294a612351565b5b6000612959878288016125a7565b945050602061296a878288016125a7565b935050604061297b878288016124f2565b925050606085013567ffffffffffffffff81111561299c5761299b612356565b5b6129a887828801612903565b91505092959194509250565b600067ffffffffffffffff8211156129cf576129ce612683565b5b602082029050602081019050919050565b600080fd5b60006129f86129f3846129b4565b6126e3565b90508083825260208201905060208402830185811115612a1b57612a1a6129e0565b5b835b81811015612a445780612a3088826125a7565b845260208401935050602081019050612a1d565b5050509392505050565b600082601f830112612a6357612a62612679565b5b8135612a738482602086016129e5565b91505092915050565b60008060408385031215612a9357612a92612351565b5b600083013567ffffffffffffffff811115612ab157612ab0612356565b5b612abd85828601612a4e565b9250506020612ace858286016124f2565b9150509250929050565b60008060408385031215612aef57612aee612351565b5b6000612afd858286016125a7565b9250506020612b0e858286016125a7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b5f57607f821691505b602082108103612b7257612b71612b18565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bb2826124d1565b9150612bbd836124d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bf257612bf1612b78565b5b828201905092915050565b6000612c08826124d1565b9150612c13836124d1565b925082821015612c2657612c25612b78565b5b828203905092915050565b6000612c3c826124d1565b9150612c47836124d1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c8057612c7f612b78565b5b828202905092915050565b600081905092915050565b50565b6000612ca6600083612c8b565b9150612cb182612c96565b600082019050919050565b6000612cc782612c99565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612d0b826124d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612d3d57612d3c612b78565b5b600182019050919050565b600081905092915050565b6000612d5e82612416565b612d688185612d48565b9350612d78818560208601612432565b80840191505092915050565b60008190508160005260206000209050919050565b60008154612da681612b47565b612db08186612d48565b94506001821660008114612dcb5760018114612ddc57612e0f565b60ff19831686528186019350612e0f565b612de585612d84565b60005b83811015612e0757815481890152600182019150602081019050612de8565b838801955050505b50505092915050565b6000612e248286612d53565b9150612e308285612d53565b9150612e3c8284612d99565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ea5602683612421565b9150612eb082612e49565b604082019050919050565b60006020820190508181036000830152612ed481612e98565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f11602083612421565b9150612f1c82612edb565b602082019050919050565b60006020820190508181036000830152612f4081612f04565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612f7d601f83612421565b9150612f8882612f47565b602082019050919050565b60006020820190508181036000830152612fac81612f70565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612fda82612fb3565b612fe48185612fbe565b9350612ff4818560208601612432565b612ffd81612465565b840191505092915050565b600060808201905061301d6000830187612566565b61302a6020830186612566565b61303760408301856125fc565b81810360608301526130498184612fcf565b905095945050505050565b60008151905061306381612387565b92915050565b60006020828403121561307f5761307e612351565b5b600061308d84828501613054565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220589c95c35c08b1820e9ffb198871b875894dbfd2d8cd4e89be6847cb4a16304764736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101f95760003560e01c8063766b7d091161010d578063b071401b116100a0578063c204642c1161006f578063c204642c146106a0578063c87b56dd146106c9578063e098ff7314610706578063e985e9c514610731578063f2fde38b1461076e576101f9565b8063b071401b14610605578063b0fe64141461062e578063b88d4fde14610659578063bc951b9114610675576101f9565b806394354fd0116100dc57806394354fd01461056a57806395d89b4114610595578063a0712d68146105c0578063a22cb465146105dc576101f9565b8063766b7d09146104d65780638456cb59146104ff5780638da5cb5b1461051657806393e90b2314610541576101f9565b80633b4c4b2511610190578063626ab3b81161015f578063626ab3b8146103f35780636352211e1461041c578063676f26021461045957806370a0823114610482578063715018a6146104bf576101f9565b80633b4c4b251461036e5780633ccfd60b1461039757806342842e0e146103ae5780634d534a7d146103ca576101f9565b806311b4a832116101cc57806311b4a832146102bf57806318160ddd146102fc57806322f4596f1461032757806323b872dd14610352576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906123b3565b610797565b60405161023291906123fb565b60405180910390f35b34801561024757600080fd5b50610250610829565b60405161025d91906124af565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612507565b6108bb565b60405161029a9190612575565b60405180910390f35b6102bd60048036038101906102b891906125bc565b61093a565b005b3480156102cb57600080fd5b506102e660048036038101906102e19190612507565b610a7e565b6040516102f3919061260b565b60405180910390f35b34801561030857600080fd5b50610311610b0f565b60405161031e919061260b565b60405180910390f35b34801561033357600080fd5b5061033c610b26565b604051610349919061260b565b60405180910390f35b61036c60048036038101906103679190612626565b610b2c565b005b34801561037a57600080fd5b5061039560048036038101906103909190612507565b610e4e565b005b3480156103a357600080fd5b506103ac610e60565b005b6103c860048036038101906103c39190612626565b610ef8565b005b3480156103d657600080fd5b506103f160048036038101906103ec91906127ae565b610f18565b005b3480156103ff57600080fd5b5061041a600480360381019061041591906127ae565b610f3a565b005b34801561042857600080fd5b50610443600480360381019061043e9190612507565b610f5c565b6040516104509190612575565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612507565b610f6e565b005b34801561048e57600080fd5b506104a960048036038101906104a491906127f7565b610f80565b6040516104b6919061260b565b60405180910390f35b3480156104cb57600080fd5b506104d4611038565b005b3480156104e257600080fd5b506104fd60048036038101906104f89190612507565b61104c565b005b34801561050b57600080fd5b5061051461105e565b005b34801561052257600080fd5b5061052b611092565b6040516105389190612575565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612507565b6110bc565b005b34801561057657600080fd5b5061057f6110ce565b60405161058c919061260b565b60405180910390f35b3480156105a157600080fd5b506105aa6110d4565b6040516105b791906124af565b60405180910390f35b6105da60048036038101906105d59190612507565b611166565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190612850565b611385565b005b34801561061157600080fd5b5061062c60048036038101906106279190612507565b611490565b005b34801561063a57600080fd5b506106436114a2565b604051610650919061260b565b60405180910390f35b610673600480360381019061066e9190612931565b6114a8565b005b34801561068157600080fd5b5061068a61151b565b604051610697919061260b565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190612a7c565b611521565b005b3480156106d557600080fd5b506106f060048036038101906106eb9190612507565b6116a9565b6040516106fd91906124af565b60405180910390f35b34801561071257600080fd5b5061071b61174a565b604051610728919061260b565b60405180910390f35b34801561073d57600080fd5b5061075860048036038101906107539190612ad8565b611750565b60405161076591906123fb565b60405180910390f35b34801561077a57600080fd5b50610795600480360381019061079091906127f7565b6117e4565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108225750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461083890612b47565b80601f016020809104026020016040519081016040528092919081815260200182805461086490612b47565b80156108b15780601f10610886576101008083540402835291602001916108b1565b820191906000526020600020905b81548152906001019060200180831161089457829003601f168201915b5050505050905090565b60006108c682611867565b6108fc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094582610f5c565b90508073ffffffffffffffffffffffffffffffffffffffff166109666118c6565b73ffffffffffffffffffffffffffffffffffffffff16146109c9576109928161098d6118c6565b611750565b6109c8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080610a8a33610f80565b83610a959190612ba7565b90506011548111610aab57600f54915050610b0a565b6000610ab633610f80565b148015610ac4575060115481115b15610af257600060115484610ad99190612bfd565b601054610ae69190612c31565b90508092505050610b0a565b600083601054610b029190612c31565b905080925050505b919050565b6000610b196118ce565b6001546000540303905090565b600a5481565b6000610b37826118d7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610baa846119a3565b91509150610bc08187610bbb6118c6565b6119ca565b610c0c57610bd586610bd06118c6565b611750565b610c0b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c72576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c7f8686866001611a0e565b8015610c8a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d5885610d34888887611a14565b7c020000000000000000000000000000000000000000000000000000000017611a3c565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610dde5760006001850190506000600460008381526020019081526020016000205403610ddc576000548114610ddb578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e468686866001611a67565b505050505050565b610e56611a6d565b80600a8190555050565b610e68611a6d565b610e70611aeb565b6000610e7a611092565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e9d90612cbc565b60006040518083038185875af1925050503d8060008114610eda576040519150601f19603f3d011682016040523d82523d6000602084013e610edf565b606091505b5050905080610eed57600080fd5b50610ef6611b3a565b565b610f13838383604051806020016040528060008152506114a8565b505050565b610f20611a6d565b80600e9080519060200190610f369291906122a4565b5050565b610f42611a6d565b80600d9080519060200190610f589291906122a4565b5050565b6000610f67826118d7565b9050919050565b610f76611a6d565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611040611a6d565b61104a6000611b44565b565b611054611a6d565b80600b8190555050565b611066611a6d565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110c4611a6d565b8060118190555050565b600c5481565b6060600380546110e390612b47565b80601f016020809104026020016040519081016040528092919081815260200182805461110f90612b47565b801561115c5780601f106111315761010080835404028352916020019161115c565b820191906000526020600020905b81548152906001019060200180831161113f57829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111cc576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54816111d8610b0f565b6111e29190612ba7565b111561121a576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611256576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff161561129d576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b54816112ab33610f80565b6112b59190612ba7565b11156112ed576040517f6a3eaa7b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008110806112fd5750600b5481115b15611334576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61133d81610a7e565b341015611376576040517fd44b3c6200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113803384611c0a565b505050565b80600760006113926118c6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661143f6118c6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161148491906123fb565b60405180910390a35050565b611498611a6d565b80600c8190555050565b60115481565b6114b3848484610b2c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611515576114de84848484611c28565b611514576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b611529611a6d565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461158f576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548161159b610b0f565b6115a59190612ba7565b11156115dd576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611619576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615611660576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b83518110156116a35761169084828151811061168257611681612cd1565b5b602002602001015184611c0a565b808061169b90612d00565b915050611663565b50505050565b60606116b482611867565b6116ea576040517f2f9aab5800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116f4611d78565b905060008151116117145760405180602001604052806000815250611742565b8061171e84611e0a565b600e60405160200161173293929190612e18565b6040516020818303038152906040525b915050919050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117ec611a6d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290612ebb565b60405180910390fd5b61186481611b44565b50565b6000816118726118ce565b11158015611881575060005482105b80156118bf575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806118e66118ce565b1161196c5760005481101561196b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611969575b6000810361195f576004600083600190039350838152602001908152602001600020549050611935565b809250505061199e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a2b868684611ed8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611a75611ee1565b73ffffffffffffffffffffffffffffffffffffffff16611a93611092565b73ffffffffffffffffffffffffffffffffffffffff1614611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090612f27565b60405180910390fd5b565b600260095403611b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2790612f93565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c24828260405180602001604052806000815250611ee9565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c4e6118c6565b8786866040518563ffffffff1660e01b8152600401611c709493929190613008565b6020604051808303816000875af1925050508015611cac57506040513d601f19601f82011682018060405250810190611ca99190613069565b60015b611d25573d8060008114611cdc576040519150601f19603f3d011682016040523d82523d6000602084013e611ce1565b606091505b506000815103611d1d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611d8790612b47565b80601f0160208091040260200160405190810160405280929190818152602001828054611db390612b47565b8015611e005780601f10611dd557610100808354040283529160200191611e00565b820191906000526020600020905b815481529060010190602001808311611de357829003601f168201915b5050505050905090565b606060006001611e1984611f86565b01905060008167ffffffffffffffff811115611e3857611e37612683565b5b6040519080825280601f01601f191660200182016040528015611e6a5781602001600182028036833780820191505090505b509050600082602001820190505b600115611ecd578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611ec157611ec0613096565b5b04945060008503611e78575b819350505050919050565b60009392505050565b600033905090565b611ef383836120d9565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f8157600080549050600083820390505b611f336000868380600101945086611c28565b611f69576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f20578160005414611f7e57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611fe4577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611fda57611fd9613096565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612021576d04ee2d6d415b85acef8100000000838161201757612016613096565b5b0492506020810190505b662386f26fc10000831061205057662386f26fc10000838161204657612045613096565b5b0492506010810190505b6305f5e1008310612079576305f5e100838161206f5761206e613096565b5b0492506008810190505b612710831061209e57612710838161209457612093613096565b5b0492506004810190505b606483106120c157606483816120b7576120b6613096565b5b0492506002810190505b600a83106120d0576001810190505b80915050919050565b60008054905060008203612119576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121266000848385611a0e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061219d8361218e6000866000611a14565b61219785612294565b17611a3c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461223e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612203565b5060008203612279576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061228f6000848385611a67565b505050565b60006001821460e11b9050919050565b8280546122b090612b47565b90600052602060002090601f0160209004810192826122d25760008555612319565b82601f106122eb57805160ff1916838001178555612319565b82800160010185558215612319579182015b828111156123185782518255916020019190600101906122fd565b5b509050612326919061232a565b5090565b5b8082111561234357600081600090555060010161232b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123908161235b565b811461239b57600080fd5b50565b6000813590506123ad81612387565b92915050565b6000602082840312156123c9576123c8612351565b5b60006123d78482850161239e565b91505092915050565b60008115159050919050565b6123f5816123e0565b82525050565b600060208201905061241060008301846123ec565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612450578082015181840152602081019050612435565b8381111561245f576000848401525b50505050565b6000601f19601f8301169050919050565b600061248182612416565b61248b8185612421565b935061249b818560208601612432565b6124a481612465565b840191505092915050565b600060208201905081810360008301526124c98184612476565b905092915050565b6000819050919050565b6124e4816124d1565b81146124ef57600080fd5b50565b600081359050612501816124db565b92915050565b60006020828403121561251d5761251c612351565b5b600061252b848285016124f2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061255f82612534565b9050919050565b61256f81612554565b82525050565b600060208201905061258a6000830184612566565b92915050565b61259981612554565b81146125a457600080fd5b50565b6000813590506125b681612590565b92915050565b600080604083850312156125d3576125d2612351565b5b60006125e1858286016125a7565b92505060206125f2858286016124f2565b9150509250929050565b612605816124d1565b82525050565b600060208201905061262060008301846125fc565b92915050565b60008060006060848603121561263f5761263e612351565b5b600061264d868287016125a7565b935050602061265e868287016125a7565b925050604061266f868287016124f2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126bb82612465565b810181811067ffffffffffffffff821117156126da576126d9612683565b5b80604052505050565b60006126ed612347565b90506126f982826126b2565b919050565b600067ffffffffffffffff82111561271957612718612683565b5b61272282612465565b9050602081019050919050565b82818337600083830152505050565b600061275161274c846126fe565b6126e3565b90508281526020810184848401111561276d5761276c61267e565b5b61277884828561272f565b509392505050565b600082601f83011261279557612794612679565b5b81356127a584826020860161273e565b91505092915050565b6000602082840312156127c4576127c3612351565b5b600082013567ffffffffffffffff8111156127e2576127e1612356565b5b6127ee84828501612780565b91505092915050565b60006020828403121561280d5761280c612351565b5b600061281b848285016125a7565b91505092915050565b61282d816123e0565b811461283857600080fd5b50565b60008135905061284a81612824565b92915050565b6000806040838503121561286757612866612351565b5b6000612875858286016125a7565b92505060206128868582860161283b565b9150509250929050565b600067ffffffffffffffff8211156128ab576128aa612683565b5b6128b482612465565b9050602081019050919050565b60006128d46128cf84612890565b6126e3565b9050828152602081018484840111156128f0576128ef61267e565b5b6128fb84828561272f565b509392505050565b600082601f83011261291857612917612679565b5b81356129288482602086016128c1565b91505092915050565b6000806000806080858703121561294b5761294a612351565b5b6000612959878288016125a7565b945050602061296a878288016125a7565b935050604061297b878288016124f2565b925050606085013567ffffffffffffffff81111561299c5761299b612356565b5b6129a887828801612903565b91505092959194509250565b600067ffffffffffffffff8211156129cf576129ce612683565b5b602082029050602081019050919050565b600080fd5b60006129f86129f3846129b4565b6126e3565b90508083825260208201905060208402830185811115612a1b57612a1a6129e0565b5b835b81811015612a445780612a3088826125a7565b845260208401935050602081019050612a1d565b5050509392505050565b600082601f830112612a6357612a62612679565b5b8135612a738482602086016129e5565b91505092915050565b60008060408385031215612a9357612a92612351565b5b600083013567ffffffffffffffff811115612ab157612ab0612356565b5b612abd85828601612a4e565b9250506020612ace858286016124f2565b9150509250929050565b60008060408385031215612aef57612aee612351565b5b6000612afd858286016125a7565b9250506020612b0e858286016125a7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b5f57607f821691505b602082108103612b7257612b71612b18565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bb2826124d1565b9150612bbd836124d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bf257612bf1612b78565b5b828201905092915050565b6000612c08826124d1565b9150612c13836124d1565b925082821015612c2657612c25612b78565b5b828203905092915050565b6000612c3c826124d1565b9150612c47836124d1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c8057612c7f612b78565b5b828202905092915050565b600081905092915050565b50565b6000612ca6600083612c8b565b9150612cb182612c96565b600082019050919050565b6000612cc782612c99565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612d0b826124d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612d3d57612d3c612b78565b5b600182019050919050565b600081905092915050565b6000612d5e82612416565b612d688185612d48565b9350612d78818560208601612432565b80840191505092915050565b60008190508160005260206000209050919050565b60008154612da681612b47565b612db08186612d48565b94506001821660008114612dcb5760018114612ddc57612e0f565b60ff19831686528186019350612e0f565b612de585612d84565b60005b83811015612e0757815481890152600182019150602081019050612de8565b838801955050505b50505092915050565b6000612e248286612d53565b9150612e308285612d53565b9150612e3c8284612d99565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ea5602683612421565b9150612eb082612e49565b604082019050919050565b60006020820190508181036000830152612ed481612e98565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f11602083612421565b9150612f1c82612edb565b602082019050919050565b60006020820190508181036000830152612f4081612f04565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612f7d601f83612421565b9150612f8882612f47565b602082019050919050565b60006020820190508181036000830152612fac81612f70565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612fda82612fb3565b612fe48185612fbe565b9350612ff4818560208601612432565b612ffd81612465565b840191505092915050565b600060808201905061301d6000830187612566565b61302a6020830186612566565b61303760408301856125fc565b81810360608301526130498184612fcf565b905095945050505050565b60008151905061306381612387565b92915050565b60006020828403121561307f5761307e612351565b5b600061308d84828501613054565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220589c95c35c08b1820e9ffb198871b875894dbfd2d8cd4e89be6847cb4a16304764736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
74946:6365:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36578:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37480:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43971:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43404:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77299:550;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33231:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75061:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47610:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79168:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80129:197;;;;;;;;;;;;;:::i;:::-;;50531:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78772:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78623:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38873:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78988:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34415:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72385:103;;;;;;;;;;;;;:::i;:::-;;79569:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78465:75;;;;;;;;;;;;;:::i;:::-;;71737:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79813:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75166:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37656:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76943:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44529:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79360:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75396:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51322:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75108:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78109:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80557:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75343:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44920:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72643:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36578:639;36663:4;37002:10;36987:25;;:11;:25;;;;:102;;;;37079:10;37064:25;;:11;:25;;;;36987:102;:179;;;;37156:10;37141:25;;:11;:25;;;;36987:179;36967:199;;36578:639;;;:::o;37480:100::-;37534:13;37567:5;37560:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37480:100;:::o;43971:218::-;44047:7;44072:16;44080:7;44072;:16::i;:::-;44067:64;;44097:34;;;;;;;;;;;;;;44067:64;44151:15;:24;44167:7;44151:24;;;;;;;;;;;:30;;;;;;;;;;;;44144:37;;43971:218;;;:::o;43404:408::-;43493:13;43509:16;43517:7;43509;:16::i;:::-;43493:32;;43565:5;43542:28;;:19;:17;:19::i;:::-;:28;;;43538:175;;43590:44;43607:5;43614:19;:17;:19::i;:::-;43590:16;:44::i;:::-;43585:128;;43662:35;;;;;;;;;;;;;;43585:128;43538:175;43758:2;43725:15;:24;43741:7;43725:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;43796:7;43792:2;43776:28;;43785:5;43776:28;;;;;;;;;;;;43482:330;43404:408;;:::o;77299:550::-;77360:7;77382:18;77417:21;77427:10;77417:9;:21::i;:::-;77403:11;:35;;;;:::i;:::-;77382:56;;77470:16;;77456:10;:30;77451:387;;77510:12;;77503:19;;;;;77451:387;77572:1;77547:21;77557:10;77547:9;:21::i;:::-;:26;77546:63;;;;;77592:16;;77579:10;:29;77546:63;77542:296;;;77626:13;77669:16;;77655:11;:30;;;;:::i;:::-;77642:9;;:44;;;;:::i;:::-;77626:60;;77706:5;77699:12;;;;;;77542:296;77756:14;77785:11;77773:9;;:23;;;;:::i;:::-;77756:40;;77816:6;77809:13;;;;77299:550;;;;:::o;33231:323::-;33292:7;33520:15;:13;:15::i;:::-;33505:12;;33489:13;;:28;:46;33482:53;;33231:323;:::o;75061:32::-;;;;:::o;47610:2825::-;47752:27;47782;47801:7;47782:18;:27::i;:::-;47752:57;;47867:4;47826:45;;47842:19;47826:45;;;47822:86;;47880:28;;;;;;;;;;;;;;47822:86;47922:27;47951:23;47978:35;48005:7;47978:26;:35::i;:::-;47921:92;;;;48113:68;48138:15;48155:4;48161:19;:17;:19::i;:::-;48113:24;:68::i;:::-;48108:180;;48201:43;48218:4;48224:19;:17;:19::i;:::-;48201:16;:43::i;:::-;48196:92;;48253:35;;;;;;;;;;;;;;48196:92;48108:180;48319:1;48305:16;;:2;:16;;;48301:52;;48330:23;;;;;;;;;;;;;;48301:52;48366:43;48388:4;48394:2;48398:7;48407:1;48366:21;:43::i;:::-;48502:15;48499:160;;;48642:1;48621:19;48614:30;48499:160;49039:18;:24;49058:4;49039:24;;;;;;;;;;;;;;;;49037:26;;;;;;;;;;;;49108:18;:22;49127:2;49108:22;;;;;;;;;;;;;;;;49106:24;;;;;;;;;;;49430:146;49467:2;49516:45;49531:4;49537:2;49541:19;49516:14;:45::i;:::-;29630:8;49488:73;49430:18;:146::i;:::-;49401:17;:26;49419:7;49401:26;;;;;;;;;;;:175;;;;49747:1;29630:8;49696:19;:47;:52;49692:627;;49769:19;49801:1;49791:7;:11;49769:33;;49958:1;49924:17;:30;49942:11;49924:30;;;;;;;;;;;;:35;49920:384;;50062:13;;50047:11;:28;50043:242;;50242:19;50209:17;:30;50227:11;50209:30;;;;;;;;;;;:52;;;;50043:242;49920:384;49750:569;49692:627;50366:7;50362:2;50347:27;;50356:4;50347:27;;;;;;;;;;;;50385:42;50406:4;50412:2;50416:7;50425:1;50385:20;:42::i;:::-;47741:2694;;;47610:2825;;;:::o;79168:95::-;71623:13;:11;:13::i;:::-;79245:6:::1;79232:10;:19;;;;79168:95:::0;:::o;80129:197::-;71623:13;:11;:13::i;:::-;2374:21:::1;:19;:21::i;:::-;80218:10:::2;80242:7;:5;:7::i;:::-;80234:21;;80263;80234:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80217:72;;;80308:5;80300:14;;;::::0;::::2;;80178:148;2418:20:::1;:18;:20::i;:::-;80129:197::o:0;50531:193::-;50677:39;50694:4;50700:2;50704:7;50677:39;;;;;;;;;;;;:16;:39::i;:::-;50531:193;;;:::o;78772:103::-;71623:13;:11;:13::i;:::-;78860:3:::1;78845:12;:18;;;;;;;;;;;;:::i;:::-;;78772:103:::0;:::o;78623:93::-;71623:13;:11;:13::i;:::-;78701:3:::1;78691:7;:13;;;;;;;;;;;;:::i;:::-;;78623:93:::0;:::o;38873:152::-;38945:7;38988:27;39007:7;38988:18;:27::i;:::-;38965:52;;38873:152;;;:::o;78988:95::-;71623:13;:11;:13::i;:::-;79066:5:::1;79054:9;:17;;;;78988:95:::0;:::o;34415:233::-;34487:7;34528:1;34511:19;;:5;:19;;;34507:60;;34539:28;;;;;;;;;;;;;;34507:60;28574:13;34585:18;:25;34604:5;34585:25;;;;;;;;;;;;;;;;:55;34578:62;;34415:233;;;:::o;72385:103::-;71623:13;:11;:13::i;:::-;72450:30:::1;72477:1;72450:18;:30::i;:::-;72385:103::o:0;79569:129::-;71623:13;:11;:13::i;:::-;79677:9:::1;79652:22;:34;;;;79569:129:::0;:::o;78465:75::-;71623:13;:11;:13::i;:::-;78522:6:::1;;;;;;;;;;;78521:7;78512:6;;:16;;;;;;;;;;;;;;;;;;78465:75::o:0;71737:87::-;71783:7;71810:6;;;;;;;;;;;71803:13;;71737:87;:::o;79813:117::-;71623:13;:11;:13::i;:::-;79909:9:::1;79890:16;:28;;;;79813:117:::0;:::o;75166:39::-;;;;:::o;37656:104::-;37712:13;37745:7;37738:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37656:104;:::o;76943:194::-;77008:11;76123:9;76109:23;;:10;:23;;;76105:53;;76141:17;;;;;;;;;;;;;;76105:53;76208:10;;76194:11;76177:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;76173:65;;;76227:11;;;;;;;;;;;;;;76173:65;76271:18;;76257:11;:32;76253:64;;;76298:19;;;;;;;;;;;;;;76253:64;76335:6;;;;;;;;;;;76332:34;;;76350:16;;;;;;;;;;;;;;76332:34;77041:11:::1;76512:22;;76498:11;76474:21;76484:10;76474:9;:21::i;:::-;:35;;;;:::i;:::-;:60;76471:95;;;76543:23;;;;;;;;;;;;;;76471:95;76599:1;76585:11;:15;:55;;;;76618:22;;76604:11;:36;76585:55;76581:87;;;76649:19;;;;;;;;;;;;;;76581:87;76701:22;76711:11;76701:9;:22::i;:::-;76689:9;:34;76685:65;;;76732:18;;;;;;;;;;;;;;76685:65;77089:34:::2;77099:10;77111:11;77089:9;:34::i;:::-;76381:1:::1;76943:194:::0;;:::o;44529:234::-;44676:8;44624:18;:39;44643:19;:17;:19::i;:::-;44624:39;;;;;;;;;;;;;;;:49;44664:8;44624:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;44736:8;44700:55;;44715:19;:17;:19::i;:::-;44700:55;;;44746:8;44700:55;;;;;;:::i;:::-;;;;;;;;44529:234;;:::o;79360:113::-;71623:13;:11;:13::i;:::-;79456:5:::1;79435:18;:26;;;;79360:113:::0;:::o;75396:35::-;;;;:::o;51322:407::-;51497:31;51510:4;51516:2;51520:7;51497:12;:31::i;:::-;51561:1;51543:2;:14;;;:19;51539:183;;51582:56;51613:4;51619:2;51623:7;51632:5;51582:30;:56::i;:::-;51577:145;;51666:40;;;;;;;;;;;;;;51577:145;51539:183;51322:407;;;;:::o;75108:43::-;;;;:::o;78109:224::-;71623:13;:11;:13::i;:::-;78200:6:::1;76123:9;76109:23;;:10;:23;;;76105:53;;76141:17;;;;;;;;;;;;;;76105:53;76208:10;;76194:11;76177:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;76173:65;;;76227:11;;;;;;;;;;;;;;76173:65;76271:18;;76257:11;:32;76253:64;;;76298:19;;;;;;;;;;;;;;76253:64;76335:6;;;;;;;;;;;76332:34;;;76350:16;;;;;;;;;;;;;;76332:34;78225:9:::2;78221:101;78244:8;:15;78240:1;:19;78221:101;;;78278:30;78288:8;78297:1;78288:11;;;;;;;;:::i;:::-;;;;;;;;78301:6;78278:9;:30::i;:::-;78261:3;;;;;:::i;:::-;;;;78221:101;;;;71647:1:::1;78109:224:::0;;:::o;80557:381::-;80631:13;80664:16;80672:7;80664;:16::i;:::-;80659:48;;80689:18;;;;;;;;;;;;;;80659:48;80735:28;80766:10;:8;:10::i;:::-;80735:41;;80825:1;80800:14;80794:28;:32;:132;;;;;;;;;;;;;;;;;80862:14;80878:18;:7;:16;:18::i;:::-;80898:12;80845:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80794:132;80787:139;;;80557:381;;;:::o;75343:38::-;;;;:::o;44920:164::-;45017:4;45041:18;:25;45060:5;45041:25;;;;;;;;;;;;;;;:35;45067:8;45041:35;;;;;;;;;;;;;;;;;;;;;;;;;45034:42;;44920:164;;;;:::o;72643:201::-;71623:13;:11;:13::i;:::-;72752:1:::1;72732:22;;:8;:22;;::::0;72724:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;72808:28;72827:8;72808:18;:28::i;:::-;72643:201:::0;:::o;45342:282::-;45407:4;45463:7;45444:15;:13;:15::i;:::-;:26;;:66;;;;;45497:13;;45487:7;:23;45444:66;:153;;;;;45596:1;29350:8;45548:17;:26;45566:7;45548:26;;;;;;;;;;;;:44;:49;45444:153;45424:173;;45342:282;;;:::o;67650:105::-;67710:7;67737:10;67730:17;;67650:105;:::o;80997:107::-;81062:7;81091:1;81084:8;;80997:107;:::o;40028:1275::-;40095:7;40115:12;40130:7;40115:22;;40198:4;40179:15;:13;:15::i;:::-;:23;40175:1061;;40232:13;;40225:4;:20;40221:1015;;;40270:14;40287:17;:23;40305:4;40287:23;;;;;;;;;;;;40270:40;;40404:1;29350:8;40376:6;:24;:29;40372:845;;41041:113;41058:1;41048:6;:11;41041:113;;41101:17;:25;41119:6;;;;;;;41101:25;;;;;;;;;;;;41092:34;;41041:113;;;41187:6;41180:13;;;;;;40372:845;40247:989;40221:1015;40175:1061;41264:31;;;;;;;;;;;;;;40028:1275;;;;:::o;46505:485::-;46607:27;46636:23;46677:38;46718:15;:24;46734:7;46718:24;;;;;;;;;;;46677:65;;46895:18;46872:41;;46952:19;46946:26;46927:45;;46857:126;46505:485;;;:::o;45733:659::-;45882:11;46047:16;46040:5;46036:28;46027:37;;46207:16;46196:9;46192:32;46179:45;;46357:15;46346:9;46343:30;46335:5;46324:9;46321:20;46318:56;46308:66;;45733:659;;;;;:::o;52391:159::-;;;;;:::o;66959:311::-;67094:7;67114:16;29754:3;67140:19;:41;;67114:68;;29754:3;67208:31;67219:4;67225:2;67229:9;67208:10;:31::i;:::-;67200:40;;:62;;67193:69;;;66959:311;;;;;:::o;41851:450::-;41931:14;42099:16;42092:5;42088:28;42079:37;;42276:5;42262:11;42237:23;42233:41;42230:52;42223:5;42220:63;42210:73;;41851:450;;;;:::o;53215:158::-;;;;;:::o;71902:132::-;71977:12;:10;:12::i;:::-;71966:23;;:7;:5;:7::i;:::-;:23;;;71958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71902:132::o;2454:293::-;1856:1;2588:7;;:19;2580:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1856:1;2721:7;:18;;;;2454:293::o;2755:213::-;1812:1;2938:7;:22;;;;2755:213::o;73004:191::-;73078:16;73097:6;;;;;;;;;;;73078:25;;73123:8;73114:6;;:17;;;;;;;;;;;;;;;;;;73178:8;73147:40;;73168:8;73147:40;;;;;;;;;;;;73067:128;73004:191;:::o;61482:112::-;61559:27;61569:2;61573:8;61559:27;;;;;;;;;;;;:9;:27::i;:::-;61482:112;;:::o;53813:716::-;53976:4;54022:2;53997:45;;;54043:19;:17;:19::i;:::-;54064:4;54070:7;54079:5;53997:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53993:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54297:1;54280:6;:13;:18;54276:235;;54326:40;;;;;;;;;;;;;;54276:235;54469:6;54463:13;54454:6;54450:2;54446:15;54439:38;53993:529;54166:54;;;54156:64;;;:6;:64;;;;54149:71;;;53813:716;;;;;;:::o;81184:114::-;81244:13;81279:7;81272:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81184:114;:::o;16280:716::-;16336:13;16387:14;16424:1;16404:17;16415:5;16404:10;:17::i;:::-;:21;16387:38;;16440:20;16474:6;16463:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16440:41;;16496:11;16625:6;16621:2;16617:15;16609:6;16605:28;16598:35;;16662:288;16669:4;16662:288;;;16694:5;;;;;;;;16836:8;16831:2;16824:5;16820:14;16815:30;16810:3;16802:44;16892:2;16883:11;;;;;;:::i;:::-;;;;;16926:1;16917:5;:10;16662:288;16913:21;16662:288;16971:6;16964:13;;;;;16280:716;;;:::o;66660:147::-;66797:6;66660:147;;;;;:::o;70288:98::-;70341:7;70368:10;70361:17;;70288:98;:::o;60709:689::-;60840:19;60846:2;60850:8;60840:5;:19::i;:::-;60919:1;60901:2;:14;;;:19;60897:483;;60941:11;60955:13;;60941:27;;60987:13;61009:8;61003:3;:14;60987:30;;61036:233;61067:62;61106:1;61110:2;61114:7;;;;;;61123:5;61067:30;:62::i;:::-;61062:167;;61165:40;;;;;;;;;;;;;;61062:167;61264:3;61256:5;:11;61036:233;;61351:3;61334:13;;:20;61330:34;;61356:8;;;61330:34;60922:458;;60897:483;60709:689;;;:::o;13146:922::-;13199:7;13219:14;13236:1;13219:18;;13286:6;13277:5;:15;13273:102;;13322:6;13313:15;;;;;;:::i;:::-;;;;;13357:2;13347:12;;;;13273:102;13402:6;13393:5;:15;13389:102;;13438:6;13429:15;;;;;;:::i;:::-;;;;;13473:2;13463:12;;;;13389:102;13518:6;13509:5;:15;13505:102;;13554:6;13545:15;;;;;;:::i;:::-;;;;;13589:2;13579:12;;;;13505:102;13634:5;13625;:14;13621:99;;13669:5;13660:14;;;;;;:::i;:::-;;;;;13703:1;13693:11;;;;13621:99;13747:5;13738;:14;13734:99;;13782:5;13773:14;;;;;;:::i;:::-;;;;;13816:1;13806:11;;;;13734:99;13860:5;13851;:14;13847:99;;13895:5;13886:14;;;;;;:::i;:::-;;;;;13929:1;13919:11;;;;13847:99;13973:5;13964;:14;13960:66;;14009:1;13999:11;;;;13960:66;14054:6;14047:13;;;13146:922;;;:::o;54991:2966::-;55064:20;55087:13;;55064:36;;55127:1;55115:8;:13;55111:44;;55137:18;;;;;;;;;;;;;;55111:44;55168:61;55198:1;55202:2;55206:12;55220:8;55168:21;:61::i;:::-;55712:1;28712:2;55682:1;:26;;55681:32;55669:8;:45;55643:18;:22;55662:2;55643:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;55991:139;56028:2;56082:33;56105:1;56109:2;56113:1;56082:14;:33::i;:::-;56049:30;56070:8;56049:20;:30::i;:::-;:66;55991:18;:139::i;:::-;55957:17;:31;55975:12;55957:31;;;;;;;;;;;:173;;;;56147:16;56178:11;56207:8;56192:12;:23;56178:37;;56728:16;56724:2;56720:25;56708:37;;57100:12;57060:8;57019:1;56957:25;56898:1;56837;56810:335;57471:1;57457:12;57453:20;57411:346;57512:3;57503:7;57500:16;57411:346;;57730:7;57720:8;57717:1;57690:25;57687:1;57684;57679:59;57565:1;57556:7;57552:15;57541:26;;57411:346;;;57415:77;57802:1;57790:8;:13;57786:45;;57812:19;;;;;;;;;;;;;;57786:45;57864:3;57848:13;:19;;;;55417:2462;;57889:60;57918:1;57922:2;57926:12;57940:8;57889:20;:60::i;:::-;55053:2904;54991:2966;;:::o;42403:324::-;42473:14;42706:1;42696:8;42693:15;42667:24;42663:46;42653:56;;42403:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:311::-;11718:4;11808:18;11800:6;11797:30;11794:56;;;11830:18;;:::i;:::-;11794:56;11880:4;11872:6;11868:17;11860:25;;11940:4;11934;11930:15;11922:23;;11641:311;;;:::o;11958:117::-;12067:1;12064;12057:12;12098:710;12194:5;12219:81;12235:64;12292:6;12235:64;:::i;:::-;12219:81;:::i;:::-;12210:90;;12320:5;12349:6;12342:5;12335:21;12383:4;12376:5;12372:16;12365:23;;12436:4;12428:6;12424:17;12416:6;12412:30;12465:3;12457:6;12454:15;12451:122;;;12484:79;;:::i;:::-;12451:122;12599:6;12582:220;12616:6;12611:3;12608:15;12582:220;;;12691:3;12720:37;12753:3;12741:10;12720:37;:::i;:::-;12715:3;12708:50;12787:4;12782:3;12778:14;12771:21;;12658:144;12642:4;12637:3;12633:14;12626:21;;12582:220;;;12586:21;12200:608;;12098:710;;;;;:::o;12831:370::-;12902:5;12951:3;12944:4;12936:6;12932:17;12928:27;12918:122;;12959:79;;:::i;:::-;12918:122;13076:6;13063:20;13101:94;13191:3;13183:6;13176:4;13168:6;13164:17;13101:94;:::i;:::-;13092:103;;12908:293;12831:370;;;;:::o;13207:684::-;13300:6;13308;13357:2;13345:9;13336:7;13332:23;13328:32;13325:119;;;13363:79;;:::i;:::-;13325:119;13511:1;13500:9;13496:17;13483:31;13541:18;13533:6;13530:30;13527:117;;;13563:79;;:::i;:::-;13527:117;13668:78;13738:7;13729:6;13718:9;13714:22;13668:78;:::i;:::-;13658:88;;13454:302;13795:2;13821:53;13866:7;13857:6;13846:9;13842:22;13821:53;:::i;:::-;13811:63;;13766:118;13207:684;;;;;:::o;13897:474::-;13965:6;13973;14022:2;14010:9;14001:7;13997:23;13993:32;13990:119;;;14028:79;;:::i;:::-;13990:119;14148:1;14173:53;14218:7;14209:6;14198:9;14194:22;14173:53;:::i;:::-;14163:63;;14119:117;14275:2;14301:53;14346:7;14337:6;14326:9;14322:22;14301:53;:::i;:::-;14291:63;;14246:118;13897:474;;;;;:::o;14377:180::-;14425:77;14422:1;14415:88;14522:4;14519:1;14512:15;14546:4;14543:1;14536:15;14563:320;14607:6;14644:1;14638:4;14634:12;14624:22;;14691:1;14685:4;14681:12;14712:18;14702:81;;14768:4;14760:6;14756:17;14746:27;;14702:81;14830:2;14822:6;14819:14;14799:18;14796:38;14793:84;;14849:18;;:::i;:::-;14793:84;14614:269;14563:320;;;:::o;14889:180::-;14937:77;14934:1;14927:88;15034:4;15031:1;15024:15;15058:4;15055:1;15048:15;15075:305;15115:3;15134:20;15152:1;15134:20;:::i;:::-;15129:25;;15168:20;15186:1;15168:20;:::i;:::-;15163:25;;15322:1;15254:66;15250:74;15247:1;15244:81;15241:107;;;15328:18;;:::i;:::-;15241:107;15372:1;15369;15365:9;15358:16;;15075:305;;;;:::o;15386:191::-;15426:4;15446:20;15464:1;15446:20;:::i;:::-;15441:25;;15480:20;15498:1;15480:20;:::i;:::-;15475:25;;15519:1;15516;15513:8;15510:34;;;15524:18;;:::i;:::-;15510:34;15569:1;15566;15562:9;15554:17;;15386:191;;;;:::o;15583:348::-;15623:7;15646:20;15664:1;15646:20;:::i;:::-;15641:25;;15680:20;15698:1;15680:20;:::i;:::-;15675:25;;15868:1;15800:66;15796:74;15793:1;15790:81;15785:1;15778:9;15771:17;15767:105;15764:131;;;15875:18;;:::i;:::-;15764:131;15923:1;15920;15916:9;15905:20;;15583:348;;;;:::o;15937:147::-;16038:11;16075:3;16060:18;;15937:147;;;;:::o;16090:114::-;;:::o;16210:398::-;16369:3;16390:83;16471:1;16466:3;16390:83;:::i;:::-;16383:90;;16482:93;16571:3;16482:93;:::i;:::-;16600:1;16595:3;16591:11;16584:18;;16210:398;;;:::o;16614:379::-;16798:3;16820:147;16963:3;16820:147;:::i;:::-;16813:154;;16984:3;16977:10;;16614:379;;;:::o;16999:180::-;17047:77;17044:1;17037:88;17144:4;17141:1;17134:15;17168:4;17165:1;17158:15;17185:233;17224:3;17247:24;17265:5;17247:24;:::i;:::-;17238:33;;17293:66;17286:5;17283:77;17280:103;;17363:18;;:::i;:::-;17280:103;17410:1;17403:5;17399:13;17392:20;;17185:233;;;:::o;17424:148::-;17526:11;17563:3;17548:18;;17424:148;;;;:::o;17578:377::-;17684:3;17712:39;17745:5;17712:39;:::i;:::-;17767:89;17849:6;17844:3;17767:89;:::i;:::-;17760:96;;17865:52;17910:6;17905:3;17898:4;17891:5;17887:16;17865:52;:::i;:::-;17942:6;17937:3;17933:16;17926:23;;17688:267;17578:377;;;;:::o;17961:141::-;18010:4;18033:3;18025:11;;18056:3;18053:1;18046:14;18090:4;18087:1;18077:18;18069:26;;17961:141;;;:::o;18132:845::-;18235:3;18272:5;18266:12;18301:36;18327:9;18301:36;:::i;:::-;18353:89;18435:6;18430:3;18353:89;:::i;:::-;18346:96;;18473:1;18462:9;18458:17;18489:1;18484:137;;;;18635:1;18630:341;;;;18451:520;;18484:137;18568:4;18564:9;18553;18549:25;18544:3;18537:38;18604:6;18599:3;18595:16;18588:23;;18484:137;;18630:341;18697:38;18729:5;18697:38;:::i;:::-;18757:1;18771:154;18785:6;18782:1;18779:13;18771:154;;;18859:7;18853:14;18849:1;18844:3;18840:11;18833:35;18909:1;18900:7;18896:15;18885:26;;18807:4;18804:1;18800:12;18795:17;;18771:154;;;18954:6;18949:3;18945:16;18938:23;;18637:334;;18451:520;;18239:738;;18132:845;;;;:::o;18983:589::-;19208:3;19230:95;19321:3;19312:6;19230:95;:::i;:::-;19223:102;;19342:95;19433:3;19424:6;19342:95;:::i;:::-;19335:102;;19454:92;19542:3;19533:6;19454:92;:::i;:::-;19447:99;;19563:3;19556:10;;18983:589;;;;;;:::o;19578:225::-;19718:34;19714:1;19706:6;19702:14;19695:58;19787:8;19782:2;19774:6;19770:15;19763:33;19578:225;:::o;19809:366::-;19951:3;19972:67;20036:2;20031:3;19972:67;:::i;:::-;19965:74;;20048:93;20137:3;20048:93;:::i;:::-;20166:2;20161:3;20157:12;20150:19;;19809:366;;;:::o;20181:419::-;20347:4;20385:2;20374:9;20370:18;20362:26;;20434:9;20428:4;20424:20;20420:1;20409:9;20405:17;20398:47;20462:131;20588:4;20462:131;:::i;:::-;20454:139;;20181:419;;;:::o;20606:182::-;20746:34;20742:1;20734:6;20730:14;20723:58;20606:182;:::o;20794:366::-;20936:3;20957:67;21021:2;21016:3;20957:67;:::i;:::-;20950:74;;21033:93;21122:3;21033:93;:::i;:::-;21151:2;21146:3;21142:12;21135:19;;20794:366;;;:::o;21166:419::-;21332:4;21370:2;21359:9;21355:18;21347:26;;21419:9;21413:4;21409:20;21405:1;21394:9;21390:17;21383:47;21447:131;21573:4;21447:131;:::i;:::-;21439:139;;21166:419;;;:::o;21591:181::-;21731:33;21727:1;21719:6;21715:14;21708:57;21591:181;:::o;21778:366::-;21920:3;21941:67;22005:2;22000:3;21941:67;:::i;:::-;21934:74;;22017:93;22106:3;22017:93;:::i;:::-;22135:2;22130:3;22126:12;22119:19;;21778:366;;;:::o;22150:419::-;22316:4;22354:2;22343:9;22339:18;22331:26;;22403:9;22397:4;22393:20;22389:1;22378:9;22374:17;22367:47;22431:131;22557:4;22431:131;:::i;:::-;22423:139;;22150:419;;;:::o;22575:98::-;22626:6;22660:5;22654:12;22644:22;;22575:98;;;:::o;22679:168::-;22762:11;22796:6;22791:3;22784:19;22836:4;22831:3;22827:14;22812:29;;22679:168;;;;:::o;22853:360::-;22939:3;22967:38;22999:5;22967:38;:::i;:::-;23021:70;23084:6;23079:3;23021:70;:::i;:::-;23014:77;;23100:52;23145:6;23140:3;23133:4;23126:5;23122:16;23100:52;:::i;:::-;23177:29;23199:6;23177:29;:::i;:::-;23172:3;23168:39;23161:46;;22943:270;22853:360;;;;:::o;23219:640::-;23414:4;23452:3;23441:9;23437:19;23429:27;;23466:71;23534:1;23523:9;23519:17;23510:6;23466:71;:::i;:::-;23547:72;23615:2;23604:9;23600:18;23591:6;23547:72;:::i;:::-;23629;23697:2;23686:9;23682:18;23673:6;23629:72;:::i;:::-;23748:9;23742:4;23738:20;23733:2;23722:9;23718:18;23711:48;23776:76;23847:4;23838:6;23776:76;:::i;:::-;23768:84;;23219:640;;;;;;;:::o;23865:141::-;23921:5;23952:6;23946:13;23937:22;;23968:32;23994:5;23968:32;:::i;:::-;23865:141;;;;:::o;24012:349::-;24081:6;24130:2;24118:9;24109:7;24105:23;24101:32;24098:119;;;24136:79;;:::i;:::-;24098:119;24256:1;24281:63;24336:7;24327:6;24316:9;24312:22;24281:63;:::i;:::-;24271:73;;24227:127;24012:349;;;;:::o;24367:180::-;24415:77;24412:1;24405:88;24512:4;24509:1;24502:15;24536:4;24533:1;24526:15
Swarm Source
ipfs://589c95c35c08b1820e9ffb198871b875894dbfd2d8cd4e89be6847cb4a163047
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.