Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
2,550 UCAC
Holders
293
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 UCACLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
UncolorfulApeClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-09 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/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); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs 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..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply */ 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 internal _nextTokenId; // 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) internal _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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _nextTokenId = 1; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _nextTokenId - 1; } /** * @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(totalSupply). 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'); for (uint256 curr = tokenId; ; 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 < _nextTokenId; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `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 = _nextTokenId; 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 > 0, 'ERC721A: quantity must be greater 0'); _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++; } _nextTokenId = 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); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. unchecked { _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); } /** * @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: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } pragma solidity ^0.8.0; contract UncolorfulApeClub is ERC721A, Ownable { using Strings for uint256; address public contractOwner; uint256 public ogPrice = 0.0555 ether; uint256 public wlPrice = 0.0666 ether; uint256 public mintPrice = 0.0777 ether; uint256 public supply = 3333; string private baseURI = "https://uncolorfulapeclub.xyz/api/nft/"; bytes32 public wlMerkleRoot; bytes32 public ogMerkleRoot; bytes32 public claimMerkleRoot; bool public publicSaleActive = false; bool public wlSaleActive = false; bool public ogSaleActive = true; uint8 public maxBuy = 100; uint8 public ogMax = 50; uint8 public wlMax = 10; uint8 public maxClaim = 6; mapping(address => uint8) public walletBuys; mapping(address => uint8) public walletClaims; constructor() ERC721A("Uncolorful Ape Club", "UCAC") { contractOwner = msg.sender; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ""; } function mintForAddress(address[] calldata _addresses, uint256 quantity) public onlyOwner { for (uint i=0; i<_addresses.length; i++) { _safeMint(_addresses[i], quantity); } } function mint(uint8 _mintAmount) external payable { require(publicSaleActive, "Public Sale has not started"); require(totalSupply() + _mintAmount <= supply, "You can't mint more then the total supply"); require(walletBuys[msg.sender] + _mintAmount <= maxBuy, "Buy limit reached"); require(msg.value >= mintPrice * _mintAmount, "Insufficient funds"); walletBuys[msg.sender] += _mintAmount; _safeMint(msg.sender, _mintAmount); } function wlMint(uint8 _mintAmount) external payable { require(wlSaleActive, "Sale has not started"); require(totalSupply() + _mintAmount <= supply, "You can't mint more then the total supply"); require(walletBuys[msg.sender] + _mintAmount <= wlMax, "Max presale minted for this wallet!"); require(msg.value >= wlPrice * _mintAmount, "Insufficient funds"); walletBuys[msg.sender] += _mintAmount; _safeMint(msg.sender, _mintAmount); } function ogMint(uint8 _mintAmount, bytes32[] calldata _merkleProof) external payable { require(ogSaleActive, "Sale has not started"); require(totalSupply() + _mintAmount <= supply, "You can't mint more then the total supply"); require(walletBuys[msg.sender] + _mintAmount <= ogMax, "Max presale minted for this wallet!"); require(msg.value >= ogPrice * _mintAmount, "Insufficient funds"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, ogMerkleRoot, leaf), "Invalid proof!"); walletBuys[msg.sender] += _mintAmount; _safeMint(msg.sender, _mintAmount); } function claimMint(uint8 quantity, uint8 claim_amount, bytes32[] calldata _merkleProof) external payable { require(totalSupply() + quantity <= supply, "You can't mint more then the total supply"); require(walletClaims[msg.sender] + quantity <= maxClaim, "You can't mint more then your max claim amount"); require(claim_amount >= quantity, "You can not claim more then you are allowed"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, claimMerkleRoot, leaf), "Invalid proof!"); walletClaims[msg.sender] += maxClaim; _safeMint(msg.sender, quantity); } function getBaseURI() public view returns (string memory) { return baseURI; } function _baseURI() internal view override returns (string memory) { return baseURI; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function setMintPrice(uint256 _newPrice) external onlyOwner { mintPrice = _newPrice; } function setWLPrice(uint256 _newPrice) external onlyOwner { wlPrice = _newPrice; } function setOGPrice(uint256 _newPrice) external onlyOwner { ogPrice = _newPrice; } //Set Sale Status function setPublicSaleState(bool active) external onlyOwner { publicSaleActive = active; } function setWLSaleState(bool active) external onlyOwner { wlSaleActive = active; } function setOGSaleState(bool active) external onlyOwner { ogSaleActive = active; } function startWL() external onlyOwner { publicSaleActive = false; wlSaleActive = true; ogSaleActive = false; } function startPublicSale() external onlyOwner { publicSaleActive = true; wlSaleActive = false; ogSaleActive = false; } function setMaxBuy(uint8 _maxBuy) external onlyOwner { maxBuy = _maxBuy; } function setWLBuy(uint8 _maxBuy) external onlyOwner { wlMax = _maxBuy; } function setOGBuy(uint8 _maxBuy) external onlyOwner { ogMax = _maxBuy; } function updateSupply(uint256 _supply) external onlyOwner { supply = _supply; } function changeWLRootHash(bytes32 _rootHash) external onlyOwner { wlMerkleRoot = _rootHash; } function changeOGRootHash(bytes32 _rootHash) external onlyOwner { ogMerkleRoot = _rootHash; } function changeClaimRootHash(bytes32 _rootHash) external onlyOwner { claimMerkleRoot = _rootHash; } function changeTreasury(address payable _newWallet) external onlyOwner { contractOwner = _newWallet; } function withdraw() external onlyOwner { (bool os, ) = payable(contractOwner).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"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":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"changeClaimRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"changeOGRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newWallet","type":"address"}],"name":"changeTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"changeWLRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"},{"internalType":"uint8","name":"claim_amount","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"claimMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxBuy","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxClaim","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogMax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"ogMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ogPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint8","name":"_maxBuy","type":"uint8"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxBuy","type":"uint8"}],"name":"setOGBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setOGPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setOGSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxBuy","type":"uint8"}],"name":"setWLBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setWLPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setWLSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"updateSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletBuys","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletClaims","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
66c52cf4b908c00060095566ec9c58de0a8000600a556701140bbd030c4000600b55610d05600c5560e06040526026608081815290620034d060a03980516200005191600d916020909101906200016d565b506011805466ffffffffffffff191666060a32640100001790553480156200007857600080fd5b50604080518082018252601381527f556e636f6c6f7266756c2041706520436c7562000000000000000000000000006020808301918252835180850190945260048452635543414360e01b908401528151919291620000da916001916200016d565b508051620000f09060029060208401906200016d565b505060016000555062000103336200011b565b600880546001600160a01b0319163317905562000250565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017b9062000213565b90600052602060002090601f0160209004810192826200019f5760008555620001ea565b82601f10620001ba57805160ff1916838001178555620001ea565b82800160010185558215620001ea579182015b82811115620001ea578251825591602001919060010190620001cd565b50620001f8929150620001fc565b5090565b5b80821115620001f85760008155600101620001fd565b600181811c908216806200022857607f821691505b602082108114156200024a57634e487b7160e01b600052602260045260246000fd5b50919050565b61327080620002606000396000f3fe6080604052600436106103975760003560e01c8063715018a6116101dc578063b88d4fde11610102578063d4938db3116100a0578063e985e9c51161006f578063e985e9c514610a44578063f2fde38b14610a8d578063f4a0a52814610aad578063f6a5b8e614610acd57600080fd5b8063d4938db3146109b3578063dbdf2dc0146109d4578063dea96c98146109f4578063dfcf15b014610a2457600080fd5b8063c8761d24116100dc578063c8761d2414610923578063c87b56dd14610953578063cb2bbdd614610973578063ce606ee01461099357600080fd5b8063b88d4fde146108d3578063bc8893b4146108f3578063c7f8d01a1461090d57600080fd5b80639293a5c71161017a578063a22cb46511610149578063a22cb46514610860578063a28c55d014610880578063a565b54e146108a0578063b14f2a39146108b357600080fd5b80639293a5c71461080057806395d89b41146108205780639c4dab52146108355780639c8e1beb1461084b57600080fd5b806387abdc2a116101b657806387abdc2a1461077d5780638b9defa11461079f5780638c181247146107c25780638da5cb5b146107e257600080fd5b8063715018a614610735578063842e481c1461074a57806386212c191461075d57600080fd5b80633ccfd60b116102c15780635ae1250b1161025f5780636ecd23061161022e5780636ecd2306146106ba57806370a08231146106cd57806370db69d6146106ed578063714c53981461072057600080fd5b80635ae1250b146106445780636352211e146106645780636817c76c146106845780636bd080491461069a57600080fd5b80634f6ccce71161029b5780634f6ccce7146105ce57806353f6fa79146105ee57806354c06aee1461060e57806355f804b31461062457600080fd5b80633ccfd60b146105865780633db0ce3e1461059b57806342842e0e146105ae57600080fd5b80630c1c972a1161033957806323c8d4d21161030857806323c8d4d2146105075780632f745c591461052757806337beed91146105475780633a6177661461056757600080fd5b80630c1c972a146104a757806315f5d8a0146104bc57806318160ddd146104d257806323b872dd146104e757600080fd5b806306fdde031161037557806306fdde0314610417578063081812fc14610439578063095ea7b3146104715780630a3025301461049157600080fd5b80630178c2ad1461039c57806301ffc9a7146103be578063047fc9aa146103f3575b600080fd5b3480156103a857600080fd5b506103bc6103b7366004612c6e565b610aed565b005b3480156103ca57600080fd5b506103de6103d9366004612ca2565b610b3c565b60405190151581526020015b60405180910390f35b3480156103ff57600080fd5b50610409600c5481565b6040519081526020016103ea565b34801561042357600080fd5b5061042c610ba9565b6040516103ea9190612f31565b34801561044557600080fd5b50610459610454366004612c89565b610c3b565b6040516001600160a01b0390911681526020016103ea565b34801561047d57600080fd5b506103bc61048c366004612bf7565b610cc6565b34801561049d57600080fd5b50610409600f5481565b3480156104b357600080fd5b506103bc610dde565b3480156104c857600080fd5b5061040960095481565b3480156104de57600080fd5b50610409610e19565b3480156104f357600080fd5b506103bc610502366004612b02565b610e2f565b34801561051357600080fd5b506011546103de9062010000900460ff1681565b34801561053357600080fd5b50610409610542366004612bf7565b610e3a565b34801561055357600080fd5b506103bc610562366004612c6e565b610fb1565b34801561057357600080fd5b506011546103de90610100900460ff1681565b34801561059257600080fd5b506103bc610ff5565b6103bc6105a9366004612d24565b611082565b3480156105ba57600080fd5b506103bc6105c9366004612b02565b6111f2565b3480156105da57600080fd5b506104096105e9366004612c89565b61120d565b3480156105fa57600080fd5b506103bc610609366004612c89565b611275565b34801561061a57600080fd5b50610409600e5481565b34801561063057600080fd5b506103bc61063f366004612cdc565b6112a4565b34801561065057600080fd5b506103bc61065f366004612c89565b6112e5565b34801561067057600080fd5b5061045961067f366004612c89565b611314565b34801561069057600080fd5b50610409600b5481565b3480156106a657600080fd5b506103bc6106b5366004612c89565b611326565b6103bc6106c8366004612d24565b611355565b3480156106d957600080fd5b506104096106e8366004612aa5565b611460565b3480156106f957600080fd5b5060115461070e906301000000900460ff1681565b60405160ff90911681526020016103ea565b34801561072c57600080fd5b5061042c6114f1565b34801561074157600080fd5b506103bc611500565b6103bc610758366004612d3f565b611536565b34801561076957600080fd5b506103bc610778366004612c89565b611763565b34801561078957600080fd5b5060115461070e90640100000000900460ff1681565b3480156107ab57600080fd5b5060115461070e9065010000000000900460ff1681565b3480156107ce57600080fd5b506103bc6107dd366004612d24565b611792565b3480156107ee57600080fd5b506007546001600160a01b0316610459565b34801561080c57600080fd5b506103bc61081b366004612c6e565b6117de565b34801561082c57600080fd5b5061042c61181b565b34801561084157600080fd5b5061040960105481565b34801561085757600080fd5b506103bc61182a565b34801561086c57600080fd5b506103bc61087b366004612bc2565b611866565b34801561088c57600080fd5b506103bc61089b366004612d24565b61192b565b6103bc6108ae366004612d91565b611979565b3480156108bf57600080fd5b506103bc6108ce366004612aa5565b611bc1565b3480156108df57600080fd5b506103bc6108ee366004612b43565b611c0d565b3480156108ff57600080fd5b506011546103de9060ff1681565b34801561091957600080fd5b50610409600a5481565b34801561092f57600080fd5b5061070e61093e366004612aa5565b60136020526000908152604090205460ff1681565b34801561095f57600080fd5b5061042c61096e366004612c89565b611c40565b34801561097f57600080fd5b506103bc61098e366004612c89565b611d0d565b34801561099f57600080fd5b50600854610459906001600160a01b031681565b3480156109bf57600080fd5b5060115461070e90600160301b900460ff1681565b3480156109e057600080fd5b506103bc6109ef366004612d24565b611d3c565b348015610a0057600080fd5b5061070e610a0f366004612aa5565b60126020526000908152604090205460ff1681565b348015610a3057600080fd5b506103bc610a3f366004612c23565b611d86565b348015610a5057600080fd5b506103de610a5f366004612ac9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a9957600080fd5b506103bc610aa8366004612aa5565b611dfd565b348015610ab957600080fd5b506103bc610ac8366004612c89565b611e95565b348015610ad957600080fd5b506103bc610ae8366004612c89565b611ec4565b6007546001600160a01b03163314610b205760405162461bcd60e51b8152600401610b1790612fd0565b60405180910390fd5b60118054911515620100000262ff000019909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480610b6d57506001600160e01b03198216635b5e139f60e01b145b80610b8857506001600160e01b0319821663780e9d6360e01b145b80610ba357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610bb89061314d565b80601f0160208091040260200160405190810160405280929190818152602001828054610be49061314d565b8015610c315780601f10610c0657610100808354040283529160200191610c31565b820191906000526020600020905b815481529060010190602001808311610c1457829003601f168201915b5050505050905090565b6000610c48826000541190565b610caa5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610b17565b506000908152600560205260409020546001600160a01b031690565b6000610cd182611314565b9050806001600160a01b0316836001600160a01b03161415610d405760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b17565b336001600160a01b0382161480610d5c5750610d5c8133610a5f565b610dce5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b17565b610dd9838383611ef3565b505050565b6007546001600160a01b03163314610e085760405162461bcd60e51b8152600401610b1790612fd0565b6011805462ffffff19166001179055565b60006001600054610e2a91906130f3565b905090565b610dd9838383611f4f565b6000610e4583611460565b8210610e9e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b17565b6000610ea8610e19565b905060008060005b83811015610f51576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610f0257805192505b876001600160a01b0316836001600160a01b03161415610f3e5786841415610f3057509350610ba392505050565b83610f3a81613188565b9450505b5080610f4981613188565b915050610eb0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b17565b6007546001600160a01b03163314610fdb5760405162461bcd60e51b8152600401610b1790612fd0565b601180549115156101000261ff0019909216919091179055565b6007546001600160a01b0316331461101f5760405162461bcd60e51b8152600401610b1790612fd0565b6008546040516000916001600160a01b03169047908381818185875af1925050503d806000811461106c576040519150601f19603f3d011682016040523d82523d6000602084013e611071565b606091505b505090508061107f57600080fd5b50565b601154610100900460ff166110d05760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b6044820152606401610b17565b600c548160ff166110df610e19565b6110e99190613083565b11156111075760405162461bcd60e51b8152600401610b1790612f44565b6011543360009081526012602052604090205460ff650100000000009092048216916111359184911661309b565b60ff1611156111565760405162461bcd60e51b8152600401610b1790612f8d565b8060ff16600a5461116791906130d4565b3410156111ab5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610b17565b33600090815260126020526040812080548392906111cd90849060ff1661309b565b92506101000a81548160ff021916908360ff16021790555061107f338260ff16612294565b610dd983838360405180602001604052806000815250611c0d565b6000611217610e19565b82106112715760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b17565b5090565b6007546001600160a01b0316331461129f5760405162461bcd60e51b8152600401610b1790612fd0565b600e55565b6007546001600160a01b031633146112ce5760405162461bcd60e51b8152600401610b1790612fd0565b80516112e190600d90602084019061292f565b5050565b6007546001600160a01b0316331461130f5760405162461bcd60e51b8152600401610b1790612fd0565b600f55565b600061131f826122ae565b5192915050565b6007546001600160a01b031633146113505760405162461bcd60e51b8152600401610b1790612fd0565b600c55565b60115460ff166113a75760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632053616c6520686173206e6f74207374617274656400000000006044820152606401610b17565b600c548160ff166113b6610e19565b6113c09190613083565b11156113de5760405162461bcd60e51b8152600401610b1790612f44565b6011543360009081526012602052604090205460ff630100000090920482169161140a9184911661309b565b60ff16111561144f5760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b6044820152606401610b17565b8060ff16600b5461116791906130d4565b60006001600160a01b0382166114cc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b17565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600d8054610bb89061314d565b6007546001600160a01b0316331461152a5760405162461bcd60e51b8152600401610b1790612fd0565b611534600061238d565b565b60115462010000900460ff166115855760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b6044820152606401610b17565b600c548360ff16611594610e19565b61159e9190613083565b11156115bc5760405162461bcd60e51b8152600401610b1790612f44565b6011543360009081526012602052604090205460ff6401000000009092048216916115e99186911661309b565b60ff16111561160a5760405162461bcd60e51b8152600401610b1790612f8d565b8260ff1660095461161b91906130d4565b34101561165f5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610b17565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506116d983838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508490506123df565b6117165760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610b17565b336000908152601260205260408120805486929061173890849060ff1661309b565b92506101000a81548160ff021916908360ff16021790555061175d338560ff16612294565b50505050565b6007546001600160a01b0316331461178d5760405162461bcd60e51b8152600401610b1790612fd0565b601055565b6007546001600160a01b031633146117bc5760405162461bcd60e51b8152600401610b1790612fd0565b6011805460ff9092166401000000000264ff0000000019909216919091179055565b6007546001600160a01b031633146118085760405162461bcd60e51b8152600401610b1790612fd0565b6011805460ff1916911515919091179055565b606060028054610bb89061314d565b6007546001600160a01b031633146118545760405162461bcd60e51b8152600401610b1790612fd0565b6011805462ffffff1916610100179055565b6001600160a01b0382163314156118bf5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b17565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146119555760405162461bcd60e51b8152600401610b1790612fd0565b6011805460ff909216650100000000000265ff000000000019909216919091179055565b600c548460ff16611988610e19565b6119929190613083565b11156119b05760405162461bcd60e51b8152600401610b1790612f44565b6011543360009081526013602052604090205460ff600160301b9092048216916119dc9187911661309b565b60ff161115611a445760405162461bcd60e51b815260206004820152602e60248201527f596f752063616e2774206d696e74206d6f7265207468656e20796f7572206d6160448201526d1e0818db185a5b48185b5bdd5b9d60921b6064820152608401610b17565b8360ff168360ff161015611aae5760405162461bcd60e51b815260206004820152602b60248201527f596f752063616e206e6f7420636c61696d206d6f7265207468656e20796f752060448201526a185c9948185b1b1bddd95960aa1b6064820152608401610b17565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611b288383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060105491508490506123df565b611b655760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610b17565b601154336000908152601360205260408120805460ff600160301b909404841693919291611b959185911661309b565b92506101000a81548160ff021916908360ff160217905550611bba338660ff16612294565b5050505050565b6007546001600160a01b03163314611beb5760405162461bcd60e51b8152600401610b1790612fd0565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b611c18848484611f4f565b611c24848484846123f5565b61175d5760405162461bcd60e51b8152600401610b1790613005565b6060611c4d826000541190565b611cb15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b17565b6000600d8054611cc09061314d565b905011611cdc5760405180602001604052806000815250610ba3565b600d611ce783612503565b604051602001611cf8929190612e39565b60405160208183030381529060405292915050565b6007546001600160a01b03163314611d375760405162461bcd60e51b8152600401610b1790612fd0565b600955565b6007546001600160a01b03163314611d665760405162461bcd60e51b8152600401610b1790612fd0565b6011805460ff90921663010000000263ff00000019909216919091179055565b6007546001600160a01b03163314611db05760405162461bcd60e51b8152600401610b1790612fd0565b60005b8281101561175d57611deb848483818110611dd057611dd06131e3565b9050602002016020810190611de59190612aa5565b83612294565b80611df581613188565b915050611db3565b6007546001600160a01b03163314611e275760405162461bcd60e51b8152600401610b1790612fd0565b6001600160a01b038116611e8c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b17565b61107f8161238d565b6007546001600160a01b03163314611ebf5760405162461bcd60e51b8152600401610b1790612fd0565b600b55565b6007546001600160a01b03163314611eee5760405162461bcd60e51b8152600401610b1790612fd0565b600a55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f5a826122ae565b80519091506000906001600160a01b0316336001600160a01b03161480611f91575033611f8684610c3b565b6001600160a01b0316145b80611fa357508151611fa39033610a5f565b90508061200d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b17565b846001600160a01b031682600001516001600160a01b0316146120815760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b17565b6001600160a01b0384166120e55760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b17565b6120f56000848460000151611ef3565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b0392831660001901831617909255898616808652838620805493841693831660019081019093169390931790925582518084018452918252426001600160401b039081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906121b9908590613083565b6000818152600360205260409020549091506001600160a01b031661224a576121e3816000541190565b1561224a5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6112e1828260405180602001604052806000815250612600565b60408051808201909152600080825260208201526122cd826000541190565b61232c5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b17565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561237a579392505050565b508061238581613136565b91505061232e565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826123ec85846128bb565b14949350505050565b60006001600160a01b0384163b156124f757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612439903390899088908890600401612ef4565b602060405180830381600087803b15801561245357600080fd5b505af1925050508015612483575060408051601f3d908101601f1916820190925261248091810190612cbf565b60015b6124dd573d8080156124b1576040519150601f19603f3d011682016040523d82523d6000602084013e6124b6565b606091505b5080516124d55760405162461bcd60e51b8152600401610b1790613005565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506124fb565b5060015b949350505050565b6060816125275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612551578061253b81613188565b915061254a9050600a836130c0565b915061252b565b6000816001600160401b0381111561256b5761256b6131f9565b6040519080825280601f01601f191660200182016040528015612595576020820181803683370190505b5090505b84156124fb576125aa6001836130f3565b91506125b7600a866131a3565b6125c2906030613083565b60f81b8183815181106125d7576125d76131e3565b60200101906001600160f81b031916908160001a9053506125f9600a866130c0565b9450612599565b6000546001600160a01b0384166126635760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b17565b61266e816000541190565b156126bb5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b17565b600083116127175760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610b17565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612773908790613058565b6001600160801b031681526020018583602001516127919190613058565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156128b05760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461287460008884886123f5565b6128905760405162461bcd60e51b8152600401610b1790613005565b8161289a81613188565b92505080806128a890613188565b915050612827565b50600081905561228c565b600081815b84518110156129275760008582815181106128dd576128dd6131e3565b602002602001015190508083116129035760008381526020829052604090209250612914565b600081815260208490526040902092505b508061291f81613188565b9150506128c0565b509392505050565b82805461293b9061314d565b90600052602060002090601f01602090048101928261295d57600085556129a3565b82601f1061297657805160ff19168380011785556129a3565b828001600101855582156129a3579182015b828111156129a3578251825591602001919060010190612988565b506112719291505b8082111561127157600081556001016129ab565b60006001600160401b03808411156129d9576129d96131f9565b604051601f8501601f19908116603f01168101908282118183101715612a0157612a016131f9565b81604052809350858152868686011115612a1a57600080fd5b858560208301376000602087830101525050509392505050565b60008083601f840112612a4657600080fd5b5081356001600160401b03811115612a5d57600080fd5b6020830191508360208260051b8501011115612a7857600080fd5b9250929050565b80358015158114612a8f57600080fd5b919050565b803560ff81168114612a8f57600080fd5b600060208284031215612ab757600080fd5b8135612ac28161320f565b9392505050565b60008060408385031215612adc57600080fd5b8235612ae78161320f565b91506020830135612af78161320f565b809150509250929050565b600080600060608486031215612b1757600080fd5b8335612b228161320f565b92506020840135612b328161320f565b929592945050506040919091013590565b60008060008060808587031215612b5957600080fd5b8435612b648161320f565b93506020850135612b748161320f565b92506040850135915060608501356001600160401b03811115612b9657600080fd5b8501601f81018713612ba757600080fd5b612bb6878235602084016129bf565b91505092959194509250565b60008060408385031215612bd557600080fd5b8235612be08161320f565b9150612bee60208401612a7f565b90509250929050565b60008060408385031215612c0a57600080fd5b8235612c158161320f565b946020939093013593505050565b600080600060408486031215612c3857600080fd5b83356001600160401b03811115612c4e57600080fd5b612c5a86828701612a34565b909790965060209590950135949350505050565b600060208284031215612c8057600080fd5b612ac282612a7f565b600060208284031215612c9b57600080fd5b5035919050565b600060208284031215612cb457600080fd5b8135612ac281613224565b600060208284031215612cd157600080fd5b8151612ac281613224565b600060208284031215612cee57600080fd5b81356001600160401b03811115612d0457600080fd5b8201601f81018413612d1557600080fd5b6124fb848235602084016129bf565b600060208284031215612d3657600080fd5b612ac282612a94565b600080600060408486031215612d5457600080fd5b612d5d84612a94565b925060208401356001600160401b03811115612d7857600080fd5b612d8486828701612a34565b9497909650939450505050565b60008060008060608587031215612da757600080fd5b612db085612a94565b9350612dbe60208601612a94565b925060408501356001600160401b03811115612dd957600080fd5b612de587828801612a34565b95989497509550505050565b60008151808452612e0981602086016020860161310a565b601f01601f19169290920160200192915050565b60008151612e2f81856020860161310a565b9290920192915050565b600080845481600182811c915080831680612e5557607f831692505b6020808410821415612e7557634e487b7160e01b86526022600452602486fd5b818015612e895760018114612e9a57612ec7565b60ff19861689528489019650612ec7565b60008b81526020902060005b86811015612ebf5781548b820152908501908301612ea6565b505084890196505b505050505050612eeb612eda8286612e1d565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f2790830184612df1565b9695505050505050565b602081526000612ac26020830184612df1565b60208082526029908201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604082015268616c20737570706c7960b81b606082015260800190565b60208082526023908201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60408201526265742160e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561307a5761307a6131b7565b01949350505050565b60008219821115613096576130966131b7565b500190565b600060ff821660ff84168060ff038211156130b8576130b86131b7565b019392505050565b6000826130cf576130cf6131cd565b500490565b60008160001904831182151516156130ee576130ee6131b7565b500290565b600082821015613105576131056131b7565b500390565b60005b8381101561312557818101518382015260200161310d565b8381111561175d5750506000910152565b600081613145576131456131b7565b506000190190565b600181811c9082168061316157607f821691505b6020821081141561318257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561319c5761319c6131b7565b5060010190565b6000826131b2576131b26131cd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461107f57600080fd5b6001600160e01b03198116811461107f57600080fdfea2646970667358221220a1608851b2481413a5378e2107a80210c0dee9b4db8d379603b89d47f7e4e9be64736f6c6343000807003368747470733a2f2f756e636f6c6f7266756c617065636c75622e78797a2f6170692f6e66742f
Deployed Bytecode
0x6080604052600436106103975760003560e01c8063715018a6116101dc578063b88d4fde11610102578063d4938db3116100a0578063e985e9c51161006f578063e985e9c514610a44578063f2fde38b14610a8d578063f4a0a52814610aad578063f6a5b8e614610acd57600080fd5b8063d4938db3146109b3578063dbdf2dc0146109d4578063dea96c98146109f4578063dfcf15b014610a2457600080fd5b8063c8761d24116100dc578063c8761d2414610923578063c87b56dd14610953578063cb2bbdd614610973578063ce606ee01461099357600080fd5b8063b88d4fde146108d3578063bc8893b4146108f3578063c7f8d01a1461090d57600080fd5b80639293a5c71161017a578063a22cb46511610149578063a22cb46514610860578063a28c55d014610880578063a565b54e146108a0578063b14f2a39146108b357600080fd5b80639293a5c71461080057806395d89b41146108205780639c4dab52146108355780639c8e1beb1461084b57600080fd5b806387abdc2a116101b657806387abdc2a1461077d5780638b9defa11461079f5780638c181247146107c25780638da5cb5b146107e257600080fd5b8063715018a614610735578063842e481c1461074a57806386212c191461075d57600080fd5b80633ccfd60b116102c15780635ae1250b1161025f5780636ecd23061161022e5780636ecd2306146106ba57806370a08231146106cd57806370db69d6146106ed578063714c53981461072057600080fd5b80635ae1250b146106445780636352211e146106645780636817c76c146106845780636bd080491461069a57600080fd5b80634f6ccce71161029b5780634f6ccce7146105ce57806353f6fa79146105ee57806354c06aee1461060e57806355f804b31461062457600080fd5b80633ccfd60b146105865780633db0ce3e1461059b57806342842e0e146105ae57600080fd5b80630c1c972a1161033957806323c8d4d21161030857806323c8d4d2146105075780632f745c591461052757806337beed91146105475780633a6177661461056757600080fd5b80630c1c972a146104a757806315f5d8a0146104bc57806318160ddd146104d257806323b872dd146104e757600080fd5b806306fdde031161037557806306fdde0314610417578063081812fc14610439578063095ea7b3146104715780630a3025301461049157600080fd5b80630178c2ad1461039c57806301ffc9a7146103be578063047fc9aa146103f3575b600080fd5b3480156103a857600080fd5b506103bc6103b7366004612c6e565b610aed565b005b3480156103ca57600080fd5b506103de6103d9366004612ca2565b610b3c565b60405190151581526020015b60405180910390f35b3480156103ff57600080fd5b50610409600c5481565b6040519081526020016103ea565b34801561042357600080fd5b5061042c610ba9565b6040516103ea9190612f31565b34801561044557600080fd5b50610459610454366004612c89565b610c3b565b6040516001600160a01b0390911681526020016103ea565b34801561047d57600080fd5b506103bc61048c366004612bf7565b610cc6565b34801561049d57600080fd5b50610409600f5481565b3480156104b357600080fd5b506103bc610dde565b3480156104c857600080fd5b5061040960095481565b3480156104de57600080fd5b50610409610e19565b3480156104f357600080fd5b506103bc610502366004612b02565b610e2f565b34801561051357600080fd5b506011546103de9062010000900460ff1681565b34801561053357600080fd5b50610409610542366004612bf7565b610e3a565b34801561055357600080fd5b506103bc610562366004612c6e565b610fb1565b34801561057357600080fd5b506011546103de90610100900460ff1681565b34801561059257600080fd5b506103bc610ff5565b6103bc6105a9366004612d24565b611082565b3480156105ba57600080fd5b506103bc6105c9366004612b02565b6111f2565b3480156105da57600080fd5b506104096105e9366004612c89565b61120d565b3480156105fa57600080fd5b506103bc610609366004612c89565b611275565b34801561061a57600080fd5b50610409600e5481565b34801561063057600080fd5b506103bc61063f366004612cdc565b6112a4565b34801561065057600080fd5b506103bc61065f366004612c89565b6112e5565b34801561067057600080fd5b5061045961067f366004612c89565b611314565b34801561069057600080fd5b50610409600b5481565b3480156106a657600080fd5b506103bc6106b5366004612c89565b611326565b6103bc6106c8366004612d24565b611355565b3480156106d957600080fd5b506104096106e8366004612aa5565b611460565b3480156106f957600080fd5b5060115461070e906301000000900460ff1681565b60405160ff90911681526020016103ea565b34801561072c57600080fd5b5061042c6114f1565b34801561074157600080fd5b506103bc611500565b6103bc610758366004612d3f565b611536565b34801561076957600080fd5b506103bc610778366004612c89565b611763565b34801561078957600080fd5b5060115461070e90640100000000900460ff1681565b3480156107ab57600080fd5b5060115461070e9065010000000000900460ff1681565b3480156107ce57600080fd5b506103bc6107dd366004612d24565b611792565b3480156107ee57600080fd5b506007546001600160a01b0316610459565b34801561080c57600080fd5b506103bc61081b366004612c6e565b6117de565b34801561082c57600080fd5b5061042c61181b565b34801561084157600080fd5b5061040960105481565b34801561085757600080fd5b506103bc61182a565b34801561086c57600080fd5b506103bc61087b366004612bc2565b611866565b34801561088c57600080fd5b506103bc61089b366004612d24565b61192b565b6103bc6108ae366004612d91565b611979565b3480156108bf57600080fd5b506103bc6108ce366004612aa5565b611bc1565b3480156108df57600080fd5b506103bc6108ee366004612b43565b611c0d565b3480156108ff57600080fd5b506011546103de9060ff1681565b34801561091957600080fd5b50610409600a5481565b34801561092f57600080fd5b5061070e61093e366004612aa5565b60136020526000908152604090205460ff1681565b34801561095f57600080fd5b5061042c61096e366004612c89565b611c40565b34801561097f57600080fd5b506103bc61098e366004612c89565b611d0d565b34801561099f57600080fd5b50600854610459906001600160a01b031681565b3480156109bf57600080fd5b5060115461070e90600160301b900460ff1681565b3480156109e057600080fd5b506103bc6109ef366004612d24565b611d3c565b348015610a0057600080fd5b5061070e610a0f366004612aa5565b60126020526000908152604090205460ff1681565b348015610a3057600080fd5b506103bc610a3f366004612c23565b611d86565b348015610a5057600080fd5b506103de610a5f366004612ac9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a9957600080fd5b506103bc610aa8366004612aa5565b611dfd565b348015610ab957600080fd5b506103bc610ac8366004612c89565b611e95565b348015610ad957600080fd5b506103bc610ae8366004612c89565b611ec4565b6007546001600160a01b03163314610b205760405162461bcd60e51b8152600401610b1790612fd0565b60405180910390fd5b60118054911515620100000262ff000019909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480610b6d57506001600160e01b03198216635b5e139f60e01b145b80610b8857506001600160e01b0319821663780e9d6360e01b145b80610ba357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610bb89061314d565b80601f0160208091040260200160405190810160405280929190818152602001828054610be49061314d565b8015610c315780601f10610c0657610100808354040283529160200191610c31565b820191906000526020600020905b815481529060010190602001808311610c1457829003601f168201915b5050505050905090565b6000610c48826000541190565b610caa5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610b17565b506000908152600560205260409020546001600160a01b031690565b6000610cd182611314565b9050806001600160a01b0316836001600160a01b03161415610d405760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b17565b336001600160a01b0382161480610d5c5750610d5c8133610a5f565b610dce5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b17565b610dd9838383611ef3565b505050565b6007546001600160a01b03163314610e085760405162461bcd60e51b8152600401610b1790612fd0565b6011805462ffffff19166001179055565b60006001600054610e2a91906130f3565b905090565b610dd9838383611f4f565b6000610e4583611460565b8210610e9e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b17565b6000610ea8610e19565b905060008060005b83811015610f51576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610f0257805192505b876001600160a01b0316836001600160a01b03161415610f3e5786841415610f3057509350610ba392505050565b83610f3a81613188565b9450505b5080610f4981613188565b915050610eb0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b17565b6007546001600160a01b03163314610fdb5760405162461bcd60e51b8152600401610b1790612fd0565b601180549115156101000261ff0019909216919091179055565b6007546001600160a01b0316331461101f5760405162461bcd60e51b8152600401610b1790612fd0565b6008546040516000916001600160a01b03169047908381818185875af1925050503d806000811461106c576040519150601f19603f3d011682016040523d82523d6000602084013e611071565b606091505b505090508061107f57600080fd5b50565b601154610100900460ff166110d05760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b6044820152606401610b17565b600c548160ff166110df610e19565b6110e99190613083565b11156111075760405162461bcd60e51b8152600401610b1790612f44565b6011543360009081526012602052604090205460ff650100000000009092048216916111359184911661309b565b60ff1611156111565760405162461bcd60e51b8152600401610b1790612f8d565b8060ff16600a5461116791906130d4565b3410156111ab5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610b17565b33600090815260126020526040812080548392906111cd90849060ff1661309b565b92506101000a81548160ff021916908360ff16021790555061107f338260ff16612294565b610dd983838360405180602001604052806000815250611c0d565b6000611217610e19565b82106112715760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b17565b5090565b6007546001600160a01b0316331461129f5760405162461bcd60e51b8152600401610b1790612fd0565b600e55565b6007546001600160a01b031633146112ce5760405162461bcd60e51b8152600401610b1790612fd0565b80516112e190600d90602084019061292f565b5050565b6007546001600160a01b0316331461130f5760405162461bcd60e51b8152600401610b1790612fd0565b600f55565b600061131f826122ae565b5192915050565b6007546001600160a01b031633146113505760405162461bcd60e51b8152600401610b1790612fd0565b600c55565b60115460ff166113a75760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632053616c6520686173206e6f74207374617274656400000000006044820152606401610b17565b600c548160ff166113b6610e19565b6113c09190613083565b11156113de5760405162461bcd60e51b8152600401610b1790612f44565b6011543360009081526012602052604090205460ff630100000090920482169161140a9184911661309b565b60ff16111561144f5760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b6044820152606401610b17565b8060ff16600b5461116791906130d4565b60006001600160a01b0382166114cc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b17565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600d8054610bb89061314d565b6007546001600160a01b0316331461152a5760405162461bcd60e51b8152600401610b1790612fd0565b611534600061238d565b565b60115462010000900460ff166115855760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b6044820152606401610b17565b600c548360ff16611594610e19565b61159e9190613083565b11156115bc5760405162461bcd60e51b8152600401610b1790612f44565b6011543360009081526012602052604090205460ff6401000000009092048216916115e99186911661309b565b60ff16111561160a5760405162461bcd60e51b8152600401610b1790612f8d565b8260ff1660095461161b91906130d4565b34101561165f5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610b17565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506116d983838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508490506123df565b6117165760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610b17565b336000908152601260205260408120805486929061173890849060ff1661309b565b92506101000a81548160ff021916908360ff16021790555061175d338560ff16612294565b50505050565b6007546001600160a01b0316331461178d5760405162461bcd60e51b8152600401610b1790612fd0565b601055565b6007546001600160a01b031633146117bc5760405162461bcd60e51b8152600401610b1790612fd0565b6011805460ff9092166401000000000264ff0000000019909216919091179055565b6007546001600160a01b031633146118085760405162461bcd60e51b8152600401610b1790612fd0565b6011805460ff1916911515919091179055565b606060028054610bb89061314d565b6007546001600160a01b031633146118545760405162461bcd60e51b8152600401610b1790612fd0565b6011805462ffffff1916610100179055565b6001600160a01b0382163314156118bf5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b17565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146119555760405162461bcd60e51b8152600401610b1790612fd0565b6011805460ff909216650100000000000265ff000000000019909216919091179055565b600c548460ff16611988610e19565b6119929190613083565b11156119b05760405162461bcd60e51b8152600401610b1790612f44565b6011543360009081526013602052604090205460ff600160301b9092048216916119dc9187911661309b565b60ff161115611a445760405162461bcd60e51b815260206004820152602e60248201527f596f752063616e2774206d696e74206d6f7265207468656e20796f7572206d6160448201526d1e0818db185a5b48185b5bdd5b9d60921b6064820152608401610b17565b8360ff168360ff161015611aae5760405162461bcd60e51b815260206004820152602b60248201527f596f752063616e206e6f7420636c61696d206d6f7265207468656e20796f752060448201526a185c9948185b1b1bddd95960aa1b6064820152608401610b17565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611b288383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060105491508490506123df565b611b655760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610b17565b601154336000908152601360205260408120805460ff600160301b909404841693919291611b959185911661309b565b92506101000a81548160ff021916908360ff160217905550611bba338660ff16612294565b5050505050565b6007546001600160a01b03163314611beb5760405162461bcd60e51b8152600401610b1790612fd0565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b611c18848484611f4f565b611c24848484846123f5565b61175d5760405162461bcd60e51b8152600401610b1790613005565b6060611c4d826000541190565b611cb15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b17565b6000600d8054611cc09061314d565b905011611cdc5760405180602001604052806000815250610ba3565b600d611ce783612503565b604051602001611cf8929190612e39565b60405160208183030381529060405292915050565b6007546001600160a01b03163314611d375760405162461bcd60e51b8152600401610b1790612fd0565b600955565b6007546001600160a01b03163314611d665760405162461bcd60e51b8152600401610b1790612fd0565b6011805460ff90921663010000000263ff00000019909216919091179055565b6007546001600160a01b03163314611db05760405162461bcd60e51b8152600401610b1790612fd0565b60005b8281101561175d57611deb848483818110611dd057611dd06131e3565b9050602002016020810190611de59190612aa5565b83612294565b80611df581613188565b915050611db3565b6007546001600160a01b03163314611e275760405162461bcd60e51b8152600401610b1790612fd0565b6001600160a01b038116611e8c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b17565b61107f8161238d565b6007546001600160a01b03163314611ebf5760405162461bcd60e51b8152600401610b1790612fd0565b600b55565b6007546001600160a01b03163314611eee5760405162461bcd60e51b8152600401610b1790612fd0565b600a55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f5a826122ae565b80519091506000906001600160a01b0316336001600160a01b03161480611f91575033611f8684610c3b565b6001600160a01b0316145b80611fa357508151611fa39033610a5f565b90508061200d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b17565b846001600160a01b031682600001516001600160a01b0316146120815760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b17565b6001600160a01b0384166120e55760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b17565b6120f56000848460000151611ef3565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b0392831660001901831617909255898616808652838620805493841693831660019081019093169390931790925582518084018452918252426001600160401b039081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906121b9908590613083565b6000818152600360205260409020549091506001600160a01b031661224a576121e3816000541190565b1561224a5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6112e1828260405180602001604052806000815250612600565b60408051808201909152600080825260208201526122cd826000541190565b61232c5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b17565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561237a579392505050565b508061238581613136565b91505061232e565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826123ec85846128bb565b14949350505050565b60006001600160a01b0384163b156124f757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612439903390899088908890600401612ef4565b602060405180830381600087803b15801561245357600080fd5b505af1925050508015612483575060408051601f3d908101601f1916820190925261248091810190612cbf565b60015b6124dd573d8080156124b1576040519150601f19603f3d011682016040523d82523d6000602084013e6124b6565b606091505b5080516124d55760405162461bcd60e51b8152600401610b1790613005565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506124fb565b5060015b949350505050565b6060816125275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612551578061253b81613188565b915061254a9050600a836130c0565b915061252b565b6000816001600160401b0381111561256b5761256b6131f9565b6040519080825280601f01601f191660200182016040528015612595576020820181803683370190505b5090505b84156124fb576125aa6001836130f3565b91506125b7600a866131a3565b6125c2906030613083565b60f81b8183815181106125d7576125d76131e3565b60200101906001600160f81b031916908160001a9053506125f9600a866130c0565b9450612599565b6000546001600160a01b0384166126635760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b17565b61266e816000541190565b156126bb5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b17565b600083116127175760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610b17565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612773908790613058565b6001600160801b031681526020018583602001516127919190613058565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156128b05760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461287460008884886123f5565b6128905760405162461bcd60e51b8152600401610b1790613005565b8161289a81613188565b92505080806128a890613188565b915050612827565b50600081905561228c565b600081815b84518110156129275760008582815181106128dd576128dd6131e3565b602002602001015190508083116129035760008381526020829052604090209250612914565b600081815260208490526040902092505b508061291f81613188565b9150506128c0565b509392505050565b82805461293b9061314d565b90600052602060002090601f01602090048101928261295d57600085556129a3565b82601f1061297657805160ff19168380011785556129a3565b828001600101855582156129a3579182015b828111156129a3578251825591602001919060010190612988565b506112719291505b8082111561127157600081556001016129ab565b60006001600160401b03808411156129d9576129d96131f9565b604051601f8501601f19908116603f01168101908282118183101715612a0157612a016131f9565b81604052809350858152868686011115612a1a57600080fd5b858560208301376000602087830101525050509392505050565b60008083601f840112612a4657600080fd5b5081356001600160401b03811115612a5d57600080fd5b6020830191508360208260051b8501011115612a7857600080fd5b9250929050565b80358015158114612a8f57600080fd5b919050565b803560ff81168114612a8f57600080fd5b600060208284031215612ab757600080fd5b8135612ac28161320f565b9392505050565b60008060408385031215612adc57600080fd5b8235612ae78161320f565b91506020830135612af78161320f565b809150509250929050565b600080600060608486031215612b1757600080fd5b8335612b228161320f565b92506020840135612b328161320f565b929592945050506040919091013590565b60008060008060808587031215612b5957600080fd5b8435612b648161320f565b93506020850135612b748161320f565b92506040850135915060608501356001600160401b03811115612b9657600080fd5b8501601f81018713612ba757600080fd5b612bb6878235602084016129bf565b91505092959194509250565b60008060408385031215612bd557600080fd5b8235612be08161320f565b9150612bee60208401612a7f565b90509250929050565b60008060408385031215612c0a57600080fd5b8235612c158161320f565b946020939093013593505050565b600080600060408486031215612c3857600080fd5b83356001600160401b03811115612c4e57600080fd5b612c5a86828701612a34565b909790965060209590950135949350505050565b600060208284031215612c8057600080fd5b612ac282612a7f565b600060208284031215612c9b57600080fd5b5035919050565b600060208284031215612cb457600080fd5b8135612ac281613224565b600060208284031215612cd157600080fd5b8151612ac281613224565b600060208284031215612cee57600080fd5b81356001600160401b03811115612d0457600080fd5b8201601f81018413612d1557600080fd5b6124fb848235602084016129bf565b600060208284031215612d3657600080fd5b612ac282612a94565b600080600060408486031215612d5457600080fd5b612d5d84612a94565b925060208401356001600160401b03811115612d7857600080fd5b612d8486828701612a34565b9497909650939450505050565b60008060008060608587031215612da757600080fd5b612db085612a94565b9350612dbe60208601612a94565b925060408501356001600160401b03811115612dd957600080fd5b612de587828801612a34565b95989497509550505050565b60008151808452612e0981602086016020860161310a565b601f01601f19169290920160200192915050565b60008151612e2f81856020860161310a565b9290920192915050565b600080845481600182811c915080831680612e5557607f831692505b6020808410821415612e7557634e487b7160e01b86526022600452602486fd5b818015612e895760018114612e9a57612ec7565b60ff19861689528489019650612ec7565b60008b81526020902060005b86811015612ebf5781548b820152908501908301612ea6565b505084890196505b505050505050612eeb612eda8286612e1d565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f2790830184612df1565b9695505050505050565b602081526000612ac26020830184612df1565b60208082526029908201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604082015268616c20737570706c7960b81b606082015260800190565b60208082526023908201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60408201526265742160e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561307a5761307a6131b7565b01949350505050565b60008219821115613096576130966131b7565b500190565b600060ff821660ff84168060ff038211156130b8576130b86131b7565b019392505050565b6000826130cf576130cf6131cd565b500490565b60008160001904831182151516156130ee576130ee6131b7565b500290565b600082821015613105576131056131b7565b500390565b60005b8381101561312557818101518382015260200161310d565b8381111561175d5750506000910152565b600081613145576131456131b7565b506000190190565b600181811c9082168061316157607f821691505b6020821081141561318257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561319c5761319c6131b7565b5060010190565b6000826131b2576131b26131cd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461107f57600080fd5b6001600160e01b03198116811461107f57600080fdfea2646970667358221220a1608851b2481413a5378e2107a80210c0dee9b4db8d379603b89d47f7e4e9be64736f6c63430008070033
Deployed Bytecode Sourcemap
41350:5800:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45808:92;;;;;;;;;;-1:-1:-1;45808:92:0;;;;;:::i;:::-;;:::i;:::-;;24279:372;;;;;;;;;;-1:-1:-1;24279:372:0;;;;;:::i;:::-;;:::i;:::-;;;10644:14:1;;10637:22;10619:41;;10607:2;10592:18;24279:372:0;;;;;;;;41593:28;;;;;;;;;;;;;;;;;;;10817:25:1;;;10805:2;10790:18;41593:28:0;10671:177:1;25906:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27467:214::-;;;;;;;;;;-1:-1:-1;27467:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9942:32:1;;;9924:51;;9912:2;9897:18;27467:214:0;9778:203:1;26988:413:0;;;;;;;;;;-1:-1:-1;26988:413:0;;;;;:::i;:::-;;:::i;41728:27::-;;;;;;;;;;;;;;;;46046:142;;;;;;;;;;;;;:::i;41465:37::-;;;;;;;;;;;;;;;;22716:104;;;;;;;;;;;;;:::i;28343:162::-;;;;;;;;;;-1:-1:-1;28343:162:0;;;;;:::i;:::-;;:::i;41873:31::-;;;;;;;;;;-1:-1:-1;41873:31:0;;;;;;;;;;;23384:823;;;;;;;;;;-1:-1:-1;23384:823:0;;;;;:::i;:::-;;:::i;45710:92::-;;;;;;;;;;-1:-1:-1;45710:92:0;;;;;:::i;:::-;;:::i;41836:32::-;;;;;;;;;;-1:-1:-1;41836:32:0;;;;;;;;;;;47000:145;;;;;;;;;;;;;:::i;43188:467::-;;;;;;:::i;:::-;;:::i;28576:177::-;;;;;;;;;;-1:-1:-1;28576:177:0;;;;;:::i;:::-;;:::i;22897:187::-;;;;;;;;;;-1:-1:-1;22897:187:0;;;;;:::i;:::-;;:::i;46555:101::-;;;;;;;;;;-1:-1:-1;46555:101:0;;;;;:::i;:::-;;:::i;41696:27::-;;;;;;;;;;;;;;;;45191:94;;;;;;;;;;-1:-1:-1;45191:94:0;;;;;:::i;:::-;;:::i;46662:101::-;;;;;;;;;;-1:-1:-1;46662:101:0;;;;;:::i;:::-;;:::i;25715:124::-;;;;;;;;;;-1:-1:-1;25715:124:0;;;;;:::i;:::-;;:::i;41549:39::-;;;;;;;;;;;;;;;;46460:89;;;;;;;;;;-1:-1:-1;46460:89:0;;;;;:::i;:::-;;:::i;42721:461::-;;;;;;:::i;:::-;;:::i;24715:221::-;;;;;;;;;;-1:-1:-1;24715:221:0;;;;;:::i;:::-;;:::i;41909:25::-;;;;;;;;;;-1:-1:-1;41909:25:0;;;;;;;;;;;;;;22872:4:1;22860:17;;;22842:36;;22830:2;22815:18;41909:25:0;22700:184:1;45000:85:0;;;;;;;;;;;;;:::i;37980:103::-;;;;;;;;;;;;;:::i;43661:649::-;;;;;;:::i;:::-;;:::i;46769:109::-;;;;;;;;;;-1:-1:-1;46769:109:0;;;;;:::i;:::-;;:::i;41939:23::-;;;;;;;;;;-1:-1:-1;41939:23:0;;;;;;;;;;;41967;;;;;;;;;;-1:-1:-1;41967:23:0;;;;;;;;;;;46372:82;;;;;;;;;;-1:-1:-1;46372:82:0;;;;;:::i;:::-;;:::i;37329:87::-;;;;;;;;;;-1:-1:-1;37402:6:0;;-1:-1:-1;;;;;37402:6:0;37329:87;;45604:100;;;;;;;;;;-1:-1:-1;45604:100:0;;;;;:::i;:::-;;:::i;26075:104::-;;;;;;;;;;;;;:::i;41760:30::-;;;;;;;;;;;;;;;;45906:134;;;;;;;;;;;;;:::i;27753:288::-;;;;;;;;;;-1:-1:-1;27753:288:0;;;;;:::i;:::-;;:::i;46284:82::-;;;;;;;;;;-1:-1:-1;46284:82:0;;;;;:::i;:::-;;:::i;44316:678::-;;;;;;:::i;:::-;;:::i;46884:110::-;;;;;;;;;;-1:-1:-1;46884:110:0;;;;;:::i;:::-;;:::i;28824:355::-;;;;;;;;;;-1:-1:-1;28824:355:0;;;;;:::i;:::-;;:::i;41795:36::-;;;;;;;;;;-1:-1:-1;41795:36:0;;;;;;;;41507:37;;;;;;;;;;;;;;;;42076:46;;;;;;;;;;-1:-1:-1;42076:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;42227:288;;;;;;;;;;-1:-1:-1;42227:288:0;;;;;:::i;:::-;;:::i;45487:90::-;;;;;;;;;;-1:-1:-1;45487:90:0;;;;;:::i;:::-;;:::i;41432:28::-;;;;;;;;;;-1:-1:-1;41432:28:0;;;;-1:-1:-1;;;;;41432:28:0;;;41995:25;;;;;;;;;;-1:-1:-1;41995:25:0;;;;-1:-1:-1;;;41995:25:0;;;;;;46194:84;;;;;;;;;;-1:-1:-1;46194:84:0;;;;;:::i;:::-;;:::i;42027:44::-;;;;;;;;;;-1:-1:-1;42027:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;42521:194;;;;;;;;;;-1:-1:-1;42521:194:0;;;;;:::i;:::-;;:::i;28112:164::-;;;;;;;;;;-1:-1:-1;28112:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28233:25:0;;;28209:4;28233:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28112:164;38238:201;;;;;;;;;;-1:-1:-1;38238:201:0;;;;;:::i;:::-;;:::i;45291:94::-;;;;;;;;;;-1:-1:-1;45291:94:0;;;;;:::i;:::-;;:::i;45391:90::-;;;;;;;;;;-1:-1:-1;45391:90:0;;;;;:::i;:::-;;:::i;45808:92::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;;;;;;;;;45873:12:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;45873:21:0;;::::1;::::0;;;::::1;::::0;;45808:92::o;24279:372::-;24381:4;-1:-1:-1;;;;;;24418:40:0;;-1:-1:-1;;;24418:40:0;;:105;;-1:-1:-1;;;;;;;24475:48:0;;-1:-1:-1;;;24475:48:0;24418:105;:172;;;-1:-1:-1;;;;;;;24540:50:0;;-1:-1:-1;;;24540:50:0;24418:172;:225;;;-1:-1:-1;;;;;;;;;;13176:40:0;;;24607:36;24398:245;24279:372;-1:-1:-1;;24279:372:0:o;25906:100::-;25960:13;25993:5;25986:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25906:100;:::o;27467:214::-;27535:7;27563:16;27571:7;29491:4;29525:12;-1:-1:-1;29515:22:0;29434:111;27563:16;27555:74;;;;-1:-1:-1;;;27555:74:0;;22306:2:1;27555:74:0;;;22288:21:1;22345:2;22325:18;;;22318:30;22384:34;22364:18;;;22357:62;-1:-1:-1;;;22435:18:1;;;22428:43;22488:19;;27555:74:0;22104:409:1;27555:74:0;-1:-1:-1;27649:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27649:24:0;;27467:214::o;26988:413::-;27061:13;27077:24;27093:7;27077:15;:24::i;:::-;27061:40;;27126:5;-1:-1:-1;;;;;27120:11:0;:2;-1:-1:-1;;;;;27120:11:0;;;27112:58;;;;-1:-1:-1;;;27112:58:0;;19139:2:1;27112:58:0;;;19121:21:1;19178:2;19158:18;;;19151:30;19217:34;19197:18;;;19190:62;-1:-1:-1;;;19268:18:1;;;19261:32;19310:19;;27112:58:0;18937:398:1;27112:58:0;20738:10;-1:-1:-1;;;;;27205:21:0;;;;:62;;-1:-1:-1;27230:37:0;27247:5;20738:10;28112:164;:::i;27230:37::-;27183:169;;;;-1:-1:-1;;;27183:169:0;;15181:2:1;27183:169:0;;;15163:21:1;15220:2;15200:18;;;15193:30;15259:34;15239:18;;;15232:62;15330:27;15310:18;;;15303:55;15375:19;;27183:169:0;14979:421:1;27183:169:0;27365:28;27374:2;27378:7;27387:5;27365:8;:28::i;:::-;27050:351;26988:413;;:::o;46046:142::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;46101:16:::1;:23:::0;;-1:-1:-1;;46162:20:0;46120:4:::1;46162:20:::0;;;46046:142::o;22716:104::-;22769:7;22811:1;22796:12;;:16;;;;:::i;:::-;22789:23;;22716:104;:::o;28343:162::-;28469:28;28479:4;28485:2;28489:7;28469:9;:28::i;23384:823::-;23473:7;23509:16;23519:5;23509:9;:16::i;:::-;23501:5;:24;23493:71;;;;-1:-1:-1;;;23493:71:0;;11279:2:1;23493:71:0;;;11261:21:1;11318:2;11298:18;;;11291:30;11357:34;11337:18;;;11330:62;-1:-1:-1;;;11408:18:1;;;11401:32;11450:19;;23493:71:0;11077:398:1;23493:71:0;23575:22;23600:13;:11;:13::i;:::-;23575:38;;23624:19;23658:25;23712:9;23707:426;23731:14;23727:1;:18;23707:426;;;23767:31;23801:14;;;:11;:14;;;;;;;;;23767:48;;;;;;;;;-1:-1:-1;;;;;23767:48:0;;;;;-1:-1:-1;;;23767:48:0;;;-1:-1:-1;;;;;23767:48:0;;;;;;;;23834:28;23830:103;;23903:14;;;-1:-1:-1;23830:103:0;23972:5;-1:-1:-1;;;;;23951:26:0;:17;-1:-1:-1;;;;;23951:26:0;;23947:175;;;24017:5;24002:11;:20;23998:77;;;-1:-1:-1;24054:1:0;-1:-1:-1;24047:8:0;;-1:-1:-1;;;24047:8:0;23998:77;24093:13;;;;:::i;:::-;;;;23947:175;-1:-1:-1;23747:3:0;;;;:::i;:::-;;;;23707:426;;;-1:-1:-1;24143:56:0;;-1:-1:-1;;;24143:56:0;;21126:2:1;24143:56:0;;;21108:21:1;21165:2;21145:18;;;21138:30;21204:34;21184:18;;;21177:62;-1:-1:-1;;;21255:18:1;;;21248:44;21309:19;;24143:56:0;20924:410:1;45710:92:0;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;45775:12:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;45775:21:0;;::::1;::::0;;;::::1;::::0;;45710:92::o;47000:145::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;47068:13:::1;::::0;47060:61:::1;::::0;47047:7:::1;::::0;-1:-1:-1;;;;;47068:13:0::1;::::0;47095:21:::1;::::0;47047:7;47060:61;47047:7;47060:61;47095:21;47068:13;47060:61:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47046:75;;;47136:2;47128:11;;;::::0;::::1;;47039:106;47000:145::o:0;43188:467::-;43255:12;;;;;;;43247:45;;;;-1:-1:-1;;;43247:45:0;;21541:2:1;43247:45:0;;;21523:21:1;21580:2;21560:18;;;21553:30;-1:-1:-1;;;21599:18:1;;;21592:50;21659:18;;43247:45:0;21339:344:1;43247:45:0;43338:6;;43323:11;43307:27;;:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:37;;43299:91;;;;-1:-1:-1;;;43299:91:0;;;;;;;:::i;:::-;43445:5;;43416:10;43405:22;;;;:10;:22;;;;;;43445:5;;;;;;;;43405:36;;43430:11;;43405:22;:36;:::i;:::-;:45;;;;43397:93;;;;-1:-1:-1;;;43397:93:0;;;;;;;:::i;:::-;43528:11;43518:21;;:7;;:21;;;;:::i;:::-;43505:9;:34;;43497:65;;;;-1:-1:-1;;;43497:65:0;;14424:2:1;43497:65:0;;;14406:21:1;14463:2;14443:18;;;14436:30;-1:-1:-1;;;14482:18:1;;;14475:48;14540:18;;43497:65:0;14222:342:1;43497:65:0;43582:10;43571:22;;;;:10;:22;;;;;:37;;43597:11;;43571:22;:37;;43597:11;;43571:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43615:34;43625:10;43637:11;43615:34;;:9;:34::i;28576:177::-;28706:39;28723:4;28729:2;28733:7;28706:39;;;;;;;;;;;;:16;:39::i;22897:187::-;22964:7;23000:13;:11;:13::i;:::-;22992:5;:21;22984:69;;;;-1:-1:-1;;;22984:69:0;;13199:2:1;22984:69:0;;;13181:21:1;13238:2;13218:18;;;13211:30;13277:34;13257:18;;;13250:62;-1:-1:-1;;;13328:18:1;;;13321:33;13371:19;;22984:69:0;12997:399:1;22984:69:0;-1:-1:-1;23071:5:0;22897:187::o;46555:101::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;46626:12:::1;:24:::0;46555:101::o;45191:94::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;45261:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45191:94:::0;:::o;46662:101::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;46733:12:::1;:24:::0;46662:101::o;25715:124::-;25779:7;25806:20;25818:7;25806:11;:20::i;:::-;:25;;25715:124;-1:-1:-1;;25715:124:0:o;46460:89::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;46527:6:::1;:16:::0;46460:89::o;42721:461::-;42786:16;;;;42778:56;;;;-1:-1:-1;;;42778:56:0;;11682:2:1;42778:56:0;;;11664:21:1;11721:2;11701:18;;;11694:30;11760:29;11740:18;;;11733:57;11807:18;;42778:56:0;11480:351:1;42778:56:0;42880:6;;42865:11;42849:27;;:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:37;;42841:91;;;;-1:-1:-1;;;42841:91:0;;;;;;;:::i;:::-;42987:6;;42958:10;42947:22;;;;:10;:22;;;;;;42987:6;;;;;;;;42947:36;;42972:11;;42947:22;:36;:::i;:::-;:46;;;;42939:76;;;;-1:-1:-1;;;42939:76:0;;15607:2:1;42939:76:0;;;15589:21:1;15646:2;15626:18;;;15619:30;-1:-1:-1;;;15665:18:1;;;15658:47;15722:18;;42939:76:0;15405:341:1;42939:76:0;43055:11;43043:23;;:9;;:23;;;;:::i;24715:221::-;24779:7;-1:-1:-1;;;;;24807:19:0;;24799:75;;;;-1:-1:-1;;;24799:75:0;;16357:2:1;24799:75:0;;;16339:21:1;16396:2;16376:18;;;16369:30;16435:34;16415:18;;;16408:62;-1:-1:-1;;;16486:18:1;;;16479:41;16537:19;;24799:75:0;16155:407:1;24799:75:0;-1:-1:-1;;;;;;24900:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24900:27:0;;24715:221::o;45000:85::-;45043:13;45072:7;45065:14;;;;;:::i;37980:103::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;38045:30:::1;38072:1;38045:18;:30::i;:::-;37980:103::o:0;43661:649::-;43761:12;;;;;;;43753:45;;;;-1:-1:-1;;;43753:45:0;;21541:2:1;43753:45:0;;;21523:21:1;21580:2;21560:18;;;21553:30;-1:-1:-1;;;21599:18:1;;;21592:50;21659:18;;43753:45:0;21339:344:1;43753:45:0;43844:6;;43829:11;43813:27;;:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:37;;43805:91;;;;-1:-1:-1;;;43805:91:0;;;;;;;:::i;:::-;43951:5;;43922:10;43911:22;;;;:10;:22;;;;;;43951:5;;;;;;;;43911:36;;43936:11;;43911:22;:36;:::i;:::-;:45;;;;43903:93;;;;-1:-1:-1;;;43903:93:0;;;;;;;:::i;:::-;44034:11;44024:21;;:7;;:21;;;;:::i;:::-;44011:9;:34;;44003:65;;;;-1:-1:-1;;;44003:65:0;;14424:2:1;44003:65:0;;;14406:21:1;14463:2;14443:18;;;14436:30;-1:-1:-1;;;14482:18:1;;;14475:48;14540:18;;44003:65:0;14222:342:1;44003:65:0;44102:28;;-1:-1:-1;;44119:10:0;8177:2:1;8173:15;8169:53;44102:28:0;;;8157:66:1;44077:12:0;;8239::1;;44102:28:0;;;;;;;;;;;;44092:39;;;;;;44077:54;;44146:52;44165:12;;44146:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44179:12:0;;;-1:-1:-1;44193:4:0;;-1:-1:-1;44146:18:0;:52::i;:::-;44138:79;;;;-1:-1:-1;;;44138:79:0;;12038:2:1;44138:79:0;;;12020:21:1;12077:2;12057:18;;;12050:30;-1:-1:-1;;;12096:18:1;;;12089:44;12150:18;;44138:79:0;11836:338:1;44138:79:0;44237:10;44226:22;;;;:10;:22;;;;;:37;;44252:11;;44226:22;:37;;44252:11;;44226:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44270:34;44280:10;44292:11;44270:34;;:9;:34::i;:::-;43746:564;43661:649;;;:::o;46769:109::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;46845:15:::1;:27:::0;46769:109::o;46372:82::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;46433:5:::1;:15:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;46433:15:0;;::::1;::::0;;;::::1;::::0;;46372:82::o;45604:100::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;45673:16:::1;:25:::0;;-1:-1:-1;;45673:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45604:100::o;26075:104::-;26131:13;26164:7;26157:14;;;;;:::i;45906:134::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;45953:16:::1;:24:::0;;-1:-1:-1;;46014:20:0;45953:24:::1;46014:20:::0;;;45906:134::o;27753:288::-;-1:-1:-1;;;;;27848:24:0;;20738:10;27848:24;;27840:63;;;;-1:-1:-1;;;27840:63:0;;18365:2:1;27840:63:0;;;18347:21:1;18404:2;18384:18;;;18377:30;18443:28;18423:18;;;18416:56;18489:18;;27840:63:0;18163:350:1;27840:63:0;20738:10;27916:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27916:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27916:53:0;;;;;;;;;;27985:48;;10619:41:1;;;27916:42:0;;20738:10;27985:48;;10592:18:1;27985:48:0;;;;;;;27753:288;;:::o;46284:82::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;46345:5:::1;:15:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;46345:15:0;;::::1;::::0;;;::::1;::::0;;46284:82::o;44316:678::-;44468:6;;44456:8;44440:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;44432:88;;;;-1:-1:-1;;;44432:88:0;;;;;;;:::i;:::-;44579:8;;44552:10;44539:24;;;;:12;:24;;;;;;44579:8;-1:-1:-1;;;44579:8:0;;;;;;44539:35;;44566:8;;44539:24;:35;:::i;:::-;:48;;;;44531:107;;;;-1:-1:-1;;;44531:107:0;;14009:2:1;44531:107:0;;;13991:21:1;14048:2;14028:18;;;14021:30;14087:34;14067:18;;;14060:62;-1:-1:-1;;;14138:18:1;;;14131:44;14192:19;;44531:107:0;13807:410:1;44531:107:0;44673:8;44657:24;;:12;:24;;;;44649:80;;;;-1:-1:-1;;;44649:80:0;;17537:2:1;44649:80:0;;;17519:21:1;17576:2;17556:18;;;17549:30;17615:34;17595:18;;;17588:62;-1:-1:-1;;;17666:18:1;;;17659:41;17717:19;;44649:80:0;17335:407:1;44649:80:0;44771:28;;-1:-1:-1;;44788:10:0;8177:2:1;8173:15;8169:53;44771:28:0;;;8157:66:1;44746:12:0;;8239::1;;44771:28:0;;;;;;;;;;;;44761:39;;;;;;44746:54;;44819:55;44838:12;;44819:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44852:15:0;;;-1:-1:-1;44869:4:0;;-1:-1:-1;44819:18:0;:55::i;:::-;44811:82;;;;-1:-1:-1;;;44811:82:0;;12038:2:1;44811:82:0;;;12020:21:1;12077:2;12057:18;;;12050:30;-1:-1:-1;;;12096:18:1;;;12089:44;12150:18;;44811:82:0;11836:338:1;44811:82:0;44934:8;;44919:10;44906:24;;;;:12;:24;;;;;:36;;44934:8;-1:-1:-1;;;44934:8:0;;;;;;44906:24;;;:36;;44934:8;;44906:36;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44955:31;44965:10;44977:8;44955:31;;:9;:31::i;:::-;44421:573;44316:678;;;;:::o;46884:110::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;46962:13:::1;:26:::0;;-1:-1:-1;;;;;;46962:26:0::1;-1:-1:-1::0;;;;;46962:26:0;;;::::1;::::0;;;::::1;::::0;;46884:110::o;28824:355::-;28983:28;28993:4;28999:2;29003:7;28983:9;:28::i;:::-;29044:48;29067:4;29073:2;29077:7;29086:5;29044:22;:48::i;:::-;29022:149;;;;-1:-1:-1;;;29022:149:0;;;;;;;:::i;42227:288::-;42300:13;42330:16;42338:7;29491:4;29525:12;-1:-1:-1;29515:22:0;29434:111;42330:16;42322:76;;;;-1:-1:-1;;;42322:76:0;;17949:2:1;42322:76:0;;;17931:21:1;17988:2;17968:18;;;17961:30;18027:34;18007:18;;;18000:62;-1:-1:-1;;;18078:18:1;;;18071:45;18133:19;;42322:76:0;17747:411:1;42322:76:0;42438:1;42420:7;42414:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;42466:7;42475:18;:7;:16;:18::i;:::-;42449:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42407:102;42227:288;-1:-1:-1;;42227:288:0:o;45487:90::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;45552:7:::1;:19:::0;45487:90::o;46194:84::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;46256:6:::1;:16:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;46256:16:0;;::::1;::::0;;;::::1;::::0;;46194:84::o;42521:194::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;42623:6:::1;42618:92;42633:19:::0;;::::1;42618:92;;;42668:34;42678:10;;42689:1;42678:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;42693:8;42668:9;:34::i;:::-;42654:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42618:92;;38238:201:::0;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38327:22:0;::::1;38319:73;;;::::0;-1:-1:-1;;;38319:73:0;;12381:2:1;38319:73:0::1;::::0;::::1;12363:21:1::0;12420:2;12400:18;;;12393:30;12459:34;12439:18;;;12432:62;-1:-1:-1;;;12510:18:1;;;12503:36;12556:19;;38319:73:0::1;12179:402:1::0;38319:73:0::1;38403:28;38422:8;38403:18;:28::i;45291:94::-:0;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;45358:9:::1;:21:::0;45291:94::o;45391:90::-;37402:6;;-1:-1:-1;;;;;37402:6:0;20738:10;37549:23;37541:68;;;;-1:-1:-1;;;37541:68:0;;;;;;;:::i;:::-;45456:7:::1;:19:::0;45391:90::o;33478:196::-;33593:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33593:29:0;-1:-1:-1;;;;;33593:29:0;;;;;;;;;33638:28;;33593:24;;33638:28;;;;;;;33478:196;;;:::o;31577:1783::-;31692:35;31730:20;31742:7;31730:11;:20::i;:::-;31805:18;;31692:58;;-1:-1:-1;31763:22:0;;-1:-1:-1;;;;;31789:34:0;20738:10;-1:-1:-1;;;;;31789:34:0;;:87;;;-1:-1:-1;20738:10:0;31840:20;31852:7;31840:11;:20::i;:::-;-1:-1:-1;;;;;31840:36:0;;31789:87;:154;;;-1:-1:-1;31910:18:0;;31893:50;;20738:10;28112:164;:::i;31893:50::-;31763:181;;31965:17;31957:80;;;;-1:-1:-1;;;31957:80:0;;18720:2:1;31957:80:0;;;18702:21:1;18759:2;18739:18;;;18732:30;18798:34;18778:18;;;18771:62;-1:-1:-1;;;18849:18:1;;;18842:48;18907:19;;31957:80:0;18518:414:1;31957:80:0;32080:4;-1:-1:-1;;;;;32058:26:0;:13;:18;;;-1:-1:-1;;;;;32058:26:0;;32050:77;;;;-1:-1:-1;;;32050:77:0;;16769:2:1;32050:77:0;;;16751:21:1;16808:2;16788:18;;;16781:30;16847:34;16827:18;;;16820:62;-1:-1:-1;;;16898:18:1;;;16891:36;16944:19;;32050:77:0;16567:402:1;32050:77:0;-1:-1:-1;;;;;32146:16:0;;32138:66;;;;-1:-1:-1;;;32138:66:0;;13603:2:1;32138:66:0;;;13585:21:1;13642:2;13622:18;;;13615:30;13681:34;13661:18;;;13654:62;-1:-1:-1;;;13732:18:1;;;13725:35;13777:19;;32138:66:0;13401:401:1;32138:66:0;32325:49;32342:1;32346:7;32355:13;:18;;;32325:8;:49::i;:::-;-1:-1:-1;;;;;32579:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;32579:31:0;;;-1:-1:-1;;;;;32579:31:0;;;-1:-1:-1;;32579:31:0;;;;;;;32625:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;32625:29:0;;;;;;;;;;;;;32701:43;;;;;;;;;;32727:15;-1:-1:-1;;;;;32701:43:0;;;;;;;;;32678:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;32678:66:0;;;;;;;-1:-1:-1;;;32678:66:0;;;;;;;;;;;;32579:18;33006:11;;32678:20;;33006:11;:::i;:::-;33073:1;33032:24;;;:11;:24;;;;;:29;32984:33;;-1:-1:-1;;;;;;33032:29:0;33028:227;;33096:20;33104:11;29491:4;29525:12;-1:-1:-1;29515:22:0;29434:111;33096:20;33092:152;;;33164:64;;;;;;;;33179:18;;-1:-1:-1;;;;;33164:64:0;;;;;;33199:28;;;;-1:-1:-1;;;;;33164:64:0;;;;;;;;;-1:-1:-1;33137:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;33137:91:0;-1:-1:-1;;;;;;33137:91:0;;;;;;;;;;;;33092:152;33291:7;33287:2;-1:-1:-1;;;;;33272:27:0;33281:4;-1:-1:-1;;;;;33272:27:0;;;;;;;;;;;33310:42;31681:1679;;;31577:1783;;;:::o;29553:104::-;29622:27;29632:2;29636:8;29622:27;;;;;;;;;;;;:9;:27::i;25181:472::-;-1:-1:-1;;;;;;;;;;;;;;;;;25284:16:0;25292:7;29491:4;29525:12;-1:-1:-1;29515:22:0;29434:111;25284:16;25276:71;;;;-1:-1:-1;;;25276:71:0;;12788:2:1;25276:71:0;;;12770:21:1;12827:2;12807:18;;;12800:30;12866:34;12846:18;;;12839:62;-1:-1:-1;;;12917:18:1;;;12910:40;12967:19;;25276:71:0;12586:406:1;25276:71:0;25380:7;25360:216;25414:31;25448:17;;;:11;:17;;;;;;;;;25414:51;;;;;;;;;-1:-1:-1;;;;;25414:51:0;;;;;-1:-1:-1;;;25414:51:0;;;-1:-1:-1;;;;;25414:51:0;;;;;;;;25484:28;25480:85;;25540:9;25181:472;-1:-1:-1;;;25181:472:0:o;25480:85::-;-1:-1:-1;25391:6:0;;;;:::i;:::-;;;;25360:216;;38599:191;38692:6;;;-1:-1:-1;;;;;38709:17:0;;;-1:-1:-1;;;;;;38709:17:0;;;;;;;38742:40;;38692:6;;;38709:17;38692:6;;38742:40;;38673:16;;38742:40;38662:128;38599:191;:::o;39856:190::-;39981:4;40034;40005:25;40018:5;40025:4;40005:12;:25::i;:::-;:33;;39856:190;-1:-1:-1;;;;39856:190:0:o;34239:804::-;34394:4;-1:-1:-1;;;;;34415:13:0;;3246:20;3294:8;34411:625;;34451:72;;-1:-1:-1;;;34451:72:0;;-1:-1:-1;;;;;34451:36:0;;;;;:72;;20738:10;;34502:4;;34508:7;;34517:5;;34451:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34451:72:0;;;;;;;;-1:-1:-1;;34451:72:0;;;;;;;;;;;;:::i;:::-;;;34447:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34697:13:0;;34693:273;;34740:61;;-1:-1:-1;;;34740:61:0;;;;;;;:::i;34693:273::-;34916:6;34910:13;34901:6;34897:2;34893:15;34886:38;34447:534;-1:-1:-1;;;;;;34574:55:0;-1:-1:-1;;;34574:55:0;;-1:-1:-1;34567:62:0;;34411:625;-1:-1:-1;35020:4:0;34411:625;34239:804;;;;;;:::o;344:723::-;400:13;621:10;617:53;;-1:-1:-1;;648:10:0;;;;;;;;;;;;-1:-1:-1;;;648:10:0;;;;;344:723::o;617:53::-;695:5;680:12;736:78;743:9;;736:78;;769:8;;;;:::i;:::-;;-1:-1:-1;792:10:0;;-1:-1:-1;800:2:0;792:10;;:::i;:::-;;;736:78;;;824:19;856:6;-1:-1:-1;;;;;846:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;846:17:0;;824:39;;874:154;881:10;;874:154;;908:11;918:1;908:11;;:::i;:::-;;-1:-1:-1;977:10:0;985:2;977:5;:10;:::i;:::-;964:24;;:2;:24;:::i;:::-;951:39;;934:6;941;934:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;934:56:0;;;;;;;;-1:-1:-1;1005:11:0;1014:2;1005:11;;:::i;:::-;;;874:154;;29934:1389;30057:20;30080:12;-1:-1:-1;;;;;30111:16:0;;30103:62;;;;-1:-1:-1;;;30103:62:0;;20724:2:1;30103:62:0;;;20706:21:1;20763:2;20743:18;;;20736:30;20802:34;20782:18;;;20775:62;-1:-1:-1;;;20853:18:1;;;20846:31;20894:19;;30103:62:0;20522:397:1;30103:62:0;30310:21;30318:12;29491:4;29525:12;-1:-1:-1;29515:22:0;29434:111;30310:21;30309:22;30301:64;;;;-1:-1:-1;;;30301:64:0;;20366:2:1;30301:64:0;;;20348:21:1;20405:2;20385:18;;;20378:30;20444:31;20424:18;;;20417:59;20493:18;;30301:64:0;20164:353:1;30301:64:0;30395:1;30384:8;:12;30376:60;;;;-1:-1:-1;;;30376:60:0;;19542:2:1;30376:60:0;;;19524:21:1;19581:2;19561:18;;;19554:30;19620:34;19600:18;;;19593:62;-1:-1:-1;;;19671:18:1;;;19664:33;19714:19;;30376:60:0;19340:399:1;30376:60:0;-1:-1:-1;;;;;30556:16:0;;30523:30;30556:16;;;:12;:16;;;;;;;;;30523:49;;;;;;;;;-1:-1:-1;;;;;30523:49:0;;;;;-1:-1:-1;;;30523:49:0;;;;;;;;;;;30602:135;;;;;;;;30628:19;;30523:49;;30602:135;;;30628:39;;30658:8;;30628:39;:::i;:::-;-1:-1:-1;;;;;30602:135:0;;;;;30717:8;30682:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;30602:135:0;;;;;;-1:-1:-1;;;;;30583:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;30583:154:0;;;;;;;;;;;;30776:43;;;;;;;;;;-1:-1:-1;;;;;30802:15:0;30776:43;;;;;;;;30748:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;30748:71:0;-1:-1:-1;;;;;;30748:71:0;;;;;;;;;;;;;;;;;;30760:12;;30880:325;30904:8;30900:1;:12;30880:325;;;30939:38;;30964:12;;-1:-1:-1;;;;;30939:38:0;;;30956:1;;30939:38;;30956:1;;30939:38;31018:59;31049:1;31053:2;31057:12;31071:5;31018:22;:59::i;:::-;30992:172;;;;-1:-1:-1;;;30992:172:0;;;;;;;:::i;:::-;31179:14;;;;:::i;:::-;;;;30914:3;;;;;:::i;:::-;;;;30880:325;;;-1:-1:-1;31217:12:0;:27;;;31255:60;43661:649;40407:675;40490:7;40533:4;40490:7;40548:497;40572:5;:12;40568:1;:16;40548:497;;;40606:20;40629:5;40635:1;40629:8;;;;;;;;:::i;:::-;;;;;;;40606:31;;40672:12;40656;:28;40652:382;;41158:13;41208:15;;;41244:4;41237:15;;;41291:4;41275:21;;40784:57;;40652:382;;;41158:13;41208:15;;;41244:4;41237:15;;;41291:4;41275:21;;40961:57;;40652:382;-1:-1:-1;40586:3:0;;;;:::i;:::-;;;;40548:497;;;-1:-1:-1;41062:12:0;40407:675;-1:-1:-1;;;40407:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:367::-;713:8;723:6;777:3;770:4;762:6;758:17;754:27;744:55;;795:1;792;785:12;744:55;-1:-1:-1;818:20:1;;-1:-1:-1;;;;;850:30:1;;847:50;;;893:1;890;883:12;847:50;930:4;922:6;918:17;906:29;;990:3;983:4;973:6;970:1;966:14;958:6;954:27;950:38;947:47;944:67;;;1007:1;1004;997:12;944:67;650:367;;;;;:::o;1022:160::-;1087:20;;1143:13;;1136:21;1126:32;;1116:60;;1172:1;1169;1162:12;1116:60;1022:160;;;:::o;1187:156::-;1253:20;;1313:4;1302:16;;1292:27;;1282:55;;1333:1;1330;1323:12;1348:247;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;1515:9;1502:23;1534:31;1559:5;1534:31;:::i;:::-;1584:5;1348:247;-1:-1:-1;;;1348:247:1:o;1860:388::-;1928:6;1936;1989:2;1977:9;1968:7;1964:23;1960:32;1957:52;;;2005:1;2002;1995:12;1957:52;2044:9;2031:23;2063:31;2088:5;2063:31;:::i;:::-;2113:5;-1:-1:-1;2170:2:1;2155:18;;2142:32;2183:33;2142:32;2183:33;:::i;:::-;2235:7;2225:17;;;1860:388;;;;;:::o;2253:456::-;2330:6;2338;2346;2399:2;2387:9;2378:7;2374:23;2370:32;2367:52;;;2415:1;2412;2405:12;2367:52;2454:9;2441:23;2473:31;2498:5;2473:31;:::i;:::-;2523:5;-1:-1:-1;2580:2:1;2565:18;;2552:32;2593:33;2552:32;2593:33;:::i;:::-;2253:456;;2645:7;;-1:-1:-1;;;2699:2:1;2684:18;;;;2671:32;;2253:456::o;2714:794::-;2809:6;2817;2825;2833;2886:3;2874:9;2865:7;2861:23;2857:33;2854:53;;;2903:1;2900;2893:12;2854:53;2942:9;2929:23;2961:31;2986:5;2961:31;:::i;:::-;3011:5;-1:-1:-1;3068:2:1;3053:18;;3040:32;3081:33;3040:32;3081:33;:::i;:::-;3133:7;-1:-1:-1;3187:2:1;3172:18;;3159:32;;-1:-1:-1;3242:2:1;3227:18;;3214:32;-1:-1:-1;;;;;3258:30:1;;3255:50;;;3301:1;3298;3291:12;3255:50;3324:22;;3377:4;3369:13;;3365:27;-1:-1:-1;3355:55:1;;3406:1;3403;3396:12;3355:55;3429:73;3494:7;3489:2;3476:16;3471:2;3467;3463:11;3429:73;:::i;:::-;3419:83;;;2714:794;;;;;;;:::o;3513:315::-;3578:6;3586;3639:2;3627:9;3618:7;3614:23;3610:32;3607:52;;;3655:1;3652;3645:12;3607:52;3694:9;3681:23;3713:31;3738:5;3713:31;:::i;:::-;3763:5;-1:-1:-1;3787:35:1;3818:2;3803:18;;3787:35;:::i;:::-;3777:45;;3513:315;;;;;:::o;3833:::-;3901:6;3909;3962:2;3950:9;3941:7;3937:23;3933:32;3930:52;;;3978:1;3975;3968:12;3930:52;4017:9;4004:23;4036:31;4061:5;4036:31;:::i;:::-;4086:5;4138:2;4123:18;;;;4110:32;;-1:-1:-1;;;3833:315:1:o;4153:505::-;4248:6;4256;4264;4317:2;4305:9;4296:7;4292:23;4288:32;4285:52;;;4333:1;4330;4323:12;4285:52;4373:9;4360:23;-1:-1:-1;;;;;4398:6:1;4395:30;4392:50;;;4438:1;4435;4428:12;4392:50;4477:70;4539:7;4530:6;4519:9;4515:22;4477:70;:::i;:::-;4566:8;;4451:96;;-1:-1:-1;4648:2:1;4633:18;;;;4620:32;;4153:505;-1:-1:-1;;;;4153:505:1:o;4663:180::-;4719:6;4772:2;4760:9;4751:7;4747:23;4743:32;4740:52;;;4788:1;4785;4778:12;4740:52;4811:26;4827:9;4811:26;:::i;4848:180::-;4907:6;4960:2;4948:9;4939:7;4935:23;4931:32;4928:52;;;4976:1;4973;4966:12;4928:52;-1:-1:-1;4999:23:1;;4848:180;-1:-1:-1;4848:180:1:o;5033:245::-;5091:6;5144:2;5132:9;5123:7;5119:23;5115:32;5112:52;;;5160:1;5157;5150:12;5112:52;5199:9;5186:23;5218:30;5242:5;5218:30;:::i;5283:249::-;5352:6;5405:2;5393:9;5384:7;5380:23;5376:32;5373:52;;;5421:1;5418;5411:12;5373:52;5453:9;5447:16;5472:30;5496:5;5472:30;:::i;5537:450::-;5606:6;5659:2;5647:9;5638:7;5634:23;5630:32;5627:52;;;5675:1;5672;5665:12;5627:52;5715:9;5702:23;-1:-1:-1;;;;;5740:6:1;5737:30;5734:50;;;5780:1;5777;5770:12;5734:50;5803:22;;5856:4;5848:13;;5844:27;-1:-1:-1;5834:55:1;;5885:1;5882;5875:12;5834:55;5908:73;5973:7;5968:2;5955:16;5950:2;5946;5942:11;5908:73;:::i;6177:182::-;6234:6;6287:2;6275:9;6266:7;6262:23;6258:32;6255:52;;;6303:1;6300;6293:12;6255:52;6326:27;6343:9;6326:27;:::i;6364:507::-;6457:6;6465;6473;6526:2;6514:9;6505:7;6501:23;6497:32;6494:52;;;6542:1;6539;6532:12;6494:52;6565:27;6582:9;6565:27;:::i;:::-;6555:37;;6643:2;6632:9;6628:18;6615:32;-1:-1:-1;;;;;6662:6:1;6659:30;6656:50;;;6702:1;6699;6692:12;6656:50;6741:70;6803:7;6794:6;6783:9;6779:22;6741:70;:::i;:::-;6364:507;;6830:8;;-1:-1:-1;6715:96:1;;-1:-1:-1;;;;6364:507:1:o;6876:577::-;6976:6;6984;6992;7000;7053:2;7041:9;7032:7;7028:23;7024:32;7021:52;;;7069:1;7066;7059:12;7021:52;7092:27;7109:9;7092:27;:::i;:::-;7082:37;;7138:36;7170:2;7159:9;7155:18;7138:36;:::i;:::-;7128:46;;7225:2;7214:9;7210:18;7197:32;-1:-1:-1;;;;;7244:6:1;7241:30;7238:50;;;7284:1;7281;7274:12;7238:50;7323:70;7385:7;7376:6;7365:9;7361:22;7323:70;:::i;:::-;6876:577;;;;-1:-1:-1;7412:8:1;-1:-1:-1;;;;6876:577:1:o;7458:257::-;7499:3;7537:5;7531:12;7564:6;7559:3;7552:19;7580:63;7636:6;7629:4;7624:3;7620:14;7613:4;7606:5;7602:16;7580:63;:::i;:::-;7697:2;7676:15;-1:-1:-1;;7672:29:1;7663:39;;;;7704:4;7659:50;;7458:257;-1:-1:-1;;7458:257:1:o;7720:185::-;7762:3;7800:5;7794:12;7815:52;7860:6;7855:3;7848:4;7841:5;7837:16;7815:52;:::i;:::-;7883:16;;;;;7720:185;-1:-1:-1;;7720:185:1:o;8262:1301::-;8539:3;8568:1;8601:6;8595:13;8631:3;8653:1;8681:9;8677:2;8673:18;8663:28;;8741:2;8730:9;8726:18;8763;8753:61;;8807:4;8799:6;8795:17;8785:27;;8753:61;8833:2;8881;8873:6;8870:14;8850:18;8847:38;8844:165;;;-1:-1:-1;;;8908:33:1;;8964:4;8961:1;8954:15;8994:4;8915:3;8982:17;8844:165;9025:18;9052:104;;;;9170:1;9165:320;;;;9018:467;;9052:104;-1:-1:-1;;9085:24:1;;9073:37;;9130:16;;;;-1:-1:-1;9052:104:1;;9165:320;22962:1;22955:14;;;22999:4;22986:18;;9260:1;9274:165;9288:6;9285:1;9282:13;9274:165;;;9366:14;;9353:11;;;9346:35;9409:16;;;;9303:10;;9274:165;;;9278:3;;9468:6;9463:3;9459:16;9452:23;;9018:467;;;;;;;9501:56;9526:30;9552:3;9544:6;9526:30;:::i;:::-;-1:-1:-1;;;7970:20:1;;8015:1;8006:11;;7910:113;9501:56;9494:63;8262:1301;-1:-1:-1;;;;;8262:1301:1:o;9986:488::-;-1:-1:-1;;;;;10255:15:1;;;10237:34;;10307:15;;10302:2;10287:18;;10280:43;10354:2;10339:18;;10332:34;;;10402:3;10397:2;10382:18;;10375:31;;;10180:4;;10423:45;;10448:19;;10440:6;10423:45;:::i;:::-;10415:53;9986:488;-1:-1:-1;;;;;;9986:488:1:o;10853:219::-;11002:2;10991:9;10984:21;10965:4;11022:44;11062:2;11051:9;11047:18;11039:6;11022:44;:::i;14569:405::-;14771:2;14753:21;;;14810:2;14790:18;;;14783:30;14849:34;14844:2;14829:18;;14822:62;-1:-1:-1;;;14915:2:1;14900:18;;14893:39;14964:3;14949:19;;14569:405::o;15751:399::-;15953:2;15935:21;;;15992:2;15972:18;;;15965:30;16031:34;16026:2;16011:18;;16004:62;-1:-1:-1;;;16097:2:1;16082:18;;16075:33;16140:3;16125:19;;15751:399::o;16974:356::-;17176:2;17158:21;;;17195:18;;;17188:30;17254:34;17249:2;17234:18;;17227:62;17321:2;17306:18;;16974:356::o;19744:415::-;19946:2;19928:21;;;19985:2;19965:18;;;19958:30;20024:34;20019:2;20004:18;;19997:62;-1:-1:-1;;;20090:2:1;20075:18;;20068:49;20149:3;20134:19;;19744:415::o;23015:253::-;23055:3;-1:-1:-1;;;;;23144:2:1;23141:1;23137:10;23174:2;23171:1;23167:10;23205:3;23201:2;23197:12;23192:3;23189:21;23186:47;;;23213:18;;:::i;:::-;23249:13;;23015:253;-1:-1:-1;;;;23015:253:1:o;23273:128::-;23313:3;23344:1;23340:6;23337:1;23334:13;23331:39;;;23350:18;;:::i;:::-;-1:-1:-1;23386:9:1;;23273:128::o;23406:204::-;23444:3;23480:4;23477:1;23473:12;23512:4;23509:1;23505:12;23547:3;23541:4;23537:14;23532:3;23529:23;23526:49;;;23555:18;;:::i;:::-;23591:13;;23406:204;-1:-1:-1;;;23406:204:1:o;23615:120::-;23655:1;23681;23671:35;;23686:18;;:::i;:::-;-1:-1:-1;23720:9:1;;23615:120::o;23740:168::-;23780:7;23846:1;23842;23838:6;23834:14;23831:1;23828:21;23823:1;23816:9;23809:17;23805:45;23802:71;;;23853:18;;:::i;:::-;-1:-1:-1;23893:9:1;;23740:168::o;23913:125::-;23953:4;23981:1;23978;23975:8;23972:34;;;23986:18;;:::i;:::-;-1:-1:-1;24023:9:1;;23913:125::o;24043:258::-;24115:1;24125:113;24139:6;24136:1;24133:13;24125:113;;;24215:11;;;24209:18;24196:11;;;24189:39;24161:2;24154:10;24125:113;;;24256:6;24253:1;24250:13;24247:48;;;-1:-1:-1;;24291:1:1;24273:16;;24266:27;24043:258::o;24306:136::-;24345:3;24373:5;24363:39;;24382:18;;:::i;:::-;-1:-1:-1;;;24418:18:1;;24306:136::o;24447:380::-;24526:1;24522:12;;;;24569;;;24590:61;;24644:4;24636:6;24632:17;24622:27;;24590:61;24697:2;24689:6;24686:14;24666:18;24663:38;24660:161;;;24743:10;24738:3;24734:20;24731:1;24724:31;24778:4;24775:1;24768:15;24806:4;24803:1;24796:15;24660:161;;24447:380;;;:::o;24832:135::-;24871:3;-1:-1:-1;;24892:17:1;;24889:43;;;24912:18;;:::i;:::-;-1:-1:-1;24959:1:1;24948:13;;24832:135::o;24972:112::-;25004:1;25030;25020:35;;25035:18;;:::i;:::-;-1:-1:-1;25069:9:1;;24972:112::o;25089:127::-;25150:10;25145:3;25141:20;25138:1;25131:31;25181:4;25178:1;25171:15;25205:4;25202:1;25195:15;25221:127;25282:10;25277:3;25273:20;25270:1;25263:31;25313:4;25310:1;25303:15;25337:4;25334:1;25327:15;25353:127;25414:10;25409:3;25405:20;25402:1;25395:31;25445:4;25442:1;25435:15;25469:4;25466:1;25459:15;25485:127;25546:10;25541:3;25537:20;25534:1;25527:31;25577:4;25574:1;25567:15;25601:4;25598:1;25591:15;25617:131;-1:-1:-1;;;;;25692:31:1;;25682:42;;25672:70;;25738:1;25735;25728:12;25753:131;-1:-1:-1;;;;;;25827:32:1;;25817:43;;25807:71;;25874:1;25871;25864:12
Swarm Source
ipfs://a1608851b2481413a5378e2107a80210c0dee9b4db8d379603b89d47f7e4e9be
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.