ERC-721
Overview
Max Total Supply
324 PIXERAP
Holders
65
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 PIXERAPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PixeRaptors
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-25 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (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() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // 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/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_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) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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`. * * 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 calldata data ) external; /** * @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 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 ) external; /** * @dev Transfers `tokenId` token 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; /** * @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; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @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, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @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. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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 (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.2 // 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(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * 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; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @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; /** * @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; /** * @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.2 // 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 { // Reference type for token approval. 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 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 { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _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]`. 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 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 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 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. 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`. ) 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 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/PixeRaptors.sol pragma solidity ^0.8.16; contract PixeRaptors is ERC721A, Ownable, ReentrancyGuard { using Address for address; using Strings for uint; string public baseTokenURI = "ipfs://bafybeife4i2rlj3gv2zqaixhf2zoyybzcoijpfe6ockdipamtuuzedhape"; uint256 public maxSupply = 333; uint256 public MAX_MINTS_PER_TX = 2; uint256 public PUBLIC_SALE_PRICE = 0.005 ether; bool public isPublicSaleActive = false; constructor() ERC721A("Pixe Raptors", "PIXERAP") { } function mint(uint256 numberOfTokens) external payable { require(isPublicSaleActive, "Public sale is not open"); require( totalSupply() + numberOfTokens <= maxSupply, "Maximum supply exceeded" ); require( (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); require(numberOfTokens <= MAX_MINTS_PER_TX, "Too many for Tx"); _safeMint(msg.sender, numberOfTokens); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function treasuryMint(uint numberOfTokens, address user) public onlyOwner { require( numberOfTokens > 0, "Invalid mint amount" ); require( totalSupply() + numberOfTokens <= maxSupply, "Maximum supply exceeded" ); _safeMint(user, numberOfTokens); } function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json")); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function setSalePrice(uint256 _price) external onlyOwner { PUBLIC_SALE_PRICE = _price; } function setMaxLimitPerTransaction(uint256 _limit) external onlyOwner { MAX_MINTS_PER_TX = _limit; } function withdraw() public onlyOwner nonReentrant { Address.sendValue(payable(msg.sender), address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060800160405280604281526020016200389360429139600a90816200002e919062000495565b5061014d600b556002600c556611c37937e08000600d556000600e60006101000a81548160ff0219169083151502179055503480156200006d57600080fd5b506040518060400160405280600c81526020017f5069786520526170746f727300000000000000000000000000000000000000008152506040518060400160405280600781526020017f50495845524150000000000000000000000000000000000000000000000000008152508160029081620000eb919062000495565b508060039081620000fd919062000495565b506200010e6200014460201b60201c565b6000819055505050620001366200012a6200014d60201b60201c565b6200015560201b60201c565b60016009819055506200057c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200029d57607f821691505b602082108103620002b357620002b262000255565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200031d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002de565b620003298683620002de565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000376620003706200036a8462000341565b6200034b565b62000341565b9050919050565b6000819050919050565b620003928362000355565b620003aa620003a1826200037d565b848454620002eb565b825550505050565b600090565b620003c1620003b2565b620003ce81848462000387565b505050565b5b81811015620003f657620003ea600082620003b7565b600181019050620003d4565b5050565b601f82111562000445576200040f81620002b9565b6200041a84620002ce565b810160208510156200042a578190505b620004426200043985620002ce565b830182620003d3565b50505b505050565b600082821c905092915050565b60006200046a600019846008026200044a565b1980831691505092915050565b600062000485838362000457565b9150826002028217905092915050565b620004a0826200021b565b67ffffffffffffffff811115620004bc57620004bb62000226565b5b620004c8825462000284565b620004d5828285620003fa565b600060209050601f8311600181146200050d5760008415620004f8578287015190505b62000504858262000477565b86555062000574565b601f1984166200051d86620002b9565b60005b82811015620005475784890151825560018201915060208501945060208101905062000520565b8683101562000567578489015162000563601f89168262000457565b8355505b6001600288020188555050505b505050505050565b613307806200058c6000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063b88d4fde11610095578063d5abeb0111610064578063d5abeb011461060b578063e985e9c514610636578063f2a3013e14610673578063f2fde38b1461069c576101c2565b8063b88d4fde1461054f578063c6a91b4214610578578063c87b56dd146105a3578063d547cfb7146105e0576101c2565b806395d89b41116100d157806395d89b41146104b65780639e9fcffc146104e1578063a0712d681461050a578063a22cb46514610526576101c2565b806370a0823114610437578063715018a6146104745780638da5cb5b1461048b576101c2565b80631e84c413116101645780633ccfd60b1161013e5780633ccfd60b1461039157806342842e0e146103a857806355f804b3146103d15780636352211e146103fa576101c2565b80631e84c4131461031457806323b872dd1461033f57806328cad13d14610368576101c2565b8063081812fc116101a0578063081812fc1461025a578063095ea7b31461029757806318160ddd146102c05780631919fed7146102eb576101c2565b806301ffc9a7146101c757806306fdde031461020457806307e89ec01461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190611f85565b6106c5565b6040516101fb9190611fcd565b60405180910390f35b34801561021057600080fd5b50610219610757565b6040516102269190612078565b60405180910390f35b34801561023b57600080fd5b506102446107e9565b60405161025191906120b3565b60405180910390f35b34801561026657600080fd5b50610281600480360381019061027c91906120fa565b6107ef565b60405161028e9190612168565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b991906121af565b61086e565b005b3480156102cc57600080fd5b506102d56109b2565b6040516102e291906120b3565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d91906120fa565b6109c9565b005b34801561032057600080fd5b506103296109db565b6040516103369190611fcd565b60405180910390f35b34801561034b57600080fd5b50610366600480360381019061036191906121ef565b6109ee565b005b34801561037457600080fd5b5061038f600480360381019061038a919061226e565b610d10565b005b34801561039d57600080fd5b506103a6610d35565b005b3480156103b457600080fd5b506103cf60048036038101906103ca91906121ef565b610d9e565b005b3480156103dd57600080fd5b506103f860048036038101906103f391906123d0565b610dbe565b005b34801561040657600080fd5b50610421600480360381019061041c91906120fa565b610dd9565b60405161042e9190612168565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190612419565b610deb565b60405161046b91906120b3565b60405180910390f35b34801561048057600080fd5b50610489610ea3565b005b34801561049757600080fd5b506104a0610eb7565b6040516104ad9190612168565b60405180910390f35b3480156104c257600080fd5b506104cb610ee1565b6040516104d89190612078565b60405180910390f35b3480156104ed57600080fd5b50610508600480360381019061050391906120fa565b610f73565b005b610524600480360381019061051f91906120fa565b610f85565b005b34801561053257600080fd5b5061054d60048036038101906105489190612446565b6110cd565b005b34801561055b57600080fd5b5061057660048036038101906105719190612527565b611244565b005b34801561058457600080fd5b5061058d6112b7565b60405161059a91906120b3565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c591906120fa565b6112bd565b6040516105d79190612078565b60405180910390f35b3480156105ec57600080fd5b506105f5611339565b6040516106029190612078565b60405180910390f35b34801561061757600080fd5b506106206113c7565b60405161062d91906120b3565b60405180910390f35b34801561064257600080fd5b5061065d600480360381019061065891906125aa565b6113cd565b60405161066a9190611fcd565b60405180910390f35b34801561067f57600080fd5b5061069a600480360381019061069591906125ea565b611461565b005b3480156106a857600080fd5b506106c360048036038101906106be9190612419565b611511565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107505750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076690612659565b80601f016020809104026020016040519081016040528092919081815260200182805461079290612659565b80156107df5780601f106107b4576101008083540402835291602001916107df565b820191906000526020600020905b8154815290600101906020018083116107c257829003601f168201915b5050505050905090565b600d5481565b60006107fa82611594565b610830576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087982610dd9565b90508073ffffffffffffffffffffffffffffffffffffffff1661089a6115f3565b73ffffffffffffffffffffffffffffffffffffffff16146108fd576108c6816108c16115f3565b6113cd565b6108fc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109bc6115fb565b6001546000540303905090565b6109d1611604565b80600d8190555050565b600e60009054906101000a900460ff1681565b60006109f982611682565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a60576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a6c8461174e565b91509150610a828187610a7d6115f3565b611775565b610ace57610a9786610a926115f3565b6113cd565b610acd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b34576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4186868660016117b9565b8015610b4c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c1a85610bf68888876117bf565b7c0200000000000000000000000000000000000000000000000000000000176117e7565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ca05760006001850190506000600460008381526020019081526020016000205403610c9e576000548114610c9d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d088686866001611812565b505050505050565b610d18611604565b80600e60006101000a81548160ff02191690831515021790555050565b610d3d611604565b600260095403610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d79906126d6565b60405180910390fd5b6002600981905550610d943347611818565b6001600981905550565b610db983838360405180602001604052806000815250611244565b505050565b610dc6611604565b80600a9081610dd591906128a2565b5050565b6000610de482611682565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e52576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eab611604565b610eb5600061190c565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ef090612659565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1c90612659565b8015610f695780601f10610f3e57610100808354040283529160200191610f69565b820191906000526020600020905b815481529060010190602001808311610f4c57829003601f168201915b5050505050905090565b610f7b611604565b80600c8190555050565b600e60009054906101000a900460ff16610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb906129c0565b60405180910390fd5b600b5481610fe06109b2565b610fea9190612a0f565b111561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290612a8f565b60405180910390fd5b3481600d5461103a9190612aaf565b111561107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290612b55565b60405180910390fd5b600c548111156110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790612bc1565b60405180910390fd5b6110ca33826119d2565b50565b6110d56115f3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611139576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111466115f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111f36115f3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112389190611fcd565b60405180910390a35050565b61124f8484846109ee565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112b15761127a848484846119f0565b6112b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b60606112c882611594565b611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90612c53565b60405180910390fd5b600a61131283611b40565b604051602001611323929190612dca565b6040516020818303038152906040529050919050565b600a805461134690612659565b80601f016020809104026020016040519081016040528092919081815260200182805461137290612659565b80156113bf5780601f10611394576101008083540402835291602001916113bf565b820191906000526020600020905b8154815290600101906020018083116113a257829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611469611604565b600082116114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390612e50565b60405180910390fd5b600b54826114b86109b2565b6114c29190612a0f565b1115611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90612a8f565b60405180910390fd5b61150d81836119d2565b5050565b611519611604565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f90612ee2565b60405180910390fd5b6115918161190c565b50565b60008161159f6115fb565b111580156115ae575060005482105b80156115ec575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b61160c611ca0565b73ffffffffffffffffffffffffffffffffffffffff1661162a610eb7565b73ffffffffffffffffffffffffffffffffffffffff1614611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790612f4e565b60405180910390fd5b565b600080829050806116916115fb565b11611717576000548110156117165760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611714575b6000810361170a5760046000836001900393508381526020019081526020016000205490506116e0565b8092505050611749565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117d6868684611ca8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b8047101561185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290612fba565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516118819061300b565b60006040518083038185875af1925050503d80600081146118be576040519150601f19603f3d011682016040523d82523d6000602084013e6118c3565b606091505b5050905080611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe90613092565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119ec828260405180602001604052806000815250611cb1565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a166115f3565b8786866040518563ffffffff1660e01b8152600401611a389493929190613107565b6020604051808303816000875af1925050508015611a7457506040513d601f19601f82011682018060405250810190611a719190613168565b60015b611aed573d8060008114611aa4576040519150601f19603f3d011682016040523d82523d6000602084013e611aa9565b606091505b506000815103611ae5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611b87576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c9b565b600082905060005b60008214611bb9578080611ba290613195565b915050600a82611bb2919061320c565b9150611b8f565b60008167ffffffffffffffff811115611bd557611bd46122a5565b5b6040519080825280601f01601f191660200182016040528015611c075781602001600182028036833780820191505090505b5090505b60008514611c9457600182611c20919061323d565b9150600a85611c2f9190613271565b6030611c3b9190612a0f565b60f81b818381518110611c5157611c506132a2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c8d919061320c565b9450611c0b565b8093505050505b919050565b600033905090565b60009392505050565b611cbb8383611d4e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d4957600080549050600083820390505b611cfb60008683806001019450866119f0565b611d31576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ce8578160005414611d4657600080fd5b50505b505050565b60008054905060008203611d8e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d9b60008483856117b9565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e1283611e0360008660006117bf565b611e0c85611f09565b176117e7565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611eb357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e78565b5060008203611eee576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f046000848385611812565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f6281611f2d565b8114611f6d57600080fd5b50565b600081359050611f7f81611f59565b92915050565b600060208284031215611f9b57611f9a611f23565b5b6000611fa984828501611f70565b91505092915050565b60008115159050919050565b611fc781611fb2565b82525050565b6000602082019050611fe26000830184611fbe565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612022578082015181840152602081019050612007565b60008484015250505050565b6000601f19601f8301169050919050565b600061204a82611fe8565b6120548185611ff3565b9350612064818560208601612004565b61206d8161202e565b840191505092915050565b60006020820190508181036000830152612092818461203f565b905092915050565b6000819050919050565b6120ad8161209a565b82525050565b60006020820190506120c860008301846120a4565b92915050565b6120d78161209a565b81146120e257600080fd5b50565b6000813590506120f4816120ce565b92915050565b6000602082840312156121105761210f611f23565b5b600061211e848285016120e5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061215282612127565b9050919050565b61216281612147565b82525050565b600060208201905061217d6000830184612159565b92915050565b61218c81612147565b811461219757600080fd5b50565b6000813590506121a981612183565b92915050565b600080604083850312156121c6576121c5611f23565b5b60006121d48582860161219a565b92505060206121e5858286016120e5565b9150509250929050565b60008060006060848603121561220857612207611f23565b5b60006122168682870161219a565b93505060206122278682870161219a565b9250506040612238868287016120e5565b9150509250925092565b61224b81611fb2565b811461225657600080fd5b50565b60008135905061226881612242565b92915050565b60006020828403121561228457612283611f23565b5b600061229284828501612259565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122dd8261202e565b810181811067ffffffffffffffff821117156122fc576122fb6122a5565b5b80604052505050565b600061230f611f19565b905061231b82826122d4565b919050565b600067ffffffffffffffff82111561233b5761233a6122a5565b5b6123448261202e565b9050602081019050919050565b82818337600083830152505050565b600061237361236e84612320565b612305565b90508281526020810184848401111561238f5761238e6122a0565b5b61239a848285612351565b509392505050565b600082601f8301126123b7576123b661229b565b5b81356123c7848260208601612360565b91505092915050565b6000602082840312156123e6576123e5611f23565b5b600082013567ffffffffffffffff81111561240457612403611f28565b5b612410848285016123a2565b91505092915050565b60006020828403121561242f5761242e611f23565b5b600061243d8482850161219a565b91505092915050565b6000806040838503121561245d5761245c611f23565b5b600061246b8582860161219a565b925050602061247c85828601612259565b9150509250929050565b600067ffffffffffffffff8211156124a1576124a06122a5565b5b6124aa8261202e565b9050602081019050919050565b60006124ca6124c584612486565b612305565b9050828152602081018484840111156124e6576124e56122a0565b5b6124f1848285612351565b509392505050565b600082601f83011261250e5761250d61229b565b5b813561251e8482602086016124b7565b91505092915050565b6000806000806080858703121561254157612540611f23565b5b600061254f8782880161219a565b94505060206125608782880161219a565b9350506040612571878288016120e5565b925050606085013567ffffffffffffffff81111561259257612591611f28565b5b61259e878288016124f9565b91505092959194509250565b600080604083850312156125c1576125c0611f23565b5b60006125cf8582860161219a565b92505060206125e08582860161219a565b9150509250929050565b6000806040838503121561260157612600611f23565b5b600061260f858286016120e5565b92505060206126208582860161219a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061267157607f821691505b6020821081036126845761268361262a565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006126c0601f83611ff3565b91506126cb8261268a565b602082019050919050565b600060208201905081810360008301526126ef816126b3565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026127587fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261271b565b612762868361271b565b95508019841693508086168417925050509392505050565b6000819050919050565b600061279f61279a6127958461209a565b61277a565b61209a565b9050919050565b6000819050919050565b6127b983612784565b6127cd6127c5826127a6565b848454612728565b825550505050565b600090565b6127e26127d5565b6127ed8184846127b0565b505050565b5b81811015612811576128066000826127da565b6001810190506127f3565b5050565b601f82111561285657612827816126f6565b6128308461270b565b8101602085101561283f578190505b61285361284b8561270b565b8301826127f2565b50505b505050565b600082821c905092915050565b60006128796000198460080261285b565b1980831691505092915050565b60006128928383612868565b9150826002028217905092915050565b6128ab82611fe8565b67ffffffffffffffff8111156128c4576128c36122a5565b5b6128ce8254612659565b6128d9828285612815565b600060209050601f83116001811461290c57600084156128fa578287015190505b6129048582612886565b86555061296c565b601f19841661291a866126f6565b60005b828110156129425784890151825560018201915060208501945060208101905061291d565b8683101561295f578489015161295b601f891682612868565b8355505b6001600288020188555050505b505050505050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b60006129aa601783611ff3565b91506129b582612974565b602082019050919050565b600060208201905081810360008301526129d98161299d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a1a8261209a565b9150612a258361209a565b9250828201905080821115612a3d57612a3c6129e0565b5b92915050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000612a79601783611ff3565b9150612a8482612a43565b602082019050919050565b60006020820190508181036000830152612aa881612a6c565b9050919050565b6000612aba8261209a565b9150612ac58361209a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612afe57612afd6129e0565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b6000612b3f601883611ff3565b9150612b4a82612b09565b602082019050919050565b60006020820190508181036000830152612b6e81612b32565b9050919050565b7f546f6f206d616e7920666f722054780000000000000000000000000000000000600082015250565b6000612bab600f83611ff3565b9150612bb682612b75565b602082019050919050565b60006020820190508181036000830152612bda81612b9e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612c3d602f83611ff3565b9150612c4882612be1565b604082019050919050565b60006020820190508181036000830152612c6c81612c30565b9050919050565b600081905092915050565b60008154612c8b81612659565b612c958186612c73565b94506001821660008114612cb05760018114612cc557612cf8565b60ff1983168652811515820286019350612cf8565b612cce856126f6565b60005b83811015612cf057815481890152600182019150602081019050612cd1565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000612d37600183612c73565b9150612d4282612d01565b600182019050919050565b6000612d5882611fe8565b612d628185612c73565b9350612d72818560208601612004565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612db4600583612c73565b9150612dbf82612d7e565b600582019050919050565b6000612dd68285612c7e565b9150612de182612d2a565b9150612ded8284612d4d565b9150612df882612da7565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000612e3a601383611ff3565b9150612e4582612e04565b602082019050919050565b60006020820190508181036000830152612e6981612e2d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ecc602683611ff3565b9150612ed782612e70565b604082019050919050565b60006020820190508181036000830152612efb81612ebf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f38602083611ff3565b9150612f4382612f02565b602082019050919050565b60006020820190508181036000830152612f6781612f2b565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000612fa4601d83611ff3565b9150612faf82612f6e565b602082019050919050565b60006020820190508181036000830152612fd381612f97565b9050919050565b600081905092915050565b50565b6000612ff5600083612fda565b915061300082612fe5565b600082019050919050565b600061301682612fe8565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061307c603a83611ff3565b915061308782613020565b604082019050919050565b600060208201905081810360008301526130ab8161306f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130d9826130b2565b6130e381856130bd565b93506130f3818560208601612004565b6130fc8161202e565b840191505092915050565b600060808201905061311c6000830187612159565b6131296020830186612159565b61313660408301856120a4565b818103606083015261314881846130ce565b905095945050505050565b60008151905061316281611f59565b92915050565b60006020828403121561317e5761317d611f23565b5b600061318c84828501613153565b91505092915050565b60006131a08261209a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131d2576131d16129e0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132178261209a565b91506132228361209a565b925082613232576132316131dd565b5b828204905092915050565b60006132488261209a565b91506132538361209a565b925082820390508181111561326b5761326a6129e0565b5b92915050565b600061327c8261209a565b91506132878361209a565b925082613297576132966131dd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212201d56ffae04cefea97a8bc03d54c833e5e7b2324facffb21f4d25d8a50511cdf464736f6c63430008100033697066733a2f2f626166796265696665346932726c6a336776327a716169786866327a6f7979627a636f696a706665366f636b646970616d7475757a656468617065
Deployed Bytecode
0x6080604052600436106101c25760003560e01c806370a08231116100f7578063b88d4fde11610095578063d5abeb0111610064578063d5abeb011461060b578063e985e9c514610636578063f2a3013e14610673578063f2fde38b1461069c576101c2565b8063b88d4fde1461054f578063c6a91b4214610578578063c87b56dd146105a3578063d547cfb7146105e0576101c2565b806395d89b41116100d157806395d89b41146104b65780639e9fcffc146104e1578063a0712d681461050a578063a22cb46514610526576101c2565b806370a0823114610437578063715018a6146104745780638da5cb5b1461048b576101c2565b80631e84c413116101645780633ccfd60b1161013e5780633ccfd60b1461039157806342842e0e146103a857806355f804b3146103d15780636352211e146103fa576101c2565b80631e84c4131461031457806323b872dd1461033f57806328cad13d14610368576101c2565b8063081812fc116101a0578063081812fc1461025a578063095ea7b31461029757806318160ddd146102c05780631919fed7146102eb576101c2565b806301ffc9a7146101c757806306fdde031461020457806307e89ec01461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190611f85565b6106c5565b6040516101fb9190611fcd565b60405180910390f35b34801561021057600080fd5b50610219610757565b6040516102269190612078565b60405180910390f35b34801561023b57600080fd5b506102446107e9565b60405161025191906120b3565b60405180910390f35b34801561026657600080fd5b50610281600480360381019061027c91906120fa565b6107ef565b60405161028e9190612168565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b991906121af565b61086e565b005b3480156102cc57600080fd5b506102d56109b2565b6040516102e291906120b3565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d91906120fa565b6109c9565b005b34801561032057600080fd5b506103296109db565b6040516103369190611fcd565b60405180910390f35b34801561034b57600080fd5b50610366600480360381019061036191906121ef565b6109ee565b005b34801561037457600080fd5b5061038f600480360381019061038a919061226e565b610d10565b005b34801561039d57600080fd5b506103a6610d35565b005b3480156103b457600080fd5b506103cf60048036038101906103ca91906121ef565b610d9e565b005b3480156103dd57600080fd5b506103f860048036038101906103f391906123d0565b610dbe565b005b34801561040657600080fd5b50610421600480360381019061041c91906120fa565b610dd9565b60405161042e9190612168565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190612419565b610deb565b60405161046b91906120b3565b60405180910390f35b34801561048057600080fd5b50610489610ea3565b005b34801561049757600080fd5b506104a0610eb7565b6040516104ad9190612168565b60405180910390f35b3480156104c257600080fd5b506104cb610ee1565b6040516104d89190612078565b60405180910390f35b3480156104ed57600080fd5b50610508600480360381019061050391906120fa565b610f73565b005b610524600480360381019061051f91906120fa565b610f85565b005b34801561053257600080fd5b5061054d60048036038101906105489190612446565b6110cd565b005b34801561055b57600080fd5b5061057660048036038101906105719190612527565b611244565b005b34801561058457600080fd5b5061058d6112b7565b60405161059a91906120b3565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c591906120fa565b6112bd565b6040516105d79190612078565b60405180910390f35b3480156105ec57600080fd5b506105f5611339565b6040516106029190612078565b60405180910390f35b34801561061757600080fd5b506106206113c7565b60405161062d91906120b3565b60405180910390f35b34801561064257600080fd5b5061065d600480360381019061065891906125aa565b6113cd565b60405161066a9190611fcd565b60405180910390f35b34801561067f57600080fd5b5061069a600480360381019061069591906125ea565b611461565b005b3480156106a857600080fd5b506106c360048036038101906106be9190612419565b611511565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107505750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076690612659565b80601f016020809104026020016040519081016040528092919081815260200182805461079290612659565b80156107df5780601f106107b4576101008083540402835291602001916107df565b820191906000526020600020905b8154815290600101906020018083116107c257829003601f168201915b5050505050905090565b600d5481565b60006107fa82611594565b610830576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087982610dd9565b90508073ffffffffffffffffffffffffffffffffffffffff1661089a6115f3565b73ffffffffffffffffffffffffffffffffffffffff16146108fd576108c6816108c16115f3565b6113cd565b6108fc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109bc6115fb565b6001546000540303905090565b6109d1611604565b80600d8190555050565b600e60009054906101000a900460ff1681565b60006109f982611682565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a60576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a6c8461174e565b91509150610a828187610a7d6115f3565b611775565b610ace57610a9786610a926115f3565b6113cd565b610acd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b34576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4186868660016117b9565b8015610b4c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c1a85610bf68888876117bf565b7c0200000000000000000000000000000000000000000000000000000000176117e7565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ca05760006001850190506000600460008381526020019081526020016000205403610c9e576000548114610c9d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d088686866001611812565b505050505050565b610d18611604565b80600e60006101000a81548160ff02191690831515021790555050565b610d3d611604565b600260095403610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d79906126d6565b60405180910390fd5b6002600981905550610d943347611818565b6001600981905550565b610db983838360405180602001604052806000815250611244565b505050565b610dc6611604565b80600a9081610dd591906128a2565b5050565b6000610de482611682565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e52576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eab611604565b610eb5600061190c565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ef090612659565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1c90612659565b8015610f695780601f10610f3e57610100808354040283529160200191610f69565b820191906000526020600020905b815481529060010190602001808311610f4c57829003601f168201915b5050505050905090565b610f7b611604565b80600c8190555050565b600e60009054906101000a900460ff16610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb906129c0565b60405180910390fd5b600b5481610fe06109b2565b610fea9190612a0f565b111561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290612a8f565b60405180910390fd5b3481600d5461103a9190612aaf565b111561107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290612b55565b60405180910390fd5b600c548111156110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790612bc1565b60405180910390fd5b6110ca33826119d2565b50565b6110d56115f3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611139576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111466115f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111f36115f3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112389190611fcd565b60405180910390a35050565b61124f8484846109ee565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112b15761127a848484846119f0565b6112b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b60606112c882611594565b611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90612c53565b60405180910390fd5b600a61131283611b40565b604051602001611323929190612dca565b6040516020818303038152906040529050919050565b600a805461134690612659565b80601f016020809104026020016040519081016040528092919081815260200182805461137290612659565b80156113bf5780601f10611394576101008083540402835291602001916113bf565b820191906000526020600020905b8154815290600101906020018083116113a257829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611469611604565b600082116114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390612e50565b60405180910390fd5b600b54826114b86109b2565b6114c29190612a0f565b1115611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90612a8f565b60405180910390fd5b61150d81836119d2565b5050565b611519611604565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f90612ee2565b60405180910390fd5b6115918161190c565b50565b60008161159f6115fb565b111580156115ae575060005482105b80156115ec575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b61160c611ca0565b73ffffffffffffffffffffffffffffffffffffffff1661162a610eb7565b73ffffffffffffffffffffffffffffffffffffffff1614611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790612f4e565b60405180910390fd5b565b600080829050806116916115fb565b11611717576000548110156117165760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611714575b6000810361170a5760046000836001900393508381526020019081526020016000205490506116e0565b8092505050611749565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117d6868684611ca8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b8047101561185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290612fba565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516118819061300b565b60006040518083038185875af1925050503d80600081146118be576040519150601f19603f3d011682016040523d82523d6000602084013e6118c3565b606091505b5050905080611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe90613092565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119ec828260405180602001604052806000815250611cb1565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a166115f3565b8786866040518563ffffffff1660e01b8152600401611a389493929190613107565b6020604051808303816000875af1925050508015611a7457506040513d601f19601f82011682018060405250810190611a719190613168565b60015b611aed573d8060008114611aa4576040519150601f19603f3d011682016040523d82523d6000602084013e611aa9565b606091505b506000815103611ae5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611b87576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c9b565b600082905060005b60008214611bb9578080611ba290613195565b915050600a82611bb2919061320c565b9150611b8f565b60008167ffffffffffffffff811115611bd557611bd46122a5565b5b6040519080825280601f01601f191660200182016040528015611c075781602001600182028036833780820191505090505b5090505b60008514611c9457600182611c20919061323d565b9150600a85611c2f9190613271565b6030611c3b9190612a0f565b60f81b818381518110611c5157611c506132a2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c8d919061320c565b9450611c0b565b8093505050505b919050565b600033905090565b60009392505050565b611cbb8383611d4e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d4957600080549050600083820390505b611cfb60008683806001019450866119f0565b611d31576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ce8578160005414611d4657600080fd5b50505b505050565b60008054905060008203611d8e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d9b60008483856117b9565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e1283611e0360008660006117bf565b611e0c85611f09565b176117e7565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611eb357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e78565b5060008203611eee576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f046000848385611812565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f6281611f2d565b8114611f6d57600080fd5b50565b600081359050611f7f81611f59565b92915050565b600060208284031215611f9b57611f9a611f23565b5b6000611fa984828501611f70565b91505092915050565b60008115159050919050565b611fc781611fb2565b82525050565b6000602082019050611fe26000830184611fbe565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612022578082015181840152602081019050612007565b60008484015250505050565b6000601f19601f8301169050919050565b600061204a82611fe8565b6120548185611ff3565b9350612064818560208601612004565b61206d8161202e565b840191505092915050565b60006020820190508181036000830152612092818461203f565b905092915050565b6000819050919050565b6120ad8161209a565b82525050565b60006020820190506120c860008301846120a4565b92915050565b6120d78161209a565b81146120e257600080fd5b50565b6000813590506120f4816120ce565b92915050565b6000602082840312156121105761210f611f23565b5b600061211e848285016120e5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061215282612127565b9050919050565b61216281612147565b82525050565b600060208201905061217d6000830184612159565b92915050565b61218c81612147565b811461219757600080fd5b50565b6000813590506121a981612183565b92915050565b600080604083850312156121c6576121c5611f23565b5b60006121d48582860161219a565b92505060206121e5858286016120e5565b9150509250929050565b60008060006060848603121561220857612207611f23565b5b60006122168682870161219a565b93505060206122278682870161219a565b9250506040612238868287016120e5565b9150509250925092565b61224b81611fb2565b811461225657600080fd5b50565b60008135905061226881612242565b92915050565b60006020828403121561228457612283611f23565b5b600061229284828501612259565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122dd8261202e565b810181811067ffffffffffffffff821117156122fc576122fb6122a5565b5b80604052505050565b600061230f611f19565b905061231b82826122d4565b919050565b600067ffffffffffffffff82111561233b5761233a6122a5565b5b6123448261202e565b9050602081019050919050565b82818337600083830152505050565b600061237361236e84612320565b612305565b90508281526020810184848401111561238f5761238e6122a0565b5b61239a848285612351565b509392505050565b600082601f8301126123b7576123b661229b565b5b81356123c7848260208601612360565b91505092915050565b6000602082840312156123e6576123e5611f23565b5b600082013567ffffffffffffffff81111561240457612403611f28565b5b612410848285016123a2565b91505092915050565b60006020828403121561242f5761242e611f23565b5b600061243d8482850161219a565b91505092915050565b6000806040838503121561245d5761245c611f23565b5b600061246b8582860161219a565b925050602061247c85828601612259565b9150509250929050565b600067ffffffffffffffff8211156124a1576124a06122a5565b5b6124aa8261202e565b9050602081019050919050565b60006124ca6124c584612486565b612305565b9050828152602081018484840111156124e6576124e56122a0565b5b6124f1848285612351565b509392505050565b600082601f83011261250e5761250d61229b565b5b813561251e8482602086016124b7565b91505092915050565b6000806000806080858703121561254157612540611f23565b5b600061254f8782880161219a565b94505060206125608782880161219a565b9350506040612571878288016120e5565b925050606085013567ffffffffffffffff81111561259257612591611f28565b5b61259e878288016124f9565b91505092959194509250565b600080604083850312156125c1576125c0611f23565b5b60006125cf8582860161219a565b92505060206125e08582860161219a565b9150509250929050565b6000806040838503121561260157612600611f23565b5b600061260f858286016120e5565b92505060206126208582860161219a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061267157607f821691505b6020821081036126845761268361262a565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006126c0601f83611ff3565b91506126cb8261268a565b602082019050919050565b600060208201905081810360008301526126ef816126b3565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026127587fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261271b565b612762868361271b565b95508019841693508086168417925050509392505050565b6000819050919050565b600061279f61279a6127958461209a565b61277a565b61209a565b9050919050565b6000819050919050565b6127b983612784565b6127cd6127c5826127a6565b848454612728565b825550505050565b600090565b6127e26127d5565b6127ed8184846127b0565b505050565b5b81811015612811576128066000826127da565b6001810190506127f3565b5050565b601f82111561285657612827816126f6565b6128308461270b565b8101602085101561283f578190505b61285361284b8561270b565b8301826127f2565b50505b505050565b600082821c905092915050565b60006128796000198460080261285b565b1980831691505092915050565b60006128928383612868565b9150826002028217905092915050565b6128ab82611fe8565b67ffffffffffffffff8111156128c4576128c36122a5565b5b6128ce8254612659565b6128d9828285612815565b600060209050601f83116001811461290c57600084156128fa578287015190505b6129048582612886565b86555061296c565b601f19841661291a866126f6565b60005b828110156129425784890151825560018201915060208501945060208101905061291d565b8683101561295f578489015161295b601f891682612868565b8355505b6001600288020188555050505b505050505050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b60006129aa601783611ff3565b91506129b582612974565b602082019050919050565b600060208201905081810360008301526129d98161299d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a1a8261209a565b9150612a258361209a565b9250828201905080821115612a3d57612a3c6129e0565b5b92915050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000612a79601783611ff3565b9150612a8482612a43565b602082019050919050565b60006020820190508181036000830152612aa881612a6c565b9050919050565b6000612aba8261209a565b9150612ac58361209a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612afe57612afd6129e0565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b6000612b3f601883611ff3565b9150612b4a82612b09565b602082019050919050565b60006020820190508181036000830152612b6e81612b32565b9050919050565b7f546f6f206d616e7920666f722054780000000000000000000000000000000000600082015250565b6000612bab600f83611ff3565b9150612bb682612b75565b602082019050919050565b60006020820190508181036000830152612bda81612b9e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612c3d602f83611ff3565b9150612c4882612be1565b604082019050919050565b60006020820190508181036000830152612c6c81612c30565b9050919050565b600081905092915050565b60008154612c8b81612659565b612c958186612c73565b94506001821660008114612cb05760018114612cc557612cf8565b60ff1983168652811515820286019350612cf8565b612cce856126f6565b60005b83811015612cf057815481890152600182019150602081019050612cd1565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000612d37600183612c73565b9150612d4282612d01565b600182019050919050565b6000612d5882611fe8565b612d628185612c73565b9350612d72818560208601612004565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612db4600583612c73565b9150612dbf82612d7e565b600582019050919050565b6000612dd68285612c7e565b9150612de182612d2a565b9150612ded8284612d4d565b9150612df882612da7565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000612e3a601383611ff3565b9150612e4582612e04565b602082019050919050565b60006020820190508181036000830152612e6981612e2d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ecc602683611ff3565b9150612ed782612e70565b604082019050919050565b60006020820190508181036000830152612efb81612ebf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f38602083611ff3565b9150612f4382612f02565b602082019050919050565b60006020820190508181036000830152612f6781612f2b565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000612fa4601d83611ff3565b9150612faf82612f6e565b602082019050919050565b60006020820190508181036000830152612fd381612f97565b9050919050565b600081905092915050565b50565b6000612ff5600083612fda565b915061300082612fe5565b600082019050919050565b600061301682612fe8565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061307c603a83611ff3565b915061308782613020565b604082019050919050565b600060208201905081810360008301526130ab8161306f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130d9826130b2565b6130e381856130bd565b93506130f3818560208601612004565b6130fc8161202e565b840191505092915050565b600060808201905061311c6000830187612159565b6131296020830186612159565b61313660408301856120a4565b818103606083015261314881846130ce565b905095945050505050565b60008151905061316281611f59565b92915050565b60006020828403121561317e5761317d611f23565b5b600061318c84828501613153565b91505092915050565b60006131a08261209a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131d2576131d16129e0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132178261209a565b91506132228361209a565b925082613232576132316131dd565b5b828204905092915050565b60006132488261209a565b91506132538361209a565b925082820390508181111561326b5761326a6129e0565b5b92915050565b600061327c8261209a565b91506132878361209a565b925082613297576132966131dd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212201d56ffae04cefea97a8bc03d54c833e5e7b2324facffb21f4d25d8a50511cdf464736f6c63430008100033
Deployed Bytecode Sourcemap
91619:2529:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59146:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60048:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91922:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66531:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65972:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55799:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93745:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91978:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70238:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93589:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94003:142;;;;;;;;;;;;;:::i;:::-;;73151:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92583:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61441:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56983:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8065:103;;;;;;;;;;;;;:::i;:::-;;7417:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60224:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93866:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92090:485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67089:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73934:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91881:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93130:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91739:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91845:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67554:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92806:316;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8323:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59146:639;59231:4;59570:10;59555:25;;:11;:25;;;;:102;;;;59647:10;59632:25;;:11;:25;;;;59555:102;:179;;;;59724:10;59709:25;;:11;:25;;;;59555:179;59535:199;;59146:639;;;:::o;60048:100::-;60102:13;60135:5;60128:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60048:100;:::o;91922:47::-;;;;:::o;66531:218::-;66607:7;66632:16;66640:7;66632;:16::i;:::-;66627:64;;66657:34;;;;;;;;;;;;;;66627:64;66711:15;:24;66727:7;66711:24;;;;;;;;;;;:30;;;;;;;;;;;;66704:37;;66531:218;;;:::o;65972:400::-;66053:13;66069:16;66077:7;66069;:16::i;:::-;66053:32;;66125:5;66102:28;;:19;:17;:19::i;:::-;:28;;;66098:175;;66150:44;66167:5;66174:19;:17;:19::i;:::-;66150:16;:44::i;:::-;66145:128;;66222:35;;;;;;;;;;;;;;66145:128;66098:175;66318:2;66285:15;:24;66301:7;66285:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;66356:7;66352:2;66336:28;;66345:5;66336:28;;;;;;;;;;;;66042:330;65972:400;;:::o;55799:323::-;55860:7;56088:15;:13;:15::i;:::-;56073:12;;56057:13;;:28;:46;56050:53;;55799:323;:::o;93745:115::-;7303:13;:11;:13::i;:::-;93848:6:::1;93828:17;:26;;;;93745:115:::0;:::o;91978:38::-;;;;;;;;;;;;;:::o;70238:2817::-;70372:27;70402;70421:7;70402:18;:27::i;:::-;70372:57;;70487:4;70446:45;;70462:19;70446:45;;;70442:86;;70500:28;;;;;;;;;;;;;;70442:86;70542:27;70571:23;70598:35;70625:7;70598:26;:35::i;:::-;70541:92;;;;70733:68;70758:15;70775:4;70781:19;:17;:19::i;:::-;70733:24;:68::i;:::-;70728:180;;70821:43;70838:4;70844:19;:17;:19::i;:::-;70821:16;:43::i;:::-;70816:92;;70873:35;;;;;;;;;;;;;;70816:92;70728:180;70939:1;70925:16;;:2;:16;;;70921:52;;70950:23;;;;;;;;;;;;;;70921:52;70986:43;71008:4;71014:2;71018:7;71027:1;70986:21;:43::i;:::-;71122:15;71119:160;;;71262:1;71241:19;71234:30;71119:160;71659:18;:24;71678:4;71659:24;;;;;;;;;;;;;;;;71657:26;;;;;;;;;;;;71728:18;:22;71747:2;71728:22;;;;;;;;;;;;;;;;71726:24;;;;;;;;;;;72050:146;72087:2;72136:45;72151:4;72157:2;72161:19;72136:14;:45::i;:::-;52198:8;72108:73;72050:18;:146::i;:::-;72021:17;:26;72039:7;72021:26;;;;;;;;;;;:175;;;;72367:1;52198:8;72316:19;:47;:52;72312:627;;72389:19;72421:1;72411:7;:11;72389:33;;72578:1;72544:17;:30;72562:11;72544:30;;;;;;;;;;;;:35;72540:384;;72682:13;;72667:11;:28;72663:242;;72862:19;72829:17;:30;72847:11;72829:30;;;;;;;;;;;:52;;;;72663:242;72540:384;72370:569;72312:627;72986:7;72982:2;72967:27;;72976:4;72967:27;;;;;;;;;;;;73005:42;73026:4;73032:2;73036:7;73045:1;73005:20;:42::i;:::-;70361:2694;;;70238:2817;;;:::o;93589:148::-;7303:13;:11;:13::i;:::-;93712:19:::1;93691:18;;:40;;;;;;;;;;;;;;;;;;93589:148:::0;:::o;94003:142::-;7303:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19:::0;2435:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;94078:61:::2;94104:10;94117:21;94078:17;:61::i;:::-;1801:1:::1;2755:7;:22;;;;94003:142::o:0;73151:185::-;73289:39;73306:4;73312:2;73316:7;73289:39;;;;;;;;;;;;:16;:39::i;:::-;73151:185;;;:::o;92583:108::-;7303:13;:11;:13::i;:::-;92678:7:::1;92663:12;:22;;;;;;:::i;:::-;;92583:108:::0;:::o;61441:152::-;61513:7;61556:27;61575:7;61556:18;:27::i;:::-;61533:52;;61441:152;;;:::o;56983:233::-;57055:7;57096:1;57079:19;;:5;:19;;;57075:60;;57107:28;;;;;;;;;;;;;;57075:60;51142:13;57153:18;:25;57172:5;57153:25;;;;;;;;;;;;;;;;:55;57146:62;;56983:233;;;:::o;8065:103::-;7303:13;:11;:13::i;:::-;8130:30:::1;8157:1;8130:18;:30::i;:::-;8065:103::o:0;7417:87::-;7463:7;7490:6;;;;;;;;;;;7483:13;;7417:87;:::o;60224:104::-;60280:13;60313:7;60306:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60224:104;:::o;93866:127::-;7303:13;:11;:13::i;:::-;93981:6:::1;93962:16;:25;;;;93866:127:::0;:::o;92090:485::-;92177:18;;;;;;;;;;;92169:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;92280:9;;92262:14;92246:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;92230:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;92399:9;92380:14;92360:17;;:34;;;;:::i;:::-;92359:49;;92337:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;92489:16;;92471:14;:34;;92463:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;92532:37;92542:10;92554:14;92532:9;:37::i;:::-;92090:485;:::o;67089:308::-;67200:19;:17;:19::i;:::-;67188:31;;:8;:31;;;67184:61;;67228:17;;;;;;;;;;;;;;67184:61;67310:8;67258:18;:39;67277:19;:17;:19::i;:::-;67258:39;;;;;;;;;;;;;;;:49;67298:8;67258:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;67370:8;67334:55;;67349:19;:17;:19::i;:::-;67334:55;;;67380:8;67334:55;;;;;;:::i;:::-;;;;;;;;67089:308;;:::o;73934:399::-;74101:31;74114:4;74120:2;74124:7;74101:12;:31::i;:::-;74165:1;74147:2;:14;;;:19;74143:183;;74186:56;74217:4;74223:2;74227:7;74236:5;74186:30;:56::i;:::-;74181:145;;74270:40;;;;;;;;;;;;;;74181:145;74143:183;73934:399;;;;:::o;91881:36::-;;;;:::o;93130:312::-;93226:13;93267:17;93275:8;93267:7;:17::i;:::-;93251:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;93387:12;93406:19;:8;:17;:19::i;:::-;93370:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;93356:80;;93130:312;;;:::o;91739:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;91845:31::-;;;;:::o;67554:164::-;67651:4;67675:18;:25;67694:5;67675:25;;;;;;;;;;;;;;;:35;67701:8;67675:35;;;;;;;;;;;;;;;;;;;;;;;;;67668:42;;67554:164;;;;:::o;92806:316::-;7303:13;:11;:13::i;:::-;92933:1:::1;92916:14;:18;92900:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;93028:9;;93010:14;92994:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;92978:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;93085:31;93095:4;93101:14;93085:9;:31::i;:::-;92806:316:::0;;:::o;8323:201::-;7303:13;:11;:13::i;:::-;8432:1:::1;8412:22;;:8;:22;;::::0;8404:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8488:28;8507:8;8488:18;:28::i;:::-;8323:201:::0;:::o;67976:282::-;68041:4;68097:7;68078:15;:13;:15::i;:::-;:26;;:66;;;;;68131:13;;68121:7;:23;68078:66;:153;;;;;68230:1;51918:8;68182:17;:26;68200:7;68182:26;;;;;;;;;;;;:44;:49;68078:153;68058:173;;67976:282;;;:::o;89742:105::-;89802:7;89829:10;89822:17;;89742:105;:::o;92699:101::-;92764:7;92791:1;92784:8;;92699:101;:::o;7582:132::-;7657:12;:10;:12::i;:::-;7646:23;;:7;:5;:7::i;:::-;:23;;;7638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7582:132::o;62596:1275::-;62663:7;62683:12;62698:7;62683:22;;62766:4;62747:15;:13;:15::i;:::-;:23;62743:1061;;62800:13;;62793:4;:20;62789:1015;;;62838:14;62855:17;:23;62873:4;62855:23;;;;;;;;;;;;62838:40;;62972:1;51918:8;62944:6;:24;:29;62940:845;;63609:113;63626:1;63616:6;:11;63609:113;;63669:17;:25;63687:6;;;;;;;63669:25;;;;;;;;;;;;63660:34;;63609:113;;;63755:6;63748:13;;;;;;62940:845;62815:989;62789:1015;62743:1061;63832:31;;;;;;;;;;;;;;62596:1275;;;;:::o;69139:479::-;69241:27;69270:23;69311:38;69352:15;:24;69368:7;69352:24;;;;;;;;;;;69311:65;;69523:18;69500:41;;69580:19;69574:26;69555:45;;69485:126;69139:479;;;:::o;68367:659::-;68516:11;68681:16;68674:5;68670:28;68661:37;;68841:16;68830:9;68826:32;68813:45;;68991:15;68980:9;68977:30;68969:5;68958:9;68955:20;68952:56;68942:66;;68367:659;;;;;:::o;74995:159::-;;;;;:::o;89051:311::-;89186:7;89206:16;52322:3;89232:19;:41;;89206:68;;52322:3;89300:31;89311:4;89317:2;89321:9;89300:10;:31::i;:::-;89292:40;;:62;;89285:69;;;89051:311;;;;;:::o;64419:450::-;64499:14;64667:16;64660:5;64656:28;64647:37;;64844:5;64830:11;64805:23;64801:41;64798:52;64791:5;64788:63;64778:73;;64419:450;;;;:::o;75819:158::-;;;;;:::o;11376:317::-;11491:6;11466:21;:31;;11458:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11545:12;11563:9;:14;;11585:6;11563:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11544:52;;;11615:7;11607:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;11447:246;11376:317;;:::o;8684:191::-;8758:16;8777:6;;;;;;;;;;;8758:25;;8803:8;8794:6;;:17;;;;;;;;;;;;;;;;;;8858:8;8827:40;;8848:8;8827:40;;;;;;;;;;;;8747:128;8684:191;:::o;83574:112::-;83651:27;83661:2;83665:8;83651:27;;;;;;;;;;;;:9;:27::i;:::-;83574:112;;:::o;76417:716::-;76580:4;76626:2;76601:45;;;76647:19;:17;:19::i;:::-;76668:4;76674:7;76683:5;76601:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;76597:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76901:1;76884:6;:13;:18;76880:235;;76930:40;;;;;;;;;;;;;;76880:235;77073:6;77067:13;77058:6;77054:2;77050:15;77043:38;76597:529;76770:54;;;76760:64;;;:6;:64;;;;76753:71;;;76417:716;;;;;;:::o;3222:723::-;3278:13;3508:1;3499:5;:10;3495:53;;3526:10;;;;;;;;;;;;;;;;;;;;;3495:53;3558:12;3573:5;3558:20;;3589:14;3614:78;3629:1;3621:4;:9;3614:78;;3647:8;;;;;:::i;:::-;;;;3678:2;3670:10;;;;;:::i;:::-;;;3614:78;;;3702:19;3734:6;3724:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3702:39;;3752:154;3768:1;3759:5;:10;3752:154;;3796:1;3786:11;;;;;:::i;:::-;;;3863:2;3855:5;:10;;;;:::i;:::-;3842:2;:24;;;;:::i;:::-;3829:39;;3812:6;3819;3812:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3892:2;3883:11;;;;;:::i;:::-;;;3752:154;;;3930:6;3916:21;;;;;3222:723;;;;:::o;5968:98::-;6021:7;6048:10;6041:17;;5968:98;:::o;88752:147::-;88889:6;88752:147;;;;;:::o;82801:689::-;82932:19;82938:2;82942:8;82932:5;:19::i;:::-;83011:1;82993:2;:14;;;:19;82989:483;;83033:11;83047:13;;83033:27;;83079:13;83101:8;83095:3;:14;83079:30;;83128:233;83159:62;83198:1;83202:2;83206:7;;;;;;83215:5;83159:30;:62::i;:::-;83154:167;;83257:40;;;;;;;;;;;;;;83154:167;83356:3;83348:5;:11;83128:233;;83443:3;83426:13;;:20;83422:34;;83448:8;;;83422:34;83014:458;;82989:483;82801:689;;;:::o;77595:2454::-;77668:20;77691:13;;77668:36;;77731:1;77719:8;:13;77715:44;;77741:18;;;;;;;;;;;;;;77715:44;77772:61;77802:1;77806:2;77810:12;77824:8;77772:21;:61::i;:::-;78316:1;51280:2;78286:1;:26;;78285:32;78273:8;:45;78247:18;:22;78266:2;78247:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;78595:139;78632:2;78686:33;78709:1;78713:2;78717:1;78686:14;:33::i;:::-;78653:30;78674:8;78653:20;:30::i;:::-;:66;78595:18;:139::i;:::-;78561:17;:31;78579:12;78561:31;;;;;;;;;;;:173;;;;78751:16;78782:11;78811:8;78796:12;:23;78782:37;;79066:16;79062:2;79058:25;79046:37;;79438:12;79398:8;79357:1;79295:25;79236:1;79175;79148:335;79563:1;79549:12;79545:20;79503:346;79604:3;79595:7;79592:16;79503:346;;79822:7;79812:8;79809:1;79782:25;79779:1;79776;79771:59;79657:1;79648:7;79644:15;79633:26;;79503:346;;;79507:77;79894:1;79882:8;:13;79878:45;;79904:19;;;;;;;;;;;;;;79878:45;79956:3;79940:13;:19;;;;78021:1950;;79981:60;80010:1;80014:2;80018:12;80032:8;79981:20;:60::i;:::-;77657:2392;77595:2454;;:::o;64971:324::-;65041:14;65274:1;65264:8;65261:15;65235:24;65231:46;65221:56;;64971:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:118::-;3030:24;3048:5;3030:24;:::i;:::-;3025:3;3018:37;2943:118;;:::o;3067:222::-;3160:4;3198:2;3187:9;3183:18;3175:26;;3211:71;3279:1;3268:9;3264:17;3255:6;3211:71;:::i;:::-;3067:222;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:116::-;5937:21;5952:5;5937:21;:::i;:::-;5930:5;5927:32;5917:60;;5973:1;5970;5963:12;5917:60;5867:116;:::o;5989:133::-;6032:5;6070:6;6057:20;6048:29;;6086:30;6110:5;6086:30;:::i;:::-;5989:133;;;;:::o;6128:323::-;6184:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:119;;;6239:79;;:::i;:::-;6201:119;6359:1;6384:50;6426:7;6417:6;6406:9;6402:22;6384:50;:::i;:::-;6374:60;;6330:114;6128:323;;;;:::o;6457:117::-;6566:1;6563;6556:12;6580:117;6689:1;6686;6679:12;6703:180;6751:77;6748:1;6741:88;6848:4;6845:1;6838:15;6872:4;6869:1;6862:15;6889:281;6972:27;6994:4;6972:27;:::i;:::-;6964:6;6960:40;7102:6;7090:10;7087:22;7066:18;7054:10;7051:34;7048:62;7045:88;;;7113:18;;:::i;:::-;7045:88;7153:10;7149:2;7142:22;6932:238;6889:281;;:::o;7176:129::-;7210:6;7237:20;;:::i;:::-;7227:30;;7266:33;7294:4;7286:6;7266:33;:::i;:::-;7176:129;;;:::o;7311:308::-;7373:4;7463:18;7455:6;7452:30;7449:56;;;7485:18;;:::i;:::-;7449:56;7523:29;7545:6;7523:29;:::i;:::-;7515:37;;7607:4;7601;7597:15;7589:23;;7311:308;;;:::o;7625:146::-;7722:6;7717:3;7712;7699:30;7763:1;7754:6;7749:3;7745:16;7738:27;7625:146;;;:::o;7777:425::-;7855:5;7880:66;7896:49;7938:6;7896:49;:::i;:::-;7880:66;:::i;:::-;7871:75;;7969:6;7962:5;7955:21;8007:4;8000:5;7996:16;8045:3;8036:6;8031:3;8027:16;8024:25;8021:112;;;8052:79;;:::i;:::-;8021:112;8142:54;8189:6;8184:3;8179;8142:54;:::i;:::-;7861:341;7777:425;;;;;:::o;8222:340::-;8278:5;8327:3;8320:4;8312:6;8308:17;8304:27;8294:122;;8335:79;;:::i;:::-;8294:122;8452:6;8439:20;8477:79;8552:3;8544:6;8537:4;8529:6;8525:17;8477:79;:::i;:::-;8468:88;;8284:278;8222:340;;;;:::o;8568:509::-;8637:6;8686:2;8674:9;8665:7;8661:23;8657:32;8654:119;;;8692:79;;:::i;:::-;8654:119;8840:1;8829:9;8825:17;8812:31;8870:18;8862:6;8859:30;8856:117;;;8892:79;;:::i;:::-;8856:117;8997:63;9052:7;9043:6;9032:9;9028:22;8997:63;:::i;:::-;8987:73;;8783:287;8568:509;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:468::-;9483:6;9491;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9764:115;9418:468;;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:::-;12488:6;12496;12545:2;12533:9;12524:7;12520:23;12516:32;12513:119;;;12551:79;;:::i;:::-;12513:119;12671:1;12696:53;12741:7;12732:6;12721:9;12717:22;12696:53;:::i;:::-;12686:63;;12642:117;12798:2;12824:53;12869:7;12860:6;12849:9;12845:22;12824:53;:::i;:::-;12814:63;;12769:118;12420:474;;;;;:::o;12900:180::-;12948:77;12945:1;12938:88;13045:4;13042:1;13035:15;13069:4;13066:1;13059:15;13086:320;13130:6;13167:1;13161:4;13157:12;13147:22;;13214:1;13208:4;13204:12;13235:18;13225:81;;13291:4;13283:6;13279:17;13269:27;;13225:81;13353:2;13345:6;13342:14;13322:18;13319:38;13316:84;;13372:18;;:::i;:::-;13316:84;13137:269;13086:320;;;:::o;13412:181::-;13552:33;13548:1;13540:6;13536:14;13529:57;13412:181;:::o;13599:366::-;13741:3;13762:67;13826:2;13821:3;13762:67;:::i;:::-;13755:74;;13838:93;13927:3;13838:93;:::i;:::-;13956:2;13951:3;13947:12;13940:19;;13599:366;;;:::o;13971:419::-;14137:4;14175:2;14164:9;14160:18;14152:26;;14224:9;14218:4;14214:20;14210:1;14199:9;14195:17;14188:47;14252:131;14378:4;14252:131;:::i;:::-;14244:139;;13971:419;;;:::o;14396:141::-;14445:4;14468:3;14460:11;;14491:3;14488:1;14481:14;14525:4;14522:1;14512:18;14504:26;;14396:141;;;:::o;14543:93::-;14580:6;14627:2;14622;14615:5;14611:14;14607:23;14597:33;;14543:93;;;:::o;14642:107::-;14686:8;14736:5;14730:4;14726:16;14705:37;;14642:107;;;;:::o;14755:393::-;14824:6;14874:1;14862:10;14858:18;14897:97;14927:66;14916:9;14897:97;:::i;:::-;15015:39;15045:8;15034:9;15015:39;:::i;:::-;15003:51;;15087:4;15083:9;15076:5;15072:21;15063:30;;15136:4;15126:8;15122:19;15115:5;15112:30;15102:40;;14831:317;;14755:393;;;;;:::o;15154:60::-;15182:3;15203:5;15196:12;;15154:60;;;:::o;15220:142::-;15270:9;15303:53;15321:34;15330:24;15348:5;15330:24;:::i;:::-;15321:34;:::i;:::-;15303:53;:::i;:::-;15290:66;;15220:142;;;:::o;15368:75::-;15411:3;15432:5;15425:12;;15368:75;;;:::o;15449:269::-;15559:39;15590:7;15559:39;:::i;:::-;15620:91;15669:41;15693:16;15669:41;:::i;:::-;15661:6;15654:4;15648:11;15620:91;:::i;:::-;15614:4;15607:105;15525:193;15449:269;;;:::o;15724:73::-;15769:3;15724:73;:::o;15803:189::-;15880:32;;:::i;:::-;15921:65;15979:6;15971;15965:4;15921:65;:::i;:::-;15856:136;15803:189;;:::o;15998:186::-;16058:120;16075:3;16068:5;16065:14;16058:120;;;16129:39;16166:1;16159:5;16129:39;:::i;:::-;16102:1;16095:5;16091:13;16082:22;;16058:120;;;15998:186;;:::o;16190:543::-;16291:2;16286:3;16283:11;16280:446;;;16325:38;16357:5;16325:38;:::i;:::-;16409:29;16427:10;16409:29;:::i;:::-;16399:8;16395:44;16592:2;16580:10;16577:18;16574:49;;;16613:8;16598:23;;16574:49;16636:80;16692:22;16710:3;16692:22;:::i;:::-;16682:8;16678:37;16665:11;16636:80;:::i;:::-;16295:431;;16280:446;16190:543;;;:::o;16739:117::-;16793:8;16843:5;16837:4;16833:16;16812:37;;16739:117;;;;:::o;16862:169::-;16906:6;16939:51;16987:1;16983:6;16975:5;16972:1;16968:13;16939:51;:::i;:::-;16935:56;17020:4;17014;17010:15;17000:25;;16913:118;16862:169;;;;:::o;17036:295::-;17112:4;17258:29;17283:3;17277:4;17258:29;:::i;:::-;17250:37;;17320:3;17317:1;17313:11;17307:4;17304:21;17296:29;;17036:295;;;;:::o;17336:1395::-;17453:37;17486:3;17453:37;:::i;:::-;17555:18;17547:6;17544:30;17541:56;;;17577:18;;:::i;:::-;17541:56;17621:38;17653:4;17647:11;17621:38;:::i;:::-;17706:67;17766:6;17758;17752:4;17706:67;:::i;:::-;17800:1;17824:4;17811:17;;17856:2;17848:6;17845:14;17873:1;17868:618;;;;18530:1;18547:6;18544:77;;;18596:9;18591:3;18587:19;18581:26;18572:35;;18544:77;18647:67;18707:6;18700:5;18647:67;:::i;:::-;18641:4;18634:81;18503:222;17838:887;;17868:618;17920:4;17916:9;17908:6;17904:22;17954:37;17986:4;17954:37;:::i;:::-;18013:1;18027:208;18041:7;18038:1;18035:14;18027:208;;;18120:9;18115:3;18111:19;18105:26;18097:6;18090:42;18171:1;18163:6;18159:14;18149:24;;18218:2;18207:9;18203:18;18190:31;;18064:4;18061:1;18057:12;18052:17;;18027:208;;;18263:6;18254:7;18251:19;18248:179;;;18321:9;18316:3;18312:19;18306:26;18364:48;18406:4;18398:6;18394:17;18383:9;18364:48;:::i;:::-;18356:6;18349:64;18271:156;18248:179;18473:1;18469;18461:6;18457:14;18453:22;18447:4;18440:36;17875:611;;;17838:887;;17428:1303;;;17336:1395;;:::o;18737:173::-;18877:25;18873:1;18865:6;18861:14;18854:49;18737:173;:::o;18916:366::-;19058:3;19079:67;19143:2;19138:3;19079:67;:::i;:::-;19072:74;;19155:93;19244:3;19155:93;:::i;:::-;19273:2;19268:3;19264:12;19257:19;;18916:366;;;:::o;19288:419::-;19454:4;19492:2;19481:9;19477:18;19469:26;;19541:9;19535:4;19531:20;19527:1;19516:9;19512:17;19505:47;19569:131;19695:4;19569:131;:::i;:::-;19561:139;;19288:419;;;:::o;19713:180::-;19761:77;19758:1;19751:88;19858:4;19855:1;19848:15;19882:4;19879:1;19872:15;19899:191;19939:3;19958:20;19976:1;19958:20;:::i;:::-;19953:25;;19992:20;20010:1;19992:20;:::i;:::-;19987:25;;20035:1;20032;20028:9;20021:16;;20056:3;20053:1;20050:10;20047:36;;;20063:18;;:::i;:::-;20047:36;19899:191;;;;:::o;20096:173::-;20236:25;20232:1;20224:6;20220:14;20213:49;20096:173;:::o;20275:366::-;20417:3;20438:67;20502:2;20497:3;20438:67;:::i;:::-;20431:74;;20514:93;20603:3;20514:93;:::i;:::-;20632:2;20627:3;20623:12;20616:19;;20275:366;;;:::o;20647:419::-;20813:4;20851:2;20840:9;20836:18;20828:26;;20900:9;20894:4;20890:20;20886:1;20875:9;20871:17;20864:47;20928:131;21054:4;20928:131;:::i;:::-;20920:139;;20647:419;;;:::o;21072:348::-;21112:7;21135:20;21153:1;21135:20;:::i;:::-;21130:25;;21169:20;21187:1;21169:20;:::i;:::-;21164:25;;21357:1;21289:66;21285:74;21282:1;21279:81;21274:1;21267:9;21260:17;21256:105;21253:131;;;21364:18;;:::i;:::-;21253:131;21412:1;21409;21405:9;21394:20;;21072:348;;;;:::o;21426:174::-;21566:26;21562:1;21554:6;21550:14;21543:50;21426:174;:::o;21606:366::-;21748:3;21769:67;21833:2;21828:3;21769:67;:::i;:::-;21762:74;;21845:93;21934:3;21845:93;:::i;:::-;21963:2;21958:3;21954:12;21947:19;;21606:366;;;:::o;21978:419::-;22144:4;22182:2;22171:9;22167:18;22159:26;;22231:9;22225:4;22221:20;22217:1;22206:9;22202:17;22195:47;22259:131;22385:4;22259:131;:::i;:::-;22251:139;;21978:419;;;:::o;22403:165::-;22543:17;22539:1;22531:6;22527:14;22520:41;22403:165;:::o;22574:366::-;22716:3;22737:67;22801:2;22796:3;22737:67;:::i;:::-;22730:74;;22813:93;22902:3;22813:93;:::i;:::-;22931:2;22926:3;22922:12;22915:19;;22574:366;;;:::o;22946:419::-;23112:4;23150:2;23139:9;23135:18;23127:26;;23199:9;23193:4;23189:20;23185:1;23174:9;23170:17;23163:47;23227:131;23353:4;23227:131;:::i;:::-;23219:139;;22946:419;;;:::o;23371:234::-;23511:34;23507:1;23499:6;23495:14;23488:58;23580:17;23575:2;23567:6;23563:15;23556:42;23371:234;:::o;23611:366::-;23753:3;23774:67;23838:2;23833:3;23774:67;:::i;:::-;23767:74;;23850:93;23939:3;23850:93;:::i;:::-;23968:2;23963:3;23959:12;23952:19;;23611:366;;;:::o;23983:419::-;24149:4;24187:2;24176:9;24172:18;24164:26;;24236:9;24230:4;24226:20;24222:1;24211:9;24207:17;24200:47;24264:131;24390:4;24264:131;:::i;:::-;24256:139;;23983:419;;;:::o;24408:148::-;24510:11;24547:3;24532:18;;24408:148;;;;:::o;24586:874::-;24689:3;24726:5;24720:12;24755:36;24781:9;24755:36;:::i;:::-;24807:89;24889:6;24884:3;24807:89;:::i;:::-;24800:96;;24927:1;24916:9;24912:17;24943:1;24938:166;;;;25118:1;25113:341;;;;24905:549;;24938:166;25022:4;25018:9;25007;25003:25;24998:3;24991:38;25084:6;25077:14;25070:22;25062:6;25058:35;25053:3;25049:45;25042:52;;24938:166;;25113:341;25180:38;25212:5;25180:38;:::i;:::-;25240:1;25254:154;25268:6;25265:1;25262:13;25254:154;;;25342:7;25336:14;25332:1;25327:3;25323:11;25316:35;25392:1;25383:7;25379:15;25368:26;;25290:4;25287:1;25283:12;25278:17;;25254:154;;;25437:6;25432:3;25428:16;25421:23;;25120:334;;24905:549;;24693:767;;24586:874;;;;:::o;25466:151::-;25606:3;25602:1;25594:6;25590:14;25583:27;25466:151;:::o;25623:400::-;25783:3;25804:84;25886:1;25881:3;25804:84;:::i;:::-;25797:91;;25897:93;25986:3;25897:93;:::i;:::-;26015:1;26010:3;26006:11;25999:18;;25623:400;;;:::o;26029:390::-;26135:3;26163:39;26196:5;26163:39;:::i;:::-;26218:89;26300:6;26295:3;26218:89;:::i;:::-;26211:96;;26316:65;26374:6;26369:3;26362:4;26355:5;26351:16;26316:65;:::i;:::-;26406:6;26401:3;26397:16;26390:23;;26139:280;26029:390;;;;:::o;26425:155::-;26565:7;26561:1;26553:6;26549:14;26542:31;26425:155;:::o;26586:400::-;26746:3;26767:84;26849:1;26844:3;26767:84;:::i;:::-;26760:91;;26860:93;26949:3;26860:93;:::i;:::-;26978:1;26973:3;26969:11;26962:18;;26586:400;;;:::o;26992:961::-;27371:3;27393:92;27481:3;27472:6;27393:92;:::i;:::-;27386:99;;27502:148;27646:3;27502:148;:::i;:::-;27495:155;;27667:95;27758:3;27749:6;27667:95;:::i;:::-;27660:102;;27779:148;27923:3;27779:148;:::i;:::-;27772:155;;27944:3;27937:10;;26992:961;;;;;:::o;27959:169::-;28099:21;28095:1;28087:6;28083:14;28076:45;27959:169;:::o;28134:366::-;28276:3;28297:67;28361:2;28356:3;28297:67;:::i;:::-;28290:74;;28373:93;28462:3;28373:93;:::i;:::-;28491:2;28486:3;28482:12;28475:19;;28134:366;;;:::o;28506:419::-;28672:4;28710:2;28699:9;28695:18;28687:26;;28759:9;28753:4;28749:20;28745:1;28734:9;28730:17;28723:47;28787:131;28913:4;28787:131;:::i;:::-;28779:139;;28506:419;;;:::o;28931:225::-;29071:34;29067:1;29059:6;29055:14;29048:58;29140:8;29135:2;29127:6;29123:15;29116:33;28931:225;:::o;29162:366::-;29304:3;29325:67;29389:2;29384:3;29325:67;:::i;:::-;29318:74;;29401:93;29490:3;29401:93;:::i;:::-;29519:2;29514:3;29510:12;29503:19;;29162:366;;;:::o;29534:419::-;29700:4;29738:2;29727:9;29723:18;29715:26;;29787:9;29781:4;29777:20;29773:1;29762:9;29758:17;29751:47;29815:131;29941:4;29815:131;:::i;:::-;29807:139;;29534:419;;;:::o;29959:182::-;30099:34;30095:1;30087:6;30083:14;30076:58;29959:182;:::o;30147:366::-;30289:3;30310:67;30374:2;30369:3;30310:67;:::i;:::-;30303:74;;30386:93;30475:3;30386:93;:::i;:::-;30504:2;30499:3;30495:12;30488:19;;30147:366;;;:::o;30519:419::-;30685:4;30723:2;30712:9;30708:18;30700:26;;30772:9;30766:4;30762:20;30758:1;30747:9;30743:17;30736:47;30800:131;30926:4;30800:131;:::i;:::-;30792:139;;30519:419;;;:::o;30944:179::-;31084:31;31080:1;31072:6;31068:14;31061:55;30944:179;:::o;31129:366::-;31271:3;31292:67;31356:2;31351:3;31292:67;:::i;:::-;31285:74;;31368:93;31457:3;31368:93;:::i;:::-;31486:2;31481:3;31477:12;31470:19;;31129:366;;;:::o;31501:419::-;31667:4;31705:2;31694:9;31690:18;31682:26;;31754:9;31748:4;31744:20;31740:1;31729:9;31725:17;31718:47;31782:131;31908:4;31782:131;:::i;:::-;31774:139;;31501:419;;;:::o;31926:147::-;32027:11;32064:3;32049:18;;31926:147;;;;:::o;32079:114::-;;:::o;32199:398::-;32358:3;32379:83;32460:1;32455:3;32379:83;:::i;:::-;32372:90;;32471:93;32560:3;32471:93;:::i;:::-;32589:1;32584:3;32580:11;32573:18;;32199:398;;;:::o;32603:379::-;32787:3;32809:147;32952:3;32809:147;:::i;:::-;32802:154;;32973:3;32966:10;;32603:379;;;:::o;32988:245::-;33128:34;33124:1;33116:6;33112:14;33105:58;33197:28;33192:2;33184:6;33180:15;33173:53;32988:245;:::o;33239:366::-;33381:3;33402:67;33466:2;33461:3;33402:67;:::i;:::-;33395:74;;33478:93;33567:3;33478:93;:::i;:::-;33596:2;33591:3;33587:12;33580:19;;33239:366;;;:::o;33611:419::-;33777:4;33815:2;33804:9;33800:18;33792:26;;33864:9;33858:4;33854:20;33850:1;33839:9;33835:17;33828:47;33892:131;34018:4;33892:131;:::i;:::-;33884:139;;33611:419;;;:::o;34036:98::-;34087:6;34121:5;34115:12;34105:22;;34036:98;;;:::o;34140:168::-;34223:11;34257:6;34252:3;34245:19;34297:4;34292:3;34288:14;34273:29;;34140:168;;;;:::o;34314:373::-;34400:3;34428:38;34460:5;34428:38;:::i;:::-;34482:70;34545:6;34540:3;34482:70;:::i;:::-;34475:77;;34561:65;34619:6;34614:3;34607:4;34600:5;34596:16;34561:65;:::i;:::-;34651:29;34673:6;34651:29;:::i;:::-;34646:3;34642:39;34635:46;;34404:283;34314:373;;;;:::o;34693:640::-;34888:4;34926:3;34915:9;34911:19;34903:27;;34940:71;35008:1;34997:9;34993:17;34984:6;34940:71;:::i;:::-;35021:72;35089:2;35078:9;35074:18;35065:6;35021:72;:::i;:::-;35103;35171:2;35160:9;35156:18;35147:6;35103:72;:::i;:::-;35222:9;35216:4;35212:20;35207:2;35196:9;35192:18;35185:48;35250:76;35321:4;35312:6;35250:76;:::i;:::-;35242:84;;34693:640;;;;;;;:::o;35339:141::-;35395:5;35426:6;35420:13;35411:22;;35442:32;35468:5;35442:32;:::i;:::-;35339:141;;;;:::o;35486:349::-;35555:6;35604:2;35592:9;35583:7;35579:23;35575:32;35572:119;;;35610:79;;:::i;:::-;35572:119;35730:1;35755:63;35810:7;35801:6;35790:9;35786:22;35755:63;:::i;:::-;35745:73;;35701:127;35486:349;;;;:::o;35841:233::-;35880:3;35903:24;35921:5;35903:24;:::i;:::-;35894:33;;35949:66;35942:5;35939:77;35936:103;;36019:18;;:::i;:::-;35936:103;36066:1;36059:5;36055:13;36048:20;;35841:233;;;:::o;36080:180::-;36128:77;36125:1;36118:88;36225:4;36222:1;36215:15;36249:4;36246:1;36239:15;36266:185;36306:1;36323:20;36341:1;36323:20;:::i;:::-;36318:25;;36357:20;36375:1;36357:20;:::i;:::-;36352:25;;36396:1;36386:35;;36401:18;;:::i;:::-;36386:35;36443:1;36440;36436:9;36431:14;;36266:185;;;;:::o;36457:194::-;36497:4;36517:20;36535:1;36517:20;:::i;:::-;36512:25;;36551:20;36569:1;36551:20;:::i;:::-;36546:25;;36595:1;36592;36588:9;36580:17;;36619:1;36613:4;36610:11;36607:37;;;36624:18;;:::i;:::-;36607:37;36457:194;;;;:::o;36657:176::-;36689:1;36706:20;36724:1;36706:20;:::i;:::-;36701:25;;36740:20;36758:1;36740:20;:::i;:::-;36735:25;;36779:1;36769:35;;36784:18;;:::i;:::-;36769:35;36825:1;36822;36818:9;36813:14;;36657:176;;;;:::o;36839:180::-;36887:77;36884:1;36877:88;36984:4;36981:1;36974:15;37008:4;37005:1;36998:15
Swarm Source
ipfs://1d56ffae04cefea97a8bc03d54c833e5e7b2324facffb21f4d25d8a50511cdf4
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.