ERC-721
Overview
Max Total Supply
11,111 MFPSWEB3
Holders
2,229
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 MFPSWEB3Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MFPSWEB3
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-25 */ // SPDX-License-Identifier: MIT // MFPSWEB3.com /** /$$ /$$ /$$$$$$$$ /$$$$$$$ /$$$$$$ /$$ /$$ /$$$$$$$$ /$$$$$$$ /$$$$$$ | $$$ /$$$| $$_____/| $$__ $$ /$$__ $$| $$ /$ | $$| $$_____/| $$__ $$ /$$__ $$ | $$$$ /$$$$| $$ | $$ \ $$| $$ \__/| $$ /$$$| $$| $$ | $$ \ $$|__/ \ $$ | $$ $$/$$ $$| $$$$$ | $$$$$$$/| $$$$$$ | $$/$$ $$ $$| $$$$$ | $$$$$$$ /$$$$$/ | $$ $$$| $$| $$__/ | $$____/ \____ $$| $$$$_ $$$$| $$__/ | $$__ $$ |___ $$ | $$\ $ | $$| $$ | $$ /$$ \ $$| $$$/ \ $$$| $$ | $$ \ $$ /$$ \ $$ | $$ \/ | $$| $$ | $$ | $$$$$$/| $$/ \ $$| $$$$$$$$| $$$$$$$/| $$$$$$/ |__/ |__/|__/ |__/ \______/ |__/ \__/|________/|_______/ \______/ **/ // File: contracts/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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); } } // File: contracts/Address.sol pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: contracts/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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: contracts/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: contracts/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: contracts/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`, 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 ) 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } // File: contracts/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: contracts/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: contracts/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 make 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: contracts/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: contracts/ERC721A.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // 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 ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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 * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); 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 overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/MFPSWEB3.sol pragma solidity ^0.8.0; contract MFPSWEB3 is Ownable, ERC721A, ReentrancyGuard { uint256 public immutable maxPerAddressDuringMint; uint256 public immutable amountForDevs; mapping(address => uint256) public allowlist; constructor( uint256 maxBatchSize_, uint256 collectionSize_, uint256 amountForDevs_ ) ERC721A("MFPSWEB3", "MFPSWEB3", maxBatchSize_, collectionSize_) { maxPerAddressDuringMint = maxBatchSize_; amountForDevs = amountForDevs_; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function mint(uint256 quantity) external callerIsUser { require(totalSupply() + quantity <= collectionSize, "reached max supply"); require( numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint, "can not mint this many" ); _safeMint(msg.sender, quantity); } // For marketing etc. function devMint(uint256 quantity) external onlyOwner { require( totalSupply() + quantity <= amountForDevs, "too many already minted before dev mint" ); require( quantity % maxBatchSize == 0, "can only mint a multiple of the maxBatchSize" ); uint256 numChunks = quantity / maxBatchSize; for (uint256 i = 0; i < numChunks; i++) { _safeMint(msg.sender, maxBatchSize); } } // // metadata URI string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawMoney() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant { _setOwnersExplicit(quantity); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForDevs","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
610100604052600060015560006008553480156200001c57600080fd5b506040516200290d3803806200290d8339810160408190526200003f91620002b2565b604051806040016040528060088152602001674d4650535745423360c01b815250604051806040016040528060088152602001674d4650535745423360c01b81525084846200009d62000097620001b860201b60201c565b620001bc565b600081116200010a5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200016c5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000101565b8351620001819060029060208701906200020c565b508251620001979060039060208601906200020c565b5060a0919091526080525050600160095560c0929092525060e0526200031e565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200021a90620002e1565b90600052602060002090601f0160209004810192826200023e576000855562000289565b82601f106200025957805160ff191683800117855562000289565b8280016001018555821562000289579182015b82811115620002895782518255916020019190600101906200026c565b50620002979291506200029b565b5090565b5b808211156200029757600081556001016200029c565b600080600060608486031215620002c857600080fd5b8351925060208401519150604084015190509250925092565b600181811c90821680620002f657607f821691505b602082108114156200031857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051612576620003976000396000818161048601526109920152600081816103260152610dac015260008181610a2801528181610ab601528181610aee0152818161181c015281816118460152611d0a015260008181610d3401528181611603015261163501526125766000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80638bc35c2f11610104578063ac446002116100a2578063dc33e68111610071578063dc33e6811461041f578063e985e9c514610432578063f2fde38b1461046e578063fbe1aa511461048157600080fd5b8063ac446002146103e8578063b88d4fde146103f0578063c87b56dd14610403578063d7224ba01461041657600080fd5b806395d89b41116100de57806395d89b411461039a578063a0712d68146103a2578063a22cb465146103b5578063a7cd52cb146103c857600080fd5b80638bc35c2f146103215780638da5cb5b146103485780639231ab2a1461035957600080fd5b80632f745c591161017c57806355f804b31161014b57806355f804b3146102e05780636352211e146102f357806370a0823114610306578063715018a61461031957600080fd5b80632f745c5914610294578063375a069a146102a757806342842e0e146102ba5780634f6ccce7146102cd57600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806318160ddd1461025c57806323b872dd1461026e5780632d20fb601461028157600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed3660046121a0565b6104a8565b60405190151581526020015b60405180910390f35b61020f610515565b6040516101fe91906122fd565b61022f61022a36600461224c565b6105a7565b6040516001600160a01b0390911681526020016101fe565b61025a610255366004612176565b610637565b005b6001545b6040519081526020016101fe565b61025a61027c366004612022565b61074f565b61025a61028f36600461224c565b61075a565b6102606102a2366004612176565b6107ed565b61025a6102b536600461224c565b610966565b61025a6102c8366004612022565b610b24565b6102606102db36600461224c565b610b3f565b61025a6102ee3660046121da565b610ba8565b61022f61030136600461224c565b610bde565b610260610314366004611fd4565b610bf0565b61025a610c81565b6102607f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b031661022f565b61036c61036736600461224c565b610cb7565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101fe565b61020f610cd4565b61025a6103b036600461224c565b610ce3565b61025a6103c336600461213a565b610e33565b6102606103d6366004611fd4565b600a6020526000908152604090205481565b61025a610ef8565b61025a6103fe36600461205e565b611005565b61020f61041136600461224c565b61103e565b61026060085481565b61026061042d366004611fd4565b61110b565b6101f2610440366004611fef565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61025a61047c366004611fd4565b611116565b6102607f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b14806104d957506001600160e01b03198216635b5e139f60e01b145b806104f457506001600160e01b0319821663780e9d6360e01b145b8061050f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461052490612468565b80601f016020809104026020016040519081016040528092919081815260200182805461055090612468565b801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b5050505050905090565b60006105b4826001541190565b61061b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061064282610bde565b9050806001600160a01b0316836001600160a01b031614156106b15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610612565b336001600160a01b03821614806106cd57506106cd8133610440565b61073f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610612565b61074a8383836111ae565b505050565b61074a83838361120a565b6000546001600160a01b031633146107845760405162461bcd60e51b815260040161061290612310565b600260095414156107d75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610612565b60026009556107e581611592565b506001600955565b60006107f883610bf0565b82106108515760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610612565b600061085c60015490565b905060008060005b83811015610906576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108b757805192505b876001600160a01b0316836001600160a01b031614156108f357868414156108e55750935061050f92505050565b836108ef816124a3565b9450505b50806108fe816124a3565b915050610864565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610612565b6000546001600160a01b031633146109905760405162461bcd60e51b815260040161061290612310565b7f0000000000000000000000000000000000000000000000000000000000000000816109bb60015490565b6109c591906123ba565b1115610a235760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610612565b610a4d7f0000000000000000000000000000000000000000000000000000000000000000826124be565b15610aaf5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610612565b6000610adb7f0000000000000000000000000000000000000000000000000000000000000000836123d2565b905060005b8181101561074a57610b12337f000000000000000000000000000000000000000000000000000000000000000061177c565b80610b1c816124a3565b915050610ae0565b61074a83838360405180602001604052806000815250611005565b6000610b4a60015490565b8210610ba45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610612565b5090565b6000546001600160a01b03163314610bd25760405162461bcd60e51b815260040161061290612310565b61074a600b8383611f28565b6000610be98261179a565b5192915050565b60006001600160a01b038216610c5c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610612565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610cab5760405162461bcd60e51b815260040161061290612310565b610cb56000611944565b565b604080518082019091526000808252602082015261050f8261179a565b60606003805461052490612468565b323314610d325760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610612565b7f000000000000000000000000000000000000000000000000000000000000000081610d5d60015490565b610d6791906123ba565b1115610daa5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610612565b7f000000000000000000000000000000000000000000000000000000000000000081610dd53361110b565b610ddf91906123ba565b1115610e265760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610612565b610e30338261177c565b50565b6001600160a01b038216331415610e8c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610612565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610f225760405162461bcd60e51b815260040161061290612310565b60026009541415610f755760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610612565b6002600955604051600090339047908381818185875af1925050503d8060008114610fbc576040519150601f19603f3d011682016040523d82523d6000602084013e610fc1565b606091505b50509050806107e55760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610612565b61101084848461120a565b61101c84848484611994565b6110385760405162461bcd60e51b815260040161061290612345565b50505050565b606061104b826001541190565b6110af5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610612565b60006110b9611aa2565b905060008151116110d95760405180602001604052806000815250611104565b806110e384611ab1565b6040516020016110f4929190612291565b6040516020818303038152906040525b9392505050565b600061050f82611baf565b6000546001600160a01b031633146111405760405162461bcd60e51b815260040161061290612310565b6001600160a01b0381166111a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610612565b610e3081611944565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112158261179a565b80519091506000906001600160a01b0316336001600160a01b0316148061124c575033611241846105a7565b6001600160a01b0316145b8061125e5750815161125e9033610440565b9050806112c85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610612565b846001600160a01b031682600001516001600160a01b03161461133c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610612565b6001600160a01b0384166113a05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610612565b6113b060008484600001516111ae565b6001600160a01b03851660009081526005602052604081208054600192906113e29084906001600160801b03166123e6565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261142e91859116612398565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556114b68460016123ba565b6000818152600460205260409020549091506001600160a01b0316611548576114e0816001541190565b156115485760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816115e25760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610612565b600060016115f084846123ba565b6115fa919061240e565b905061162760017f000000000000000000000000000000000000000000000000000000000000000061240e565b81111561165c5761165960017f000000000000000000000000000000000000000000000000000000000000000061240e565b90505b611667816001541190565b6116c25760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610612565b815b818111611768576000818152600460205260409020546001600160a01b03166117565760006116f28261179a565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611760816124a3565b9150506116c4565b506117748160016123ba565b600855505050565b611796828260405180602001604052806000815250611c4d565b5050565b60408051808201909152600080825260208201526117b9826001541190565b6118185760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610612565b60007f000000000000000000000000000000000000000000000000000000000000000083106118795761186b7f00000000000000000000000000000000000000000000000000000000000000008461240e565b6118769060016123ba565b90505b825b8181106118e3576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118d057949350505050565b50806118db81612451565b91505061187b565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610612565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611a9657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119d89033908990889088906004016122c0565b602060405180830381600087803b1580156119f257600080fd5b505af1925050508015611a22575060408051601f3d908101601f19168201909252611a1f918101906121bd565b60015b611a7c573d808015611a50576040519150601f19603f3d011682016040523d82523d6000602084013e611a55565b606091505b508051611a745760405162461bcd60e51b815260040161061290612345565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a9a565b5060015b949350505050565b6060600b805461052490612468565b606081611ad55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aff5780611ae9816124a3565b9150611af89050600a836123d2565b9150611ad9565b60008167ffffffffffffffff811115611b1a57611b1a612514565b6040519080825280601f01601f191660200182016040528015611b44576020820181803683370190505b5090505b8415611a9a57611b5960018361240e565b9150611b66600a866124be565b611b719060306123ba565b60f81b818381518110611b8657611b866124fe565b60200101906001600160f81b031916908160001a905350611ba8600a866123d2565b9450611b48565b60006001600160a01b038216611c215760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610612565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611cb05760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610612565b611cbb816001541190565b15611d085760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610612565b7f0000000000000000000000000000000000000000000000000000000000000000831115611d835760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610612565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611ddf908790612398565b6001600160801b03168152602001858360200151611dfd9190612398565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611f1d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ee16000888488611994565b611efd5760405162461bcd60e51b815260040161061290612345565b81611f07816124a3565b9250508080611f15906124a3565b915050611e94565b50600181905561158a565b828054611f3490612468565b90600052602060002090601f016020900481019282611f565760008555611f9c565b82601f10611f6f5782800160ff19823516178555611f9c565b82800160010185558215611f9c579182015b82811115611f9c578235825591602001919060010190611f81565b50610ba49291505b80821115610ba45760008155600101611fa4565b80356001600160a01b0381168114611fcf57600080fd5b919050565b600060208284031215611fe657600080fd5b61110482611fb8565b6000806040838503121561200257600080fd5b61200b83611fb8565b915061201960208401611fb8565b90509250929050565b60008060006060848603121561203757600080fd5b61204084611fb8565b925061204e60208501611fb8565b9150604084013590509250925092565b6000806000806080858703121561207457600080fd5b61207d85611fb8565b935061208b60208601611fb8565b925060408501359150606085013567ffffffffffffffff808211156120af57600080fd5b818701915087601f8301126120c357600080fd5b8135818111156120d5576120d5612514565b604051601f8201601f19908116603f011681019083821181831017156120fd576120fd612514565b816040528281528a602084870101111561211657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561214d57600080fd5b61215683611fb8565b91506020830135801515811461216b57600080fd5b809150509250929050565b6000806040838503121561218957600080fd5b61219283611fb8565b946020939093013593505050565b6000602082840312156121b257600080fd5b81356111048161252a565b6000602082840312156121cf57600080fd5b81516111048161252a565b600080602083850312156121ed57600080fd5b823567ffffffffffffffff8082111561220557600080fd5b818501915085601f83011261221957600080fd5b81358181111561222857600080fd5b86602082850101111561223a57600080fd5b60209290920196919550909350505050565b60006020828403121561225e57600080fd5b5035919050565b6000815180845261227d816020860160208601612425565b601f01601f19169290920160200192915050565b600083516122a3818460208801612425565b8351908301906122b7818360208801612425565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122f390830184612265565b9695505050505050565b6020815260006111046020830184612265565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156122b7576122b76124d2565b600082198211156123cd576123cd6124d2565b500190565b6000826123e1576123e16124e8565b500490565b60006001600160801b0383811690831681811015612406576124066124d2565b039392505050565b600082821015612420576124206124d2565b500390565b60005b83811015612440578181015183820152602001612428565b838111156110385750506000910152565b600081612460576124606124d2565b506000190190565b600181811c9082168061247c57607f821691505b6020821081141561249d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124b7576124b76124d2565b5060010190565b6000826124cd576124cd6124e8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e3057600080fdfea2646970667358221220ad4537ec3cf6f75a62318b13520290be906ae2761f32419c46220d1785f781ba64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000002b670000000000000000000000000000000000000000000000000000000000000190
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80638bc35c2f11610104578063ac446002116100a2578063dc33e68111610071578063dc33e6811461041f578063e985e9c514610432578063f2fde38b1461046e578063fbe1aa511461048157600080fd5b8063ac446002146103e8578063b88d4fde146103f0578063c87b56dd14610403578063d7224ba01461041657600080fd5b806395d89b41116100de57806395d89b411461039a578063a0712d68146103a2578063a22cb465146103b5578063a7cd52cb146103c857600080fd5b80638bc35c2f146103215780638da5cb5b146103485780639231ab2a1461035957600080fd5b80632f745c591161017c57806355f804b31161014b57806355f804b3146102e05780636352211e146102f357806370a0823114610306578063715018a61461031957600080fd5b80632f745c5914610294578063375a069a146102a757806342842e0e146102ba5780634f6ccce7146102cd57600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806318160ddd1461025c57806323b872dd1461026e5780632d20fb601461028157600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed3660046121a0565b6104a8565b60405190151581526020015b60405180910390f35b61020f610515565b6040516101fe91906122fd565b61022f61022a36600461224c565b6105a7565b6040516001600160a01b0390911681526020016101fe565b61025a610255366004612176565b610637565b005b6001545b6040519081526020016101fe565b61025a61027c366004612022565b61074f565b61025a61028f36600461224c565b61075a565b6102606102a2366004612176565b6107ed565b61025a6102b536600461224c565b610966565b61025a6102c8366004612022565b610b24565b6102606102db36600461224c565b610b3f565b61025a6102ee3660046121da565b610ba8565b61022f61030136600461224c565b610bde565b610260610314366004611fd4565b610bf0565b61025a610c81565b6102607f000000000000000000000000000000000000000000000000000000000000000581565b6000546001600160a01b031661022f565b61036c61036736600461224c565b610cb7565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101fe565b61020f610cd4565b61025a6103b036600461224c565b610ce3565b61025a6103c336600461213a565b610e33565b6102606103d6366004611fd4565b600a6020526000908152604090205481565b61025a610ef8565b61025a6103fe36600461205e565b611005565b61020f61041136600461224c565b61103e565b61026060085481565b61026061042d366004611fd4565b61110b565b6101f2610440366004611fef565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61025a61047c366004611fd4565b611116565b6102607f000000000000000000000000000000000000000000000000000000000000019081565b60006001600160e01b031982166380ac58cd60e01b14806104d957506001600160e01b03198216635b5e139f60e01b145b806104f457506001600160e01b0319821663780e9d6360e01b145b8061050f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461052490612468565b80601f016020809104026020016040519081016040528092919081815260200182805461055090612468565b801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b5050505050905090565b60006105b4826001541190565b61061b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061064282610bde565b9050806001600160a01b0316836001600160a01b031614156106b15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610612565b336001600160a01b03821614806106cd57506106cd8133610440565b61073f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610612565b61074a8383836111ae565b505050565b61074a83838361120a565b6000546001600160a01b031633146107845760405162461bcd60e51b815260040161061290612310565b600260095414156107d75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610612565b60026009556107e581611592565b506001600955565b60006107f883610bf0565b82106108515760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610612565b600061085c60015490565b905060008060005b83811015610906576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108b757805192505b876001600160a01b0316836001600160a01b031614156108f357868414156108e55750935061050f92505050565b836108ef816124a3565b9450505b50806108fe816124a3565b915050610864565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610612565b6000546001600160a01b031633146109905760405162461bcd60e51b815260040161061290612310565b7f0000000000000000000000000000000000000000000000000000000000000190816109bb60015490565b6109c591906123ba565b1115610a235760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610612565b610a4d7f0000000000000000000000000000000000000000000000000000000000000005826124be565b15610aaf5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610612565b6000610adb7f0000000000000000000000000000000000000000000000000000000000000005836123d2565b905060005b8181101561074a57610b12337f000000000000000000000000000000000000000000000000000000000000000561177c565b80610b1c816124a3565b915050610ae0565b61074a83838360405180602001604052806000815250611005565b6000610b4a60015490565b8210610ba45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610612565b5090565b6000546001600160a01b03163314610bd25760405162461bcd60e51b815260040161061290612310565b61074a600b8383611f28565b6000610be98261179a565b5192915050565b60006001600160a01b038216610c5c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610612565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610cab5760405162461bcd60e51b815260040161061290612310565b610cb56000611944565b565b604080518082019091526000808252602082015261050f8261179a565b60606003805461052490612468565b323314610d325760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610612565b7f0000000000000000000000000000000000000000000000000000000000002b6781610d5d60015490565b610d6791906123ba565b1115610daa5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610612565b7f000000000000000000000000000000000000000000000000000000000000000581610dd53361110b565b610ddf91906123ba565b1115610e265760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610612565b610e30338261177c565b50565b6001600160a01b038216331415610e8c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610612565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610f225760405162461bcd60e51b815260040161061290612310565b60026009541415610f755760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610612565b6002600955604051600090339047908381818185875af1925050503d8060008114610fbc576040519150601f19603f3d011682016040523d82523d6000602084013e610fc1565b606091505b50509050806107e55760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610612565b61101084848461120a565b61101c84848484611994565b6110385760405162461bcd60e51b815260040161061290612345565b50505050565b606061104b826001541190565b6110af5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610612565b60006110b9611aa2565b905060008151116110d95760405180602001604052806000815250611104565b806110e384611ab1565b6040516020016110f4929190612291565b6040516020818303038152906040525b9392505050565b600061050f82611baf565b6000546001600160a01b031633146111405760405162461bcd60e51b815260040161061290612310565b6001600160a01b0381166111a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610612565b610e3081611944565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112158261179a565b80519091506000906001600160a01b0316336001600160a01b0316148061124c575033611241846105a7565b6001600160a01b0316145b8061125e5750815161125e9033610440565b9050806112c85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610612565b846001600160a01b031682600001516001600160a01b03161461133c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610612565b6001600160a01b0384166113a05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610612565b6113b060008484600001516111ae565b6001600160a01b03851660009081526005602052604081208054600192906113e29084906001600160801b03166123e6565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261142e91859116612398565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556114b68460016123ba565b6000818152600460205260409020549091506001600160a01b0316611548576114e0816001541190565b156115485760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816115e25760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610612565b600060016115f084846123ba565b6115fa919061240e565b905061162760017f0000000000000000000000000000000000000000000000000000000000002b6761240e565b81111561165c5761165960017f0000000000000000000000000000000000000000000000000000000000002b6761240e565b90505b611667816001541190565b6116c25760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610612565b815b818111611768576000818152600460205260409020546001600160a01b03166117565760006116f28261179a565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611760816124a3565b9150506116c4565b506117748160016123ba565b600855505050565b611796828260405180602001604052806000815250611c4d565b5050565b60408051808201909152600080825260208201526117b9826001541190565b6118185760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610612565b60007f000000000000000000000000000000000000000000000000000000000000000583106118795761186b7f00000000000000000000000000000000000000000000000000000000000000058461240e565b6118769060016123ba565b90505b825b8181106118e3576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118d057949350505050565b50806118db81612451565b91505061187b565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610612565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611a9657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119d89033908990889088906004016122c0565b602060405180830381600087803b1580156119f257600080fd5b505af1925050508015611a22575060408051601f3d908101601f19168201909252611a1f918101906121bd565b60015b611a7c573d808015611a50576040519150601f19603f3d011682016040523d82523d6000602084013e611a55565b606091505b508051611a745760405162461bcd60e51b815260040161061290612345565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a9a565b5060015b949350505050565b6060600b805461052490612468565b606081611ad55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aff5780611ae9816124a3565b9150611af89050600a836123d2565b9150611ad9565b60008167ffffffffffffffff811115611b1a57611b1a612514565b6040519080825280601f01601f191660200182016040528015611b44576020820181803683370190505b5090505b8415611a9a57611b5960018361240e565b9150611b66600a866124be565b611b719060306123ba565b60f81b818381518110611b8657611b866124fe565b60200101906001600160f81b031916908160001a905350611ba8600a866123d2565b9450611b48565b60006001600160a01b038216611c215760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610612565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611cb05760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610612565b611cbb816001541190565b15611d085760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610612565b7f0000000000000000000000000000000000000000000000000000000000000005831115611d835760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610612565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611ddf908790612398565b6001600160801b03168152602001858360200151611dfd9190612398565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611f1d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ee16000888488611994565b611efd5760405162461bcd60e51b815260040161061290612345565b81611f07816124a3565b9250508080611f15906124a3565b915050611e94565b50600181905561158a565b828054611f3490612468565b90600052602060002090601f016020900481019282611f565760008555611f9c565b82601f10611f6f5782800160ff19823516178555611f9c565b82800160010185558215611f9c579182015b82811115611f9c578235825591602001919060010190611f81565b50610ba49291505b80821115610ba45760008155600101611fa4565b80356001600160a01b0381168114611fcf57600080fd5b919050565b600060208284031215611fe657600080fd5b61110482611fb8565b6000806040838503121561200257600080fd5b61200b83611fb8565b915061201960208401611fb8565b90509250929050565b60008060006060848603121561203757600080fd5b61204084611fb8565b925061204e60208501611fb8565b9150604084013590509250925092565b6000806000806080858703121561207457600080fd5b61207d85611fb8565b935061208b60208601611fb8565b925060408501359150606085013567ffffffffffffffff808211156120af57600080fd5b818701915087601f8301126120c357600080fd5b8135818111156120d5576120d5612514565b604051601f8201601f19908116603f011681019083821181831017156120fd576120fd612514565b816040528281528a602084870101111561211657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561214d57600080fd5b61215683611fb8565b91506020830135801515811461216b57600080fd5b809150509250929050565b6000806040838503121561218957600080fd5b61219283611fb8565b946020939093013593505050565b6000602082840312156121b257600080fd5b81356111048161252a565b6000602082840312156121cf57600080fd5b81516111048161252a565b600080602083850312156121ed57600080fd5b823567ffffffffffffffff8082111561220557600080fd5b818501915085601f83011261221957600080fd5b81358181111561222857600080fd5b86602082850101111561223a57600080fd5b60209290920196919550909350505050565b60006020828403121561225e57600080fd5b5035919050565b6000815180845261227d816020860160208601612425565b601f01601f19169290920160200192915050565b600083516122a3818460208801612425565b8351908301906122b7818360208801612425565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122f390830184612265565b9695505050505050565b6020815260006111046020830184612265565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156122b7576122b76124d2565b600082198211156123cd576123cd6124d2565b500190565b6000826123e1576123e16124e8565b500490565b60006001600160801b0383811690831681811015612406576124066124d2565b039392505050565b600082821015612420576124206124d2565b500390565b60005b83811015612440578181015183820152602001612428565b838111156110385750506000910152565b600081612460576124606124d2565b506000190190565b600181811c9082168061247c57607f821691505b6020821081141561249d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124b7576124b76124d2565b5060010190565b6000826124cd576124cd6124e8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e3057600080fdfea2646970667358221220ad4537ec3cf6f75a62318b13520290be906ae2761f32419c46220d1785f781ba64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000002b670000000000000000000000000000000000000000000000000000000000000190
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 5
Arg [1] : collectionSize_ (uint256): 11111
Arg [2] : amountForDevs_ (uint256): 400
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002b67
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000190
Deployed Bytecode Sourcemap
41653:2228:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27018:370;;;;;;:::i;:::-;;:::i;:::-;;;5834:14:1;;5827:22;5809:41;;5797:2;5782:18;27018:370:0;;;;;;;;28744:94;;;:::i;:::-;;;;;;;:::i;30269:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5132:32:1;;;5114:51;;5102:2;5087:18;30269:204:0;4968:203:1;29832:379:0;;;;;;:::i;:::-;;:::i;:::-;;25579:94;25655:12;;25579:94;;;18415:25:1;;;18403:2;18388:18;25579:94:0;18269:177:1;31119:142:0;;;;;;:::i;:::-;;:::i;43492:118::-;;;;;;:::i;:::-;;:::i;26210:744::-;;;;;;:::i;:::-;;:::i;42580:442::-;;;;;;:::i;:::-;;:::i;31324:157::-;;;;;;:::i;:::-;;:::i;25742:177::-;;;;;;:::i;:::-;;:::i;43199:100::-;;;;;;:::i;:::-;;:::i;28567:118::-;;;;;;:::i;:::-;;:::i;27444:211::-;;;;;;:::i;:::-;;:::i;40950:94::-;;;:::i;41713:48::-;;;;;40299:87;40345:7;40372:6;-1:-1:-1;;;;;40372:6:0;40299:87;;43729:147;;;;;;:::i;:::-;;:::i;:::-;;;;18134:13:1;;-1:-1:-1;;;;;18130:39:1;18112:58;;18230:4;18218:17;;;18212:24;18238:18;18208:49;18186:20;;;18179:79;;;;18085:18;43729:147:0;17904:360:1;28899:98:0;;;:::i;42244:305::-;;;;;;:::i;:::-;;:::i;30537:274::-;;;;;;:::i;:::-;;:::i;41809:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;43305:181;;;:::i;31544:311::-;;;;;;:::i;:::-;;:::i;29060:394::-;;;;;;:::i;:::-;;:::i;35959:43::-;;;;;;43616:107;;;;;;:::i;:::-;;:::i;30874:186::-;;;;;;:::i;:::-;-1:-1:-1;;;;;31019:25:0;;;30996:4;31019:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30874:186;41199:192;;;;;;:::i;:::-;;:::i;41766:38::-;;;;;27018:370;27145:4;-1:-1:-1;;;;;;27175:40:0;;-1:-1:-1;;;27175:40:0;;:99;;-1:-1:-1;;;;;;;27226:48:0;;-1:-1:-1;;;27226:48:0;27175:99;:160;;;-1:-1:-1;;;;;;;27285:50:0;;-1:-1:-1;;;27285:50:0;27175:160;:207;;;-1:-1:-1;;;;;;;;;;13299:40:0;;;27346:36;27161:221;27018:370;-1:-1:-1;;27018:370:0:o;28744:94::-;28798:13;28827:5;28820:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28744:94;:::o;30269:204::-;30337:7;30361:16;30369:7;32181:12;;-1:-1:-1;32171:22:0;32094:105;30361:16;30353:74;;;;-1:-1:-1;;;30353:74:0;;17289:2:1;30353:74:0;;;17271:21:1;17328:2;17308:18;;;17301:30;17367:34;17347:18;;;17340:62;-1:-1:-1;;;17418:18:1;;;17411:43;17471:19;;30353:74:0;;;;;;;;;-1:-1:-1;30443:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30443:24:0;;30269:204::o;29832:379::-;29901:13;29917:24;29933:7;29917:15;:24::i;:::-;29901:40;;29962:5;-1:-1:-1;;;;;29956:11:0;:2;-1:-1:-1;;;;;29956:11:0;;;29948:58;;;;-1:-1:-1;;;29948:58:0;;13004:2:1;29948:58:0;;;12986:21:1;13043:2;13023:18;;;13016:30;13082:34;13062:18;;;13055:62;-1:-1:-1;;;13133:18:1;;;13126:32;13175:19;;29948:58:0;12802:398:1;29948:58:0;23129:10;-1:-1:-1;;;;;30031:21:0;;;;:62;;-1:-1:-1;30056:37:0;30073:5;23129:10;30874:186;:::i;30056:37::-;30015:153;;;;-1:-1:-1;;;30015:153:0;;9508:2:1;30015:153:0;;;9490:21:1;9547:2;9527:18;;;9520:30;9586:34;9566:18;;;9559:62;9657:27;9637:18;;;9630:55;9702:19;;30015:153:0;9306:421:1;30015:153:0;30177:28;30186:2;30190:7;30199:5;30177:8;:28::i;:::-;29894:317;29832:379;;:::o;31119:142::-;31227:28;31237:4;31243:2;31247:7;31227:9;:28::i;43492:118::-;40345:7;40372:6;-1:-1:-1;;;;;40372:6:0;23129:10;40519:23;40511:68;;;;-1:-1:-1;;;40511:68:0;;;;;;;:::i;:::-;21500:1:::1;22096:7;;:19;;22088:63;;;::::0;-1:-1:-1;;;22088:63:0;;16513:2:1;22088:63:0::1;::::0;::::1;16495:21:1::0;16552:2;16532:18;;;16525:30;16591:33;16571:18;;;16564:61;16642:18;;22088:63:0::1;16311:355:1::0;22088:63:0::1;21500:1;22229:7;:18:::0;43576:28:::2;43595:8:::0;43576:18:::2;:28::i;:::-;-1:-1:-1::0;21456:1:0::1;22408:7;:22:::0;43492:118::o;26210:744::-;26319:7;26354:16;26364:5;26354:9;:16::i;:::-;26346:5;:24;26338:71;;;;-1:-1:-1;;;26338:71:0;;6287:2:1;26338:71:0;;;6269:21:1;6326:2;6306:18;;;6299:30;6365:34;6345:18;;;6338:62;-1:-1:-1;;;6416:18:1;;;6409:32;6458:19;;26338:71:0;6085:398:1;26338:71:0;26416:22;26441:13;25655:12;;;25579:94;26441:13;26416:38;;26461:19;26491:25;26541:9;26536:350;26560:14;26556:1;:18;26536:350;;;26590:31;26624:14;;;:11;:14;;;;;;;;;26590:48;;;;;;;;;-1:-1:-1;;;;;26590:48:0;;;;;-1:-1:-1;;;26590:48:0;;;;;;;;;;;;26651:28;26647:89;;26712:14;;;-1:-1:-1;26647:89:0;26769:5;-1:-1:-1;;;;;26748:26:0;:17;-1:-1:-1;;;;;26748:26:0;;26744:135;;;26806:5;26791:11;:20;26787:59;;;-1:-1:-1;26833:1:0;-1:-1:-1;26826:8:0;;-1:-1:-1;;;26826:8:0;26787:59;26856:13;;;;:::i;:::-;;;;26744:135;-1:-1:-1;26576:3:0;;;;:::i;:::-;;;;26536:350;;;-1:-1:-1;26892:56:0;;-1:-1:-1;;;26892:56:0;;15691:2:1;26892:56:0;;;15673:21:1;15730:2;15710:18;;;15703:30;15769:34;15749:18;;;15742:62;-1:-1:-1;;;15820:18:1;;;15813:44;15874:19;;26892:56:0;15489:410:1;42580:442:0;40345:7;40372:6;-1:-1:-1;;;;;40372:6:0;23129:10;40519:23;40511:68;;;;-1:-1:-1;;;40511:68:0;;;;;;;:::i;:::-;42685:13:::1;42673:8;42657:13;25655:12:::0;;;25579:94;42657:13:::1;:24;;;;:::i;:::-;:41;;42641:114;;;::::0;-1:-1:-1;;;42641:114:0;;15283:2:1;42641:114:0::1;::::0;::::1;15265:21:1::0;15322:2;15302:18;;;15295:30;15361:34;15341:18;;;15334:62;-1:-1:-1;;;15412:18:1;;;15405:37;15459:19;;42641:114:0::1;15081:403:1::0;42641:114:0::1;42778:23;42789:12;42778:8:::0;:23:::1;:::i;:::-;:28:::0;42762:106:::1;;;::::0;-1:-1:-1;;;42762:106:0;;7508:2:1;42762:106:0::1;::::0;::::1;7490:21:1::0;7547:2;7527:18;;;7520:30;7586:34;7566:18;;;7559:62;-1:-1:-1;;;7637:18:1;;;7630:42;7689:19;;42762:106:0::1;7306:408:1::0;42762:106:0::1;42875:17;42895:23;42906:12;42895:8:::0;:23:::1;:::i;:::-;42875:43;;42930:9;42925:92;42949:9;42945:1;:13;42925:92;;;42974:35;42984:10;42996:12;42974:9;:35::i;:::-;42960:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42925:92;;31324:157:::0;31436:39;31453:4;31459:2;31463:7;31436:39;;;;;;;;;;;;:16;:39::i;25742:177::-;25809:7;25841:13;25655:12;;;25579:94;25841:13;25833:5;:21;25825:69;;;;-1:-1:-1;;;25825:69:0;;7921:2:1;25825:69:0;;;7903:21:1;7960:2;7940:18;;;7933:30;7999:34;7979:18;;;7972:62;-1:-1:-1;;;8050:18:1;;;8043:33;8093:19;;25825:69:0;7719:399:1;25825:69:0;-1:-1:-1;25908:5:0;25742:177::o;43199:100::-;40345:7;40372:6;-1:-1:-1;;;;;40372:6:0;23129:10;40519:23;40511:68;;;;-1:-1:-1;;;40511:68:0;;;;;;;:::i;:::-;43270:23:::1;:13;43286:7:::0;;43270:23:::1;:::i;28567:118::-:0;28631:7;28654:20;28666:7;28654:11;:20::i;:::-;:25;;28567:118;-1:-1:-1;;28567:118:0:o;27444:211::-;27508:7;-1:-1:-1;;;;;27532:19:0;;27524:75;;;;-1:-1:-1;;;27524:75:0;;10287:2:1;27524:75:0;;;10269:21:1;10326:2;10306:18;;;10299:30;10365:34;10345:18;;;10338:62;-1:-1:-1;;;10416:18:1;;;10409:41;10467:19;;27524:75:0;10085:407:1;27524:75:0;-1:-1:-1;;;;;;27621:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27621:27:0;;27444:211::o;40950:94::-;40345:7;40372:6;-1:-1:-1;;;;;40372:6:0;23129:10;40519:23;40511:68;;;;-1:-1:-1;;;40511:68:0;;;;;;;:::i;:::-;41015:21:::1;41033:1;41015:9;:21::i;:::-;40950:94::o:0;43729:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;43850:20:0;43862:7;43850:11;:20::i;28899:98::-;28955:13;28984:7;28977:14;;;;;:::i;42244:305::-;42162:9;42175:10;42162:23;42154:66;;;;-1:-1:-1;;;42154:66:0;;9149:2:1;42154:66:0;;;9131:21:1;9188:2;9168:18;;;9161:30;9227:32;9207:18;;;9200:60;9277:18;;42154:66:0;8947:354:1;42154:66:0;42343:14:::1;42331:8;42315:13;25655:12:::0;;;25579:94;42315:13:::1;:24;;;;:::i;:::-;:42;;42307:73;;;::::0;-1:-1:-1;;;42307:73:0;;10699:2:1;42307:73:0::1;::::0;::::1;10681:21:1::0;10738:2;10718:18;;;10711:30;-1:-1:-1;;;10757:18:1;;;10750:48;10815:18;;42307:73:0::1;10497:342:1::0;42307:73:0::1;42442:23;42430:8;42403:24;42416:10;42403:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;42387:118;;;::::0;-1:-1:-1;;;42387:118:0;;14932:2:1;42387:118:0::1;::::0;::::1;14914:21:1::0;14971:2;14951:18;;;14944:30;-1:-1:-1;;;14990:18:1;;;14983:52;15052:18;;42387:118:0::1;14730:346:1::0;42387:118:0::1;42512:31;42522:10;42534:8;42512:9;:31::i;:::-;42244:305:::0;:::o;30537:274::-;-1:-1:-1;;;;;30628:24:0;;23129:10;30628:24;;30620:63;;;;-1:-1:-1;;;30620:63:0;;12230:2:1;30620:63:0;;;12212:21:1;12269:2;12249:18;;;12242:30;12308:28;12288:18;;;12281:56;12354:18;;30620:63:0;12028:350:1;30620:63:0;23129:10;30692:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30692:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30692:53:0;;;;;;;;;;30757:48;;5809:41:1;;;30692:42:0;;23129:10;30757:48;;5782:18:1;30757:48:0;;;;;;;30537:274;;:::o;43305:181::-;40345:7;40372:6;-1:-1:-1;;;;;40372:6:0;23129:10;40519:23;40511:68;;;;-1:-1:-1;;;40511:68:0;;;;;;;:::i;:::-;21500:1:::1;22096:7;;:19;;22088:63;;;::::0;-1:-1:-1;;;22088:63:0;;16513:2:1;22088:63:0::1;::::0;::::1;16495:21:1::0;16552:2;16532:18;;;16525:30;16591:33;16571:18;;;16564:61;16642:18;;22088:63:0::1;16311:355:1::0;22088:63:0::1;21500:1;22229:7;:18:::0;43388:49:::2;::::0;43370:12:::2;::::0;43388:10:::2;::::0;43411:21:::2;::::0;43370:12;43388:49;43370:12;43388:49;43411:21;43388:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43369:68;;;43452:7;43444:36;;;::::0;-1:-1:-1;;;43444:36:0;;13407:2:1;43444:36:0::2;::::0;::::2;13389:21:1::0;13446:2;13426:18;;;13419:30;-1:-1:-1;;;13465:18:1;;;13458:46;13521:18;;43444:36:0::2;13205:340:1::0;31544:311:0;31681:28;31691:4;31697:2;31701:7;31681:9;:28::i;:::-;31732:48;31755:4;31761:2;31765:7;31774:5;31732:22;:48::i;:::-;31716:133;;;;-1:-1:-1;;;31716:133:0;;;;;;;:::i;:::-;31544:311;;;;:::o;29060:394::-;29158:13;29199:16;29207:7;32181:12;;-1:-1:-1;32171:22:0;32094:105;29199:16;29183:97;;;;-1:-1:-1;;;29183:97:0;;11814:2:1;29183:97:0;;;11796:21:1;11853:2;11833:18;;;11826:30;11892:34;11872:18;;;11865:62;-1:-1:-1;;;11943:18:1;;;11936:45;11998:19;;29183:97:0;11612:411:1;29183:97:0;29289:21;29313:10;:8;:10::i;:::-;29289:34;;29368:1;29350:7;29344:21;:25;:104;;;;;;;;;;;;;;;;;29405:7;29414:18;:7;:16;:18::i;:::-;29388:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29344:104;29330:118;29060:394;-1:-1:-1;;;29060:394:0:o;43616:107::-;43674:7;43697:20;43711:5;43697:13;:20::i;41199:192::-;40345:7;40372:6;-1:-1:-1;;;;;40372:6:0;23129:10;40519:23;40511:68;;;;-1:-1:-1;;;40511:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41288:22:0;::::1;41280:73;;;::::0;-1:-1:-1;;;41280:73:0;;6690:2:1;41280:73:0::1;::::0;::::1;6672:21:1::0;6729:2;6709:18;;;6702:30;6768:34;6748:18;;;6741:62;-1:-1:-1;;;6819:18:1;;;6812:36;6865:19;;41280:73:0::1;6488:402:1::0;41280:73:0::1;41364:19;41374:8;41364:9;:19::i;35781:172::-:0;35878:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35878:29:0;-1:-1:-1;;;;;35878:29:0;;;;;;;;;35919:28;;35878:24;;35919:28;;;;;;;35781:172;;;:::o;34146:1529::-;34243:35;34281:20;34293:7;34281:11;:20::i;:::-;34352:18;;34243:58;;-1:-1:-1;34310:22:0;;-1:-1:-1;;;;;34336:34:0;23129:10;-1:-1:-1;;;;;34336:34:0;;:81;;;-1:-1:-1;23129:10:0;34381:20;34393:7;34381:11;:20::i;:::-;-1:-1:-1;;;;;34381:36:0;;34336:81;:142;;;-1:-1:-1;34445:18:0;;34428:50;;23129:10;30874:186;:::i;34428:50::-;34310:169;;34504:17;34488:101;;;;-1:-1:-1;;;34488:101:0;;12585:2:1;34488:101:0;;;12567:21:1;12624:2;12604:18;;;12597:30;12663:34;12643:18;;;12636:62;-1:-1:-1;;;12714:18:1;;;12707:48;12772:19;;34488:101:0;12383:414:1;34488:101:0;34636:4;-1:-1:-1;;;;;34614:26:0;:13;:18;;;-1:-1:-1;;;;;34614:26:0;;34598:98;;;;-1:-1:-1;;;34598:98:0;;11046:2:1;34598:98:0;;;11028:21:1;11085:2;11065:18;;;11058:30;11124:34;11104:18;;;11097:62;-1:-1:-1;;;11175:18:1;;;11168:36;11221:19;;34598:98:0;10844:402:1;34598:98:0;-1:-1:-1;;;;;34711:16:0;;34703:66;;;;-1:-1:-1;;;34703:66:0;;8325:2:1;34703:66:0;;;8307:21:1;8364:2;8344:18;;;8337:30;8403:34;8383:18;;;8376:62;-1:-1:-1;;;8454:18:1;;;8447:35;8499:19;;34703:66:0;8123:401:1;34703:66:0;34878:49;34895:1;34899:7;34908:13;:18;;;34878:8;:49::i;:::-;-1:-1:-1;;;;;34936:18:0;;;;;;:12;:18;;;;;:31;;34966:1;;34936:18;:31;;34966:1;;-1:-1:-1;;;;;34936:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;34936:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34974:16:0;;-1:-1:-1;34974:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;34974:16:0;;:29;;-1:-1:-1;;34974:29:0;;:::i;:::-;;;-1:-1:-1;;;;;34974:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35033:43:0;;;;;;;;-1:-1:-1;;;;;35033:43:0;;;;;;35059:15;35033:43;;;;;;;;;-1:-1:-1;35010:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;35010:66:0;-1:-1:-1;;;;;;35010:66:0;;;;;;;;;;;35326:11;35022:7;-1:-1:-1;35326:11:0;:::i;:::-;35389:1;35348:24;;;:11;:24;;;;;:29;35304:33;;-1:-1:-1;;;;;;35348:29:0;35344:236;;35406:20;35414:11;32181:12;;-1:-1:-1;32171:22:0;32094:105;35406:20;35402:171;;;35466:97;;;;;;;;35493:18;;-1:-1:-1;;;;;35466:97:0;;;;;;35524:28;;;;35466:97;;;;;;;;;;-1:-1:-1;35439:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;35439:124:0;-1:-1:-1;;;;;;35439:124:0;;;;;;;;;;;;35402:171;35612:7;35608:2;-1:-1:-1;;;;;35593:27:0;35602:4;-1:-1:-1;;;;;35593:27:0;;;;;;;;;;;35627:42;34236:1439;;;34146:1529;;;:::o;36107:846::-;36197:24;;36236:12;36228:49;;;;-1:-1:-1;;;36228:49:0;;9934:2:1;36228:49:0;;;9916:21:1;9973:2;9953:18;;;9946:30;10012:26;9992:18;;;9985:54;10056:18;;36228:49:0;9732:348:1;36228:49:0;36284:16;36334:1;36303:28;36323:8;36303:17;:28;:::i;:::-;:32;;;;:::i;:::-;36284:51;-1:-1:-1;36357:18:0;36374:1;36357:14;:18;:::i;:::-;36346:8;:29;36342:81;;;36397:18;36414:1;36397:14;:18;:::i;:::-;36386:29;;36342:81;36538:17;36546:8;32181:12;;-1:-1:-1;32171:22:0;32094:105;36538:17;36530:68;;;;-1:-1:-1;;;36530:68:0;;16106:2:1;36530:68:0;;;16088:21:1;16145:2;16125:18;;;16118:30;16184:34;16164:18;;;16157:62;-1:-1:-1;;;16235:18:1;;;16228:36;16281:19;;36530:68:0;15904:402:1;36530:68:0;36622:17;36605:297;36646:8;36641:1;:13;36605:297;;36705:1;36674:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;36674:19:0;36670:225;;36720:31;36754:14;36766:1;36754:11;:14::i;:::-;36796:89;;;;;;;;36823:14;;-1:-1:-1;;;;;36796:89:0;;;;;;36850:24;;;;36796:89;;;;;;;;;;-1:-1:-1;36779:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;36779:106:0;-1:-1:-1;;;;;;36779:106:0;;;;;;;;;;;;-1:-1:-1;36670:225:0;36656:3;;;;:::i;:::-;;;;36605:297;;;-1:-1:-1;36935:12:0;:8;36946:1;36935:12;:::i;:::-;36908:24;:39;-1:-1:-1;;;36107:846:0:o;32205:98::-;32270:27;32280:2;32284:8;32270:27;;;;;;;;;;;;:9;:27::i;:::-;32205:98;;:::o;27907:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;28024:16:0;28032:7;32181:12;;-1:-1:-1;32171:22:0;32094:105;28024:16;28016:71;;;;-1:-1:-1;;;28016:71:0;;7097:2:1;28016:71:0;;;7079:21:1;7136:2;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;-1:-1:-1;;;7226:18:1;;;7219:40;7276:19;;28016:71:0;6895:406:1;28016:71:0;28096:26;28144:12;28133:7;:23;28129:93;;28188:22;28198:12;28188:7;:22;:::i;:::-;:26;;28213:1;28188:26;:::i;:::-;28167:47;;28129:93;28250:7;28230:212;28267:18;28259:4;:26;28230:212;;28304:31;28338:17;;;:11;:17;;;;;;;;;28304:51;;;;;;;;;-1:-1:-1;;;;;28304:51:0;;;;;-1:-1:-1;;;28304:51:0;;;;;;;;;;;;28368:28;28364:71;;28416:9;27907:606;-1:-1:-1;;;;27907:606:0:o;28364:71::-;-1:-1:-1;28287:6:0;;;;:::i;:::-;;;;28230:212;;;-1:-1:-1;28450:57:0;;-1:-1:-1;;;28450:57:0;;16873:2:1;28450:57:0;;;16855:21:1;16912:2;16892:18;;;16885:30;16951:34;16931:18;;;16924:62;-1:-1:-1;;;17002:18:1;;;16995:45;17057:19;;28450:57:0;16671:411:1;41399:173:0;41455:16;41474:6;;-1:-1:-1;;;;;41491:17:0;;;-1:-1:-1;;;;;;41491:17:0;;;;;;41524:40;;41474:6;;;;;;;41524:40;;41455:16;41524:40;41444:128;41399:173;:::o;37496:690::-;37633:4;-1:-1:-1;;;;;37650:13:0;;3885:20;3933:8;37646:535;;37689:72;;-1:-1:-1;;;37689:72:0;;-1:-1:-1;;;;;37689:36:0;;;;;:72;;23129:10;;37740:4;;37746:7;;37755:5;;37689:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37689:72:0;;;;;;;;-1:-1:-1;;37689:72:0;;;;;;;;;;;;:::i;:::-;;;37676:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37920:13:0;;37916:215;;37953:61;;-1:-1:-1;;;37953:61:0;;;;;;;:::i;37916:215::-;38099:6;38093:13;38084:6;38080:2;38076:15;38069:38;37676:464;-1:-1:-1;;;;;;37811:55:0;-1:-1:-1;;;37811:55:0;;-1:-1:-1;37804:62:0;;37646:535;-1:-1:-1;38169:4:0;37646:535;37496:690;;;;;;:::o;43085:108::-;43145:13;43174;43167:20;;;;;:::i;1057:723::-;1113:13;1334:10;1330:53;;-1:-1:-1;;1361:10:0;;;;;;;;;;;;-1:-1:-1;;;1361:10:0;;;;;1057:723::o;1330:53::-;1408:5;1393:12;1449:78;1456:9;;1449:78;;1482:8;;;;:::i;:::-;;-1:-1:-1;1505:10:0;;-1:-1:-1;1513:2:0;1505:10;;:::i;:::-;;;1449:78;;;1537:19;1569:6;1559:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1559:17:0;;1537:39;;1587:154;1594:10;;1587:154;;1621:11;1631:1;1621:11;;:::i;:::-;;-1:-1:-1;1690:10:0;1698:2;1690:5;:10;:::i;:::-;1677:24;;:2;:24;:::i;:::-;1664:39;;1647:6;1654;1647:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1647:56:0;;;;;;;;-1:-1:-1;1718:11:0;1727:2;1718:11;;:::i;:::-;;;1587:154;;27661:240;27722:7;-1:-1:-1;;;;;27754:19:0;;27738:102;;;;-1:-1:-1;;;27738:102:0;;8731:2:1;27738:102:0;;;8713:21:1;8770:2;8750:18;;;8743:30;8809:34;8789:18;;;8782:62;-1:-1:-1;;;8860:18:1;;;8853:47;8917:19;;27738:102:0;8529:413:1;27738:102:0;-1:-1:-1;;;;;;27862:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;27862:32:0;;-1:-1:-1;;;;;27862:32:0;;27661:240::o;32642:1272::-;32770:12;;-1:-1:-1;;;;;32797:16:0;;32789:62;;;;-1:-1:-1;;;32789:62:0;;14530:2:1;32789:62:0;;;14512:21:1;14569:2;14549:18;;;14542:30;14608:34;14588:18;;;14581:62;-1:-1:-1;;;14659:18:1;;;14652:31;14700:19;;32789:62:0;14328:397:1;32789:62:0;32988:21;32996:12;32181;;-1:-1:-1;32171:22:0;32094:105;32988:21;32987:22;32979:64;;;;-1:-1:-1;;;32979:64:0;;14172:2:1;32979:64:0;;;14154:21:1;14211:2;14191:18;;;14184:30;14250:31;14230:18;;;14223:59;14299:18;;32979:64:0;13970:353:1;32979:64:0;33070:12;33058:8;:24;;33050:71;;;;-1:-1:-1;;;33050:71:0;;17703:2:1;33050:71:0;;;17685:21:1;17742:2;17722:18;;;17715:30;17781:34;17761:18;;;17754:62;-1:-1:-1;;;17832:18:1;;;17825:32;17874:19;;33050:71:0;17501:398:1;33050:71:0;-1:-1:-1;;;;;33233:16:0;;33200:30;33233:16;;;:12;:16;;;;;;;;;33200:49;;;;;;;;;-1:-1:-1;;;;;33200:49:0;;;;;-1:-1:-1;;;33200:49:0;;;;;;;;;;;33275:119;;;;;;;;33295:19;;33200:49;;33275:119;;;33295:39;;33325:8;;33295:39;:::i;:::-;-1:-1:-1;;;;;33275:119:0;;;;;33378:8;33343:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33275:119:0;;;;;;-1:-1:-1;;;;;33256:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;33256:138:0;;;;;;;;;;;;33429:43;;;;;;;;;;;33455:15;33429:43;;;;;;;;33401:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33401:71:0;-1:-1:-1;;;;;;33401:71:0;;;;;;;;;;;;;;;;;;33413:12;;33525:281;33549:8;33545:1;:12;33525:281;;;33578:38;;33603:12;;-1:-1:-1;;;;;33578:38:0;;;33595:1;;33578:38;;33595:1;;33578:38;33643:59;33674:1;33678:2;33682:12;33696:5;33643:22;:59::i;:::-;33625:150;;;;-1:-1:-1;;;33625:150:0;;;;;;;:::i;:::-;33784:14;;;;:::i;:::-;;;;33559:3;;;;;:::i;:::-;;;;33525:281;;;-1:-1:-1;33814:12:0;:27;;;33848:60;31544:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:470::-;4462:3;4500:6;4494:13;4516:53;4562:6;4557:3;4550:4;4542:6;4538:17;4516:53;:::i;:::-;4632:13;;4591:16;;;;4654:57;4632:13;4591:16;4688:4;4676:17;;4654:57;:::i;:::-;4727:20;;4283:470;-1:-1:-1;;;;4283:470:1:o;5176:488::-;-1:-1:-1;;;;;5445:15:1;;;5427:34;;5497:15;;5492:2;5477:18;;5470:43;5544:2;5529:18;;5522:34;;;5592:3;5587:2;5572:18;;5565:31;;;5370:4;;5613:45;;5638:19;;5630:6;5613:45;:::i;:::-;5605:53;5176:488;-1:-1:-1;;;;;;5176:488:1:o;5861:219::-;6010:2;5999:9;5992:21;5973:4;6030:44;6070:2;6059:9;6055:18;6047:6;6030:44;:::i;11251:356::-;11453:2;11435:21;;;11472:18;;;11465:30;11531:34;11526:2;11511:18;;11504:62;11598:2;11583:18;;11251:356::o;13550:415::-;13752:2;13734:21;;;13791:2;13771:18;;;13764:30;13830:34;13825:2;13810:18;;13803:62;-1:-1:-1;;;13896:2:1;13881:18;;13874:49;13955:3;13940:19;;13550:415::o;18451:253::-;18491:3;-1:-1:-1;;;;;18580:2:1;18577:1;18573:10;18610:2;18607:1;18603:10;18641:3;18637:2;18633:12;18628:3;18625:21;18622:47;;;18649:18;;:::i;18709:128::-;18749:3;18780:1;18776:6;18773:1;18770:13;18767:39;;;18786:18;;:::i;:::-;-1:-1:-1;18822:9:1;;18709:128::o;18842:120::-;18882:1;18908;18898:35;;18913:18;;:::i;:::-;-1:-1:-1;18947:9:1;;18842:120::o;18967:246::-;19007:4;-1:-1:-1;;;;;19120:10:1;;;;19090;;19142:12;;;19139:38;;;19157:18;;:::i;:::-;19194:13;;18967:246;-1:-1:-1;;;18967:246:1:o;19218:125::-;19258:4;19286:1;19283;19280:8;19277:34;;;19291:18;;:::i;:::-;-1:-1:-1;19328:9:1;;19218:125::o;19348:258::-;19420:1;19430:113;19444:6;19441:1;19438:13;19430:113;;;19520:11;;;19514:18;19501:11;;;19494:39;19466:2;19459:10;19430:113;;;19561:6;19558:1;19555:13;19552:48;;;-1:-1:-1;;19596:1:1;19578:16;;19571:27;19348:258::o;19611:136::-;19650:3;19678:5;19668:39;;19687:18;;:::i;:::-;-1:-1:-1;;;19723:18:1;;19611:136::o;19752:380::-;19831:1;19827:12;;;;19874;;;19895:61;;19949:4;19941:6;19937:17;19927:27;;19895:61;20002:2;19994:6;19991:14;19971:18;19968:38;19965:161;;;20048:10;20043:3;20039:20;20036:1;20029:31;20083:4;20080:1;20073:15;20111:4;20108:1;20101:15;19965:161;;19752:380;;;:::o;20137:135::-;20176:3;-1:-1:-1;;20197:17:1;;20194:43;;;20217:18;;:::i;:::-;-1:-1:-1;20264:1:1;20253:13;;20137:135::o;20277:112::-;20309:1;20335;20325:35;;20340:18;;:::i;:::-;-1:-1:-1;20374:9:1;;20277:112::o;20394:127::-;20455:10;20450:3;20446:20;20443:1;20436:31;20486:4;20483:1;20476:15;20510:4;20507:1;20500:15;20526:127;20587:10;20582:3;20578:20;20575:1;20568:31;20618:4;20615:1;20608:15;20642:4;20639:1;20632:15;20658:127;20719:10;20714:3;20710:20;20707:1;20700:31;20750:4;20747:1;20740:15;20774:4;20771:1;20764:15;20790:127;20851:10;20846:3;20842:20;20839:1;20832:31;20882:4;20879:1;20872:15;20906:4;20903:1;20896:15;20922:131;-1:-1:-1;;;;;;20996:32:1;;20986:43;;20976:71;;21043:1;21040;21033:12
Swarm Source
ipfs://ad4537ec3cf6f75a62318b13520290be906ae2761f32419c46220d1785f781ba
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.