Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
340 MFC
Holders
109
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 MFCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MetaF1Club
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-19 */ // SPDX-License-Identifier: MIT 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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * Available since v3.1. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * Available since v3.1. */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * Available since v3.1. */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * Available since v3.1. */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * Available since v3.3. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * Available since v3.3. */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * Available since v3.4. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * Available since v3.4. */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * Available since v4.3. */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * Available since v3.4. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * Available since v3.4. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * Available since v3.4. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * Available since v3.4. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * Available since v3.4. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /** * @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); } } /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @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); } /** * @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; } /** * @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); /** * @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); } /** * @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); } /** * @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; } } /** * @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); } } /** * @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; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { 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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `ownedTokensIndex` mapping is _not updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } contract MetaF1Club is ERC721Enumerable, Ownable, ReentrancyGuard { // Update Name Before Deployment using SafeMath for uint256; using Counters for Counters.Counter; using Strings for uint256; uint256 public constant MAX_FORMULA = 10250; address public constant CREATOR_ONE = 0x7542e65a7D0ed3aa8A65A4bCb1a208385c743137; // Update Before Deployment address public constant CREATOR_TWO = 0x1dd217599B20b2812a653a5E7401d57FC515Df12; // Update Before Deployment uint256 public preSalePrice = 0.35 ether; // Update Before Deployment uint256 public publicSalePrice = 0.40 ether; // Update Before Deployment uint256 public startingIndex = 1; bool public saleActive = true; // Update Before Deployment bool public preSaleActive = true; // Update Before Deployment bool public publicSaleActive = false; // Update Before Deployment uint256 private totalMinted; uint256 public maxMint = 4; string private baseURI; string public notRevealedURI; bool public tokensRevealed = false; mapping (address => uint256) public preSaleMinted; mapping (address => bool) public theWhiteList; Counters.Counter private _tokenIdTracker; modifier saleIsOpen { require (totalMinted < MAX_FORMULA, "All tokens soldout!"); require (saleActive, "Sale is not active!"); _; } event PreSaleStart(uint256 indexed _time); event PublicSaleStart(uint256 indexed _time); constructor (string memory _name, string memory _symbol, string memory _uri) ERC721(_name, _symbol) { notRevealedURI = _uri; } function preSaleMint (uint256 _amountFormula) external payable saleIsOpen { require (preSaleActive, "Pre Sale Not Active"); require (verifyWhiteList(msg.sender), "Invalid Request!"); require (_amountFormula > 0, "Invalid Mint Amount!"); require ((_amountFormula <= maxMint) && (preSaleMinted[msg.sender] + _amountFormula <= maxMint), "Mint Limit Exceeded!"); require (preSalePrice * _amountFormula == msg.value, "Invalid Amount Sent!"); uint256 _newTokenId; uint256 _totalPrice = preSalePrice * _amountFormula; for (uint256 i = 0; i < _amountFormula; i++) { _tokenIdTracker.increment(); _newTokenId = _tokenIdTracker.current(); _safeMint(msg.sender, _newTokenId); preSaleMinted[msg.sender] = preSaleMinted[msg.sender] + 1; totalMinted += 1; } if (msg.value > _totalPrice) { Address.sendValue(payable(msg.sender), msg.value - _totalPrice); } } function publicMint (uint256 _amountFormula) external payable saleIsOpen { require (publicSaleActive, "Public Sale Not Active"); require (_amountFormula > 0, "Invalid Mint Amount!"); require (publicSalePrice * _amountFormula == msg.value, "Invalid Amount Sent!"); uint256 _newTokenId; uint256 _totalPrice = preSalePrice * _amountFormula; for (uint256 i = 0; i < _amountFormula; i++) { _tokenIdTracker.increment(); _newTokenId = _tokenIdTracker.current(); _safeMint(msg.sender, _newTokenId); totalMinted = totalMinted + 1; } if (msg.value > _totalPrice) { Address.sendValue(payable(msg.sender), msg.value - _totalPrice); } } function addToWhiteList (address[] memory list) external onlyOwner { for (uint256 i = 0; i < list.length; i++) { theWhiteList[list[i]] = true; } } function removeFromWhiteList (address[] memory list) external onlyOwner { for (uint256 i = 0; i < list.length; i++) { theWhiteList[list[i]] = false; } } function withdraw () external { uint256 balance = address(this).balance; uint256 balanceHalf = balance.div(2); uint256 remainingBalance = balance.sub(balanceHalf); Address.sendValue(payable(CREATOR_ONE), balanceHalf); Address.sendValue(payable(CREATOR_TWO), remainingBalance); } function verifyWhiteList (address _sender) private view returns (bool) { return theWhiteList[_sender]; } function activeSale () external onlyOwner { saleActive = !saleActive; } function activePreSale () external onlyOwner { preSaleActive = !preSaleActive; emit PreSaleStart (block.timestamp); } function activePublicSale () external onlyOwner { publicSaleActive = !publicSaleActive; emit PublicSaleStart (block.timestamp); } function setPreSalePrice (uint256 _price) external onlyOwner { preSalePrice = _price; } function setPublicSalePrice (uint256 _price) external onlyOwner { publicSalePrice = _price; } // function setMaxMint (uint256 _maxMint) public onlyOwner { // maxMint = _maxMint; // } function setBaseURI (string memory _uri) external onlyOwner { baseURI = _uri; } function changeNotRevealedURI (string memory _notRevealedURI) public onlyOwner { notRevealedURI = _notRevealedURI; } function revealTokens () external onlyOwner { tokensRevealed = !tokensRevealed; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if (!tokensRevealed) { return notRevealedURI; } return bytes(_baseURI()).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"}],"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":"uint256","name":"_time","type":"uint256"}],"name":"PreSaleStart","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_time","type":"uint256"}],"name":"PublicSaleStart","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CREATOR_ONE","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CREATOR_TWO","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FORMULA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activeSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"list","type":"address[]"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"changeNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxMint","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":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountFormula","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountFormula","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"list","type":"address[]"}],"name":"removeFromWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealTokens","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","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":"address","name":"","type":"address"}],"name":"theWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokensRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526704db732547630000600c5567058d15e176280000600d556001600e55600f805462ffffff191661010117905560046011556014805460ff191690553480156200004d57600080fd5b5060405162002fb138038062002fb18339810160408190526200007091620002a9565b8251839083906200008990600090602085019062000136565b5080516200009f90600190602084019062000136565b505050620000bc620000b6620000e060201b60201c565b620000e4565b6001600b558051620000d690601390602084019062000136565b5050505062000377565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000144906200033a565b90600052602060002090601f016020900481019282620001685760008555620001b3565b82601f106200018357805160ff1916838001178555620001b3565b82800160010185558215620001b3579182015b82811115620001b357825182559160200191906001019062000196565b50620001c1929150620001c5565b5090565b5b80821115620001c15760008155600101620001c6565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200020457600080fd5b81516001600160401b0380821115620002215762000221620001dc565b604051601f8301601f19908116603f011681019082821181831017156200024c576200024c620001dc565b816040528381526020925086838588010111156200026957600080fd5b600091505b838210156200028d57858201830151818301840152908201906200026e565b838211156200029f5760008385830101525b9695505050505050565b600080600060608486031215620002bf57600080fd5b83516001600160401b0380821115620002d757600080fd5b620002e587838801620001f2565b94506020860151915080821115620002fc57600080fd5b6200030a87838801620001f2565b935060408601519150808211156200032157600080fd5b506200033086828701620001f2565b9150509250925092565b600181811c908216806200034f57607f821691505b602082108114156200037157634e487b7160e01b600052602260045260246000fd5b50919050565b612c2a80620003876000396000f3fe60806040526004361061027d5760003560e01c8063740d73f31161014f578063b11560c5116100c1578063cb774d471161007a578063cb774d4714610755578063cf9417b61461076b578063e757c17d14610781578063e985e9c514610797578063f2fde38b146107e0578063f31d85051461080057600080fd5b8063b11560c514610698578063b7c66a54146106b8578063b88d4fde146106cd578063b9625379146106ed578063bc8893b414610715578063c87b56dd1461073557600080fd5b80637ee263bd116101135780637ee263bd146105e057806384494708146106105780638da5cb5b1461062f57806395d89b411461064d5780639b6860c814610662578063a22cb4651461067857600080fd5b8063740d73f3146105575780637501f741146105775780637835c6351461058d578063791a2519146105a05780637d7eee42146105c057600080fd5b80633ba5939d116101f357806355f804b3116101ac57806355f804b3146104b35780636352211e146104d357806368428a1b146104f357806370a082311461050d578063715018a61461052d578063722503801461054257600080fd5b80633ba5939d146104075780633ccfd60b1461041c57806342842e0e146104315780634e17700a146104515780634f6ccce714610466578063529be43b1461048657600080fd5b806312d0f1a01161024557806312d0f1a014610353578063136b5be51461037b57806318160ddd1461039557806323b872dd146103b45780632db11544146103d45780632f745c59146103e757600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b3146103115780630fa4d87814610333575b600080fd5b34801561028e57600080fd5b506102a261029d36600461251d565b610815565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610840565b6040516102ae9190612592565b3480156102e557600080fd5b506102f96102f43660046125a5565b6108d2565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c3660046125da565b61096c565b005b34801561033f57600080fd5b5061033161034e3660046126a3565b610a82565b34801561035f57600080fd5b506102f9731dd217599b20b2812a653a5e7401d57fc515df1281565b34801561038757600080fd5b506014546102a29060ff1681565b3480156103a157600080fd5b506008545b6040519081526020016102ae565b3480156103c057600080fd5b506103316103cf3660046126ec565b610ac3565b6103316103e23660046125a5565b610af4565b3480156103f357600080fd5b506103a66104023660046125da565b610cea565b34801561041357600080fd5b50610331610d80565b34801561042857600080fd5b50610331610dbe565b34801561043d57600080fd5b5061033161044c3660046126ec565b610e18565b34801561045d57600080fd5b50610331610e33565b34801561047257600080fd5b506103a66104813660046125a5565b610e71565b34801561049257600080fd5b506103a66104a1366004612728565b60156020526000908152604090205481565b3480156104bf57600080fd5b506103316104ce3660046126a3565b610f04565b3480156104df57600080fd5b506102f96104ee3660046125a5565b610f41565b3480156104ff57600080fd5b50600f546102a29060ff1681565b34801561051957600080fd5b506103a6610528366004612728565b610fb8565b34801561053957600080fd5b5061033161103f565b34801561054e57600080fd5b506102cc611075565b34801561056357600080fd5b50610331610572366004612743565b611103565b34801561058357600080fd5b506103a660115481565b61033161059b3660046125a5565b611195565b3480156105ac57600080fd5b506103316105bb3660046125a5565b611464565b3480156105cc57600080fd5b506103316105db3660046125a5565b611493565b3480156105ec57600080fd5b506102a26105fb366004612728565b60166020526000908152604090205460ff1681565b34801561061c57600080fd5b50600f546102a290610100900460ff1681565b34801561063b57600080fd5b50600a546001600160a01b03166102f9565b34801561065957600080fd5b506102cc6114c2565b34801561066e57600080fd5b506103a6600d5481565b34801561068457600080fd5b506103316106933660046127f0565b6114d1565b3480156106a457600080fd5b506103316106b3366004612743565b6114dc565b3480156106c457600080fd5b5061033161156e565b3480156106d957600080fd5b506103316106e836600461282c565b6115e2565b3480156106f957600080fd5b506102f9737542e65a7d0ed3aa8a65a4bcb1a208385c74313781565b34801561072157600080fd5b50600f546102a29062010000900460ff1681565b34801561074157600080fd5b506102cc6107503660046125a5565b61161a565b34801561076157600080fd5b506103a6600e5481565b34801561077757600080fd5b506103a661280a81565b34801561078d57600080fd5b506103a6600c5481565b3480156107a357600080fd5b506102a26107b23660046128a8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107ec57600080fd5b506103316107fb366004612728565b61178b565b34801561080c57600080fd5b50610331611826565b60006001600160e01b0319821663780e9d6360e01b148061083a575061083a82611898565b92915050565b60606000805461084f906128db565b80601f016020809104026020016040519081016040528092919081815260200182805461087b906128db565b80156108c85780601f1061089d576101008083540402835291602001916108c8565b820191906000526020600020905b8154815290600101906020018083116108ab57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109505760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061097782610f41565b9050806001600160a01b0316836001600160a01b031614156109e55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610947565b336001600160a01b0382161480610a015750610a0181336107b2565b610a735760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610947565b610a7d83836118e8565b505050565b600a546001600160a01b03163314610aac5760405162461bcd60e51b815260040161094790612916565b8051610abf90601390602084019061246e565b5050565b610acd3382611956565b610ae95760405162461bcd60e51b81526004016109479061294b565b610a7d838383611a4d565b61280a60105410610b3d5760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e7320736f6c646f75742160681b6044820152606401610947565b600f5460ff16610b855760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610947565b600f5462010000900460ff16610bd65760405162461bcd60e51b81526020600482015260166024820152755075626c69632053616c65204e6f742041637469766560501b6044820152606401610947565b60008111610c1d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964204d696e7420416d6f756e742160601b6044820152606401610947565b3481600d54610c2c91906129b2565b14610c705760405162461bcd60e51b8152602060048201526014602482015273496e76616c696420416d6f756e742053656e742160601b6044820152606401610947565b60008082600c54610c8191906129b2565b905060005b83811015610cce57610c9c601780546001019055565b6017549250610cab3384611bf4565b601054610cb99060016129d1565b60105580610cc6816129e9565b915050610c86565b5080341115610a7d57610a7d33610ce58334612a04565b611c0e565b6000610cf583610fb8565b8210610d575760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610947565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610daa5760405162461bcd60e51b815260040161094790612916565b6014805460ff19811660ff90911615179055565b476000610dcc826002611d27565b90506000610dda8383611d3a565b9050610dfa737542e65a7d0ed3aa8a65a4bcb1a208385c74313783611c0e565b610a7d731dd217599b20b2812a653a5e7401d57fc515df1282611c0e565b610a7d838383604051806020016040528060008152506115e2565b600a546001600160a01b03163314610e5d5760405162461bcd60e51b815260040161094790612916565b600f805460ff19811660ff90911615179055565b6000610e7c60085490565b8210610edf5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610947565b60088281548110610ef257610ef2612a1b565b90600052602060002001549050919050565b600a546001600160a01b03163314610f2e5760405162461bcd60e51b815260040161094790612916565b8051610abf90601290602084019061246e565b6000818152600260205260408120546001600160a01b03168061083a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610947565b60006001600160a01b0382166110235760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610947565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110695760405162461bcd60e51b815260040161094790612916565b6110736000611d46565b565b60138054611082906128db565b80601f01602080910402602001604051908101604052809291908181526020018280546110ae906128db565b80156110fb5780601f106110d0576101008083540402835291602001916110fb565b820191906000526020600020905b8154815290600101906020018083116110de57829003601f168201915b505050505081565b600a546001600160a01b0316331461112d5760405162461bcd60e51b815260040161094790612916565b60005b8151811015610abf5760016016600084848151811061115157611151612a1b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061118d816129e9565b915050611130565b61280a601054106111de5760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e7320736f6c646f75742160681b6044820152606401610947565b600f5460ff166112265760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610947565b600f54610100900460ff166112735760405162461bcd60e51b81526020600482015260136024820152725072652053616c65204e6f742041637469766560681b6044820152606401610947565b3360009081526016602052604090205460ff166112c55760405162461bcd60e51b815260206004820152601060248201526f496e76616c696420526571756573742160801b6044820152606401610947565b6000811161130c5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964204d696e7420416d6f756e742160601b6044820152606401610947565b601154811115801561133a5750601154336000908152601560205260409020546113379083906129d1565b11155b61137d5760405162461bcd60e51b81526020600482015260146024820152734d696e74204c696d69742045786365656465642160601b6044820152606401610947565b3481600c5461138c91906129b2565b146113d05760405162461bcd60e51b8152602060048201526014602482015273496e76616c696420416d6f756e742053656e742160601b6044820152606401610947565b60008082600c546113e191906129b2565b905060005b83811015610cce576113fc601780546001019055565b601754925061140b3384611bf4565b336000908152601560205260409020546114269060016129d1565b33600090815260156020526040812091909155601080546001929061144c9084906129d1565b9091555081905061145c816129e9565b9150506113e6565b600a546001600160a01b0316331461148e5760405162461bcd60e51b815260040161094790612916565b600d55565b600a546001600160a01b031633146114bd5760405162461bcd60e51b815260040161094790612916565b600c55565b60606001805461084f906128db565b610abf338383611d98565b600a546001600160a01b031633146115065760405162461bcd60e51b815260040161094790612916565b60005b8151811015610abf5760006016600084848151811061152a5761152a612a1b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611566816129e9565b915050611509565b600a546001600160a01b031633146115985760405162461bcd60e51b815260040161094790612916565b600f805462ff0000198116620100009182900460ff161590910217905560405142907fb14aa2dad53a0090fda3c97971fdc6c84331eff6fc43a584628e5d83e131a30990600090a2565b6115ec3383611956565b6116085760405162461bcd60e51b81526004016109479061294b565b61161484848484611e67565b50505050565b6000818152600260205260409020546060906001600160a01b03166116995760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610947565b60145460ff1661173557601380546116b0906128db565b80601f01602080910402602001604051908101604052809291908181526020018280546116dc906128db565b80156117295780601f106116fe57610100808354040283529160200191611729565b820191906000526020600020905b81548152906001019060200180831161170c57829003601f168201915b50505050509050919050565b600061173f611e9a565b511161175a576040518060200160405280600081525061083a565b601261176583611ea9565b604051602001611776929190612a4d565b60405160208183030381529060405292915050565b600a546001600160a01b031633146117b55760405162461bcd60e51b815260040161094790612916565b6001600160a01b03811661181a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610947565b61182381611d46565b50565b600a546001600160a01b031633146118505760405162461bcd60e51b815260040161094790612916565b600f805461ff001981166101009182900460ff161590910217905560405142907f5d3bf0f433ee1255b1fcd10ecb8173da8d4350bcf6e38228f6b6234e841afd4590600090a2565b60006001600160e01b031982166380ac58cd60e01b14806118c957506001600160e01b03198216635b5e139f60e01b145b8061083a57506301ffc9a760e01b6001600160e01b031983161461083a565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061191d82610f41565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119cf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610947565b60006119da83610f41565b9050806001600160a01b0316846001600160a01b03161480611a2157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611a455750836001600160a01b0316611a3a846108d2565b6001600160a01b0316145b949350505050565b826001600160a01b0316611a6082610f41565b6001600160a01b031614611ac45760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610947565b6001600160a01b038216611b265760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610947565b611b31838383611fa7565b611b3c6000826118e8565b6001600160a01b0383166000908152600360205260408120805460019290611b65908490612a04565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b939084906129d1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610abf82826040518060200160405280600081525061205f565b80471015611c5e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610947565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611cab576040519150601f19603f3d011682016040523d82523d6000602084013e611cb0565b606091505b5050905080610a7d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610947565b6000611d338284612b0a565b9392505050565b6000611d338284612a04565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611dfa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610947565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e72848484611a4d565b611e7e84848484612092565b6116145760405162461bcd60e51b815260040161094790612b1e565b60606012805461084f906128db565b606081611ecd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ef75780611ee1816129e9565b9150611ef09050600a83612b0a565b9150611ed1565b60008167ffffffffffffffff811115611f1257611f12612604565b6040519080825280601f01601f191660200182016040528015611f3c576020820181803683370190505b5090505b8415611a4557611f51600183612a04565b9150611f5e600a86612b70565b611f699060306129d1565b60f81b818381518110611f7e57611f7e612a1b565b60200101906001600160f81b031916908160001a905350611fa0600a86612b0a565b9450611f40565b6001600160a01b03831661200257611ffd81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612025565b816001600160a01b0316836001600160a01b031614612025576120258382612190565b6001600160a01b03821661203c57610a7d8161222d565b826001600160a01b0316826001600160a01b031614610a7d57610a7d82826122dc565b6120698383612320565b6120766000848484612092565b610a7d5760405162461bcd60e51b815260040161094790612b1e565b60006001600160a01b0384163b1561218557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120d6903390899088908890600401612b84565b6020604051808303816000875af1925050508015612111575060408051601f3d908101601f1916820190925261210e91810190612bc1565b60015b61216b573d80801561213f576040519150601f19603f3d011682016040523d82523d6000602084013e612144565b606091505b5080516121635760405162461bcd60e51b815260040161094790612b1e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a45565b506001949350505050565b6000600161219d84610fb8565b6121a79190612a04565b6000838152600760205260409020549091508082146121fa576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061223f90600190612a04565b6000838152600960205260408120546008805493945090928490811061226757612267612a1b565b90600052602060002001549050806008838154811061228857612288612a1b565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122c0576122c0612bde565b6001900381819060005260206000200160009055905550505050565b60006122e783610fb8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123765760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610947565b6000818152600260205260409020546001600160a01b0316156123db5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610947565b6123e760008383611fa7565b6001600160a01b03821660009081526003602052604081208054600192906124109084906129d1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461247a906128db565b90600052602060002090601f01602090048101928261249c57600085556124e2565b82601f106124b557805160ff19168380011785556124e2565b828001600101855582156124e2579182015b828111156124e25782518255916020019190600101906124c7565b506124ee9291506124f2565b5090565b5b808211156124ee57600081556001016124f3565b6001600160e01b03198116811461182357600080fd5b60006020828403121561252f57600080fd5b8135611d3381612507565b60005b8381101561255557818101518382015260200161253d565b838111156116145750506000910152565b6000815180845261257e81602086016020860161253a565b601f01601f19169290920160200192915050565b602081526000611d336020830184612566565b6000602082840312156125b757600080fd5b5035919050565b80356001600160a01b03811681146125d557600080fd5b919050565b600080604083850312156125ed57600080fd5b6125f6836125be565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561264357612643612604565b604052919050565b600067ffffffffffffffff83111561266557612665612604565b612678601f8401601f191660200161261a565b905082815283838301111561268c57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156126b557600080fd5b813567ffffffffffffffff8111156126cc57600080fd5b8201601f810184136126dd57600080fd5b611a458482356020840161264b565b60008060006060848603121561270157600080fd5b61270a846125be565b9250612718602085016125be565b9150604084013590509250925092565b60006020828403121561273a57600080fd5b611d33826125be565b6000602080838503121561275657600080fd5b823567ffffffffffffffff8082111561276e57600080fd5b818501915085601f83011261278257600080fd5b81358181111561279457612794612604565b8060051b91506127a584830161261a565b81815291830184019184810190888411156127bf57600080fd5b938501935b838510156127e4576127d5856125be565b825293850193908501906127c4565b98975050505050505050565b6000806040838503121561280357600080fd5b61280c836125be565b91506020830135801515811461282157600080fd5b809150509250929050565b6000806000806080858703121561284257600080fd5b61284b856125be565b9350612859602086016125be565b925060408501359150606085013567ffffffffffffffff81111561287c57600080fd5b8501601f8101871361288d57600080fd5b61289c8782356020840161264b565b91505092959194509250565b600080604083850312156128bb57600080fd5b6128c4836125be565b91506128d2602084016125be565b90509250929050565b600181811c908216806128ef57607f821691505b6020821081141561291057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156129cc576129cc61299c565b500290565b600082198211156129e4576129e461299c565b500190565b60006000198214156129fd576129fd61299c565b5060010190565b600082821015612a1657612a1661299c565b500390565b634e487b7160e01b600052603260045260246000fd5b60008151612a4381856020860161253a565b9290920192915050565b600080845481600182811c915080831680612a6957607f831692505b6020808410821415612a8957634e487b7160e01b86526022600452602486fd5b818015612a9d5760018114612aae57612adb565b60ff19861689528489019650612adb565b60008b81526020902060005b86811015612ad35781548b820152908501908301612aba565b505084890196505b505050505050612aeb8185612a31565b95945050505050565b634e487b7160e01b600052601260045260246000fd5b600082612b1957612b19612af4565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612b7f57612b7f612af4565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bb790830184612566565b9695505050505050565b600060208284031215612bd357600080fd5b8151611d3381612507565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220538f8440884ea42b39869bd3228bd4116fb19a2c7b2c668ab8995b26ad783d3b64736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c4d65746120463120436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d464300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061027d5760003560e01c8063740d73f31161014f578063b11560c5116100c1578063cb774d471161007a578063cb774d4714610755578063cf9417b61461076b578063e757c17d14610781578063e985e9c514610797578063f2fde38b146107e0578063f31d85051461080057600080fd5b8063b11560c514610698578063b7c66a54146106b8578063b88d4fde146106cd578063b9625379146106ed578063bc8893b414610715578063c87b56dd1461073557600080fd5b80637ee263bd116101135780637ee263bd146105e057806384494708146106105780638da5cb5b1461062f57806395d89b411461064d5780639b6860c814610662578063a22cb4651461067857600080fd5b8063740d73f3146105575780637501f741146105775780637835c6351461058d578063791a2519146105a05780637d7eee42146105c057600080fd5b80633ba5939d116101f357806355f804b3116101ac57806355f804b3146104b35780636352211e146104d357806368428a1b146104f357806370a082311461050d578063715018a61461052d578063722503801461054257600080fd5b80633ba5939d146104075780633ccfd60b1461041c57806342842e0e146104315780634e17700a146104515780634f6ccce714610466578063529be43b1461048657600080fd5b806312d0f1a01161024557806312d0f1a014610353578063136b5be51461037b57806318160ddd1461039557806323b872dd146103b45780632db11544146103d45780632f745c59146103e757600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b3146103115780630fa4d87814610333575b600080fd5b34801561028e57600080fd5b506102a261029d36600461251d565b610815565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610840565b6040516102ae9190612592565b3480156102e557600080fd5b506102f96102f43660046125a5565b6108d2565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c3660046125da565b61096c565b005b34801561033f57600080fd5b5061033161034e3660046126a3565b610a82565b34801561035f57600080fd5b506102f9731dd217599b20b2812a653a5e7401d57fc515df1281565b34801561038757600080fd5b506014546102a29060ff1681565b3480156103a157600080fd5b506008545b6040519081526020016102ae565b3480156103c057600080fd5b506103316103cf3660046126ec565b610ac3565b6103316103e23660046125a5565b610af4565b3480156103f357600080fd5b506103a66104023660046125da565b610cea565b34801561041357600080fd5b50610331610d80565b34801561042857600080fd5b50610331610dbe565b34801561043d57600080fd5b5061033161044c3660046126ec565b610e18565b34801561045d57600080fd5b50610331610e33565b34801561047257600080fd5b506103a66104813660046125a5565b610e71565b34801561049257600080fd5b506103a66104a1366004612728565b60156020526000908152604090205481565b3480156104bf57600080fd5b506103316104ce3660046126a3565b610f04565b3480156104df57600080fd5b506102f96104ee3660046125a5565b610f41565b3480156104ff57600080fd5b50600f546102a29060ff1681565b34801561051957600080fd5b506103a6610528366004612728565b610fb8565b34801561053957600080fd5b5061033161103f565b34801561054e57600080fd5b506102cc611075565b34801561056357600080fd5b50610331610572366004612743565b611103565b34801561058357600080fd5b506103a660115481565b61033161059b3660046125a5565b611195565b3480156105ac57600080fd5b506103316105bb3660046125a5565b611464565b3480156105cc57600080fd5b506103316105db3660046125a5565b611493565b3480156105ec57600080fd5b506102a26105fb366004612728565b60166020526000908152604090205460ff1681565b34801561061c57600080fd5b50600f546102a290610100900460ff1681565b34801561063b57600080fd5b50600a546001600160a01b03166102f9565b34801561065957600080fd5b506102cc6114c2565b34801561066e57600080fd5b506103a6600d5481565b34801561068457600080fd5b506103316106933660046127f0565b6114d1565b3480156106a457600080fd5b506103316106b3366004612743565b6114dc565b3480156106c457600080fd5b5061033161156e565b3480156106d957600080fd5b506103316106e836600461282c565b6115e2565b3480156106f957600080fd5b506102f9737542e65a7d0ed3aa8a65a4bcb1a208385c74313781565b34801561072157600080fd5b50600f546102a29062010000900460ff1681565b34801561074157600080fd5b506102cc6107503660046125a5565b61161a565b34801561076157600080fd5b506103a6600e5481565b34801561077757600080fd5b506103a661280a81565b34801561078d57600080fd5b506103a6600c5481565b3480156107a357600080fd5b506102a26107b23660046128a8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107ec57600080fd5b506103316107fb366004612728565b61178b565b34801561080c57600080fd5b50610331611826565b60006001600160e01b0319821663780e9d6360e01b148061083a575061083a82611898565b92915050565b60606000805461084f906128db565b80601f016020809104026020016040519081016040528092919081815260200182805461087b906128db565b80156108c85780601f1061089d576101008083540402835291602001916108c8565b820191906000526020600020905b8154815290600101906020018083116108ab57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109505760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061097782610f41565b9050806001600160a01b0316836001600160a01b031614156109e55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610947565b336001600160a01b0382161480610a015750610a0181336107b2565b610a735760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610947565b610a7d83836118e8565b505050565b600a546001600160a01b03163314610aac5760405162461bcd60e51b815260040161094790612916565b8051610abf90601390602084019061246e565b5050565b610acd3382611956565b610ae95760405162461bcd60e51b81526004016109479061294b565b610a7d838383611a4d565b61280a60105410610b3d5760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e7320736f6c646f75742160681b6044820152606401610947565b600f5460ff16610b855760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610947565b600f5462010000900460ff16610bd65760405162461bcd60e51b81526020600482015260166024820152755075626c69632053616c65204e6f742041637469766560501b6044820152606401610947565b60008111610c1d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964204d696e7420416d6f756e742160601b6044820152606401610947565b3481600d54610c2c91906129b2565b14610c705760405162461bcd60e51b8152602060048201526014602482015273496e76616c696420416d6f756e742053656e742160601b6044820152606401610947565b60008082600c54610c8191906129b2565b905060005b83811015610cce57610c9c601780546001019055565b6017549250610cab3384611bf4565b601054610cb99060016129d1565b60105580610cc6816129e9565b915050610c86565b5080341115610a7d57610a7d33610ce58334612a04565b611c0e565b6000610cf583610fb8565b8210610d575760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610947565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610daa5760405162461bcd60e51b815260040161094790612916565b6014805460ff19811660ff90911615179055565b476000610dcc826002611d27565b90506000610dda8383611d3a565b9050610dfa737542e65a7d0ed3aa8a65a4bcb1a208385c74313783611c0e565b610a7d731dd217599b20b2812a653a5e7401d57fc515df1282611c0e565b610a7d838383604051806020016040528060008152506115e2565b600a546001600160a01b03163314610e5d5760405162461bcd60e51b815260040161094790612916565b600f805460ff19811660ff90911615179055565b6000610e7c60085490565b8210610edf5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610947565b60088281548110610ef257610ef2612a1b565b90600052602060002001549050919050565b600a546001600160a01b03163314610f2e5760405162461bcd60e51b815260040161094790612916565b8051610abf90601290602084019061246e565b6000818152600260205260408120546001600160a01b03168061083a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610947565b60006001600160a01b0382166110235760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610947565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110695760405162461bcd60e51b815260040161094790612916565b6110736000611d46565b565b60138054611082906128db565b80601f01602080910402602001604051908101604052809291908181526020018280546110ae906128db565b80156110fb5780601f106110d0576101008083540402835291602001916110fb565b820191906000526020600020905b8154815290600101906020018083116110de57829003601f168201915b505050505081565b600a546001600160a01b0316331461112d5760405162461bcd60e51b815260040161094790612916565b60005b8151811015610abf5760016016600084848151811061115157611151612a1b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061118d816129e9565b915050611130565b61280a601054106111de5760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e7320736f6c646f75742160681b6044820152606401610947565b600f5460ff166112265760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610947565b600f54610100900460ff166112735760405162461bcd60e51b81526020600482015260136024820152725072652053616c65204e6f742041637469766560681b6044820152606401610947565b3360009081526016602052604090205460ff166112c55760405162461bcd60e51b815260206004820152601060248201526f496e76616c696420526571756573742160801b6044820152606401610947565b6000811161130c5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964204d696e7420416d6f756e742160601b6044820152606401610947565b601154811115801561133a5750601154336000908152601560205260409020546113379083906129d1565b11155b61137d5760405162461bcd60e51b81526020600482015260146024820152734d696e74204c696d69742045786365656465642160601b6044820152606401610947565b3481600c5461138c91906129b2565b146113d05760405162461bcd60e51b8152602060048201526014602482015273496e76616c696420416d6f756e742053656e742160601b6044820152606401610947565b60008082600c546113e191906129b2565b905060005b83811015610cce576113fc601780546001019055565b601754925061140b3384611bf4565b336000908152601560205260409020546114269060016129d1565b33600090815260156020526040812091909155601080546001929061144c9084906129d1565b9091555081905061145c816129e9565b9150506113e6565b600a546001600160a01b0316331461148e5760405162461bcd60e51b815260040161094790612916565b600d55565b600a546001600160a01b031633146114bd5760405162461bcd60e51b815260040161094790612916565b600c55565b60606001805461084f906128db565b610abf338383611d98565b600a546001600160a01b031633146115065760405162461bcd60e51b815260040161094790612916565b60005b8151811015610abf5760006016600084848151811061152a5761152a612a1b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611566816129e9565b915050611509565b600a546001600160a01b031633146115985760405162461bcd60e51b815260040161094790612916565b600f805462ff0000198116620100009182900460ff161590910217905560405142907fb14aa2dad53a0090fda3c97971fdc6c84331eff6fc43a584628e5d83e131a30990600090a2565b6115ec3383611956565b6116085760405162461bcd60e51b81526004016109479061294b565b61161484848484611e67565b50505050565b6000818152600260205260409020546060906001600160a01b03166116995760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610947565b60145460ff1661173557601380546116b0906128db565b80601f01602080910402602001604051908101604052809291908181526020018280546116dc906128db565b80156117295780601f106116fe57610100808354040283529160200191611729565b820191906000526020600020905b81548152906001019060200180831161170c57829003601f168201915b50505050509050919050565b600061173f611e9a565b511161175a576040518060200160405280600081525061083a565b601261176583611ea9565b604051602001611776929190612a4d565b60405160208183030381529060405292915050565b600a546001600160a01b031633146117b55760405162461bcd60e51b815260040161094790612916565b6001600160a01b03811661181a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610947565b61182381611d46565b50565b600a546001600160a01b031633146118505760405162461bcd60e51b815260040161094790612916565b600f805461ff001981166101009182900460ff161590910217905560405142907f5d3bf0f433ee1255b1fcd10ecb8173da8d4350bcf6e38228f6b6234e841afd4590600090a2565b60006001600160e01b031982166380ac58cd60e01b14806118c957506001600160e01b03198216635b5e139f60e01b145b8061083a57506301ffc9a760e01b6001600160e01b031983161461083a565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061191d82610f41565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119cf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610947565b60006119da83610f41565b9050806001600160a01b0316846001600160a01b03161480611a2157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611a455750836001600160a01b0316611a3a846108d2565b6001600160a01b0316145b949350505050565b826001600160a01b0316611a6082610f41565b6001600160a01b031614611ac45760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610947565b6001600160a01b038216611b265760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610947565b611b31838383611fa7565b611b3c6000826118e8565b6001600160a01b0383166000908152600360205260408120805460019290611b65908490612a04565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b939084906129d1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610abf82826040518060200160405280600081525061205f565b80471015611c5e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610947565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611cab576040519150601f19603f3d011682016040523d82523d6000602084013e611cb0565b606091505b5050905080610a7d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610947565b6000611d338284612b0a565b9392505050565b6000611d338284612a04565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611dfa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610947565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e72848484611a4d565b611e7e84848484612092565b6116145760405162461bcd60e51b815260040161094790612b1e565b60606012805461084f906128db565b606081611ecd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ef75780611ee1816129e9565b9150611ef09050600a83612b0a565b9150611ed1565b60008167ffffffffffffffff811115611f1257611f12612604565b6040519080825280601f01601f191660200182016040528015611f3c576020820181803683370190505b5090505b8415611a4557611f51600183612a04565b9150611f5e600a86612b70565b611f699060306129d1565b60f81b818381518110611f7e57611f7e612a1b565b60200101906001600160f81b031916908160001a905350611fa0600a86612b0a565b9450611f40565b6001600160a01b03831661200257611ffd81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612025565b816001600160a01b0316836001600160a01b031614612025576120258382612190565b6001600160a01b03821661203c57610a7d8161222d565b826001600160a01b0316826001600160a01b031614610a7d57610a7d82826122dc565b6120698383612320565b6120766000848484612092565b610a7d5760405162461bcd60e51b815260040161094790612b1e565b60006001600160a01b0384163b1561218557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120d6903390899088908890600401612b84565b6020604051808303816000875af1925050508015612111575060408051601f3d908101601f1916820190925261210e91810190612bc1565b60015b61216b573d80801561213f576040519150601f19603f3d011682016040523d82523d6000602084013e612144565b606091505b5080516121635760405162461bcd60e51b815260040161094790612b1e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a45565b506001949350505050565b6000600161219d84610fb8565b6121a79190612a04565b6000838152600760205260409020549091508082146121fa576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061223f90600190612a04565b6000838152600960205260408120546008805493945090928490811061226757612267612a1b565b90600052602060002001549050806008838154811061228857612288612a1b565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122c0576122c0612bde565b6001900381819060005260206000200160009055905550505050565b60006122e783610fb8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123765760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610947565b6000818152600260205260409020546001600160a01b0316156123db5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610947565b6123e760008383611fa7565b6001600160a01b03821660009081526003602052604081208054600192906124109084906129d1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461247a906128db565b90600052602060002090601f01602090048101928261249c57600085556124e2565b82601f106124b557805160ff19168380011785556124e2565b828001600101855582156124e2579182015b828111156124e25782518255916020019190600101906124c7565b506124ee9291506124f2565b5090565b5b808211156124ee57600081556001016124f3565b6001600160e01b03198116811461182357600080fd5b60006020828403121561252f57600080fd5b8135611d3381612507565b60005b8381101561255557818101518382015260200161253d565b838111156116145750506000910152565b6000815180845261257e81602086016020860161253a565b601f01601f19169290920160200192915050565b602081526000611d336020830184612566565b6000602082840312156125b757600080fd5b5035919050565b80356001600160a01b03811681146125d557600080fd5b919050565b600080604083850312156125ed57600080fd5b6125f6836125be565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561264357612643612604565b604052919050565b600067ffffffffffffffff83111561266557612665612604565b612678601f8401601f191660200161261a565b905082815283838301111561268c57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156126b557600080fd5b813567ffffffffffffffff8111156126cc57600080fd5b8201601f810184136126dd57600080fd5b611a458482356020840161264b565b60008060006060848603121561270157600080fd5b61270a846125be565b9250612718602085016125be565b9150604084013590509250925092565b60006020828403121561273a57600080fd5b611d33826125be565b6000602080838503121561275657600080fd5b823567ffffffffffffffff8082111561276e57600080fd5b818501915085601f83011261278257600080fd5b81358181111561279457612794612604565b8060051b91506127a584830161261a565b81815291830184019184810190888411156127bf57600080fd5b938501935b838510156127e4576127d5856125be565b825293850193908501906127c4565b98975050505050505050565b6000806040838503121561280357600080fd5b61280c836125be565b91506020830135801515811461282157600080fd5b809150509250929050565b6000806000806080858703121561284257600080fd5b61284b856125be565b9350612859602086016125be565b925060408501359150606085013567ffffffffffffffff81111561287c57600080fd5b8501601f8101871361288d57600080fd5b61289c8782356020840161264b565b91505092959194509250565b600080604083850312156128bb57600080fd5b6128c4836125be565b91506128d2602084016125be565b90509250929050565b600181811c908216806128ef57607f821691505b6020821081141561291057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156129cc576129cc61299c565b500290565b600082198211156129e4576129e461299c565b500190565b60006000198214156129fd576129fd61299c565b5060010190565b600082821015612a1657612a1661299c565b500390565b634e487b7160e01b600052603260045260246000fd5b60008151612a4381856020860161253a565b9290920192915050565b600080845481600182811c915080831680612a6957607f831692505b6020808410821415612a8957634e487b7160e01b86526022600452602486fd5b818015612a9d5760018114612aae57612adb565b60ff19861689528489019650612adb565b60008b81526020902060005b86811015612ad35781548b820152908501908301612aba565b505084890196505b505050505050612aeb8185612a31565b95945050505050565b634e487b7160e01b600052601260045260246000fd5b600082612b1957612b19612af4565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612b7f57612b7f612af4565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bb790830184612566565b9695505050505050565b600060208284031215612bd357600080fd5b8151611d3381612507565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220538f8440884ea42b39869bd3228bd4116fb19a2c7b2c668ab8995b26ad783d3b64736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c4d65746120463120436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d464300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Meta F1 Club
Arg [1] : _symbol (string): MFC
Arg [2] : _uri (string):
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 4d65746120463120436c75620000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4d46430000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
54109:5928:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45367:224;;;;;;;;;;-1:-1:-1;45367:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;45367:224:0;;;;;;;;32383:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33943:221::-;;;;;;;;;;-1:-1:-1;33943:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;33943:221:0;1550:203:1;33466:411:0;;;;;;;;;;-1:-1:-1;33466:411:0;;;;;:::i;:::-;;:::i;:::-;;59304:130;;;;;;;;;;-1:-1:-1;59304:130:0;;;;;:::i;:::-;;:::i;54497:80::-;;;;;;;;;;;;54535:42;54497:80;;55151:34;;;;;;;;;;-1:-1:-1;55151:34:0;;;;;;;;46007:113;;;;;;;;;;-1:-1:-1;46095:10:0;:17;46007:113;;;3621:25:1;;;3609:2;3594:18;46007:113:0;3475:177:1;34693:339:0;;;;;;;;;;-1:-1:-1;34693:339:0;;;;;:::i;:::-;;:::i;56822:788::-;;;;;;:::i;:::-;;:::i;45675:256::-;;;;;;;;;;-1:-1:-1;45675:256:0;;;;;:::i;:::-;;:::i;59442:95::-;;;;;;;;;;;;;:::i;58004:330::-;;;;;;;;;;;;;:::i;35103:185::-;;;;;;;;;;-1:-1:-1;35103:185:0;;;;;:::i;:::-;;:::i;58468:85::-;;;;;;;;;;;;;:::i;46197:233::-;;;;;;;;;;-1:-1:-1;46197:233:0;;;;;:::i;:::-;;:::i;55194:49::-;;;;;;;;;;-1:-1:-1;55194:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;59203:93;;;;;;;;;;-1:-1:-1;59203:93:0;;;;;:::i;:::-;;:::i;32077:239::-;;;;;;;;;;-1:-1:-1;32077:239:0;;;;;:::i;:::-;;:::i;54811:29::-;;;;;;;;;;-1:-1:-1;54811:29:0;;;;;;;;31807:208;;;;;;;;;;-1:-1:-1;31807:208:0;;;;;:::i;:::-;;:::i;28538:103::-;;;;;;;;;;;;;:::i;55116:28::-;;;;;;;;;;;;;:::i;57618:182::-;;;;;;;;;;-1:-1:-1;57618:182:0;;;;;:::i;:::-;;:::i;55052:26::-;;;;;;;;;;;;;;;;55773:1041;;;;;;:::i;:::-;;:::i;58978:107::-;;;;;;;;;;-1:-1:-1;58978:107:0;;;;;:::i;:::-;;:::i;58869:101::-;;;;;;;;;;-1:-1:-1;58869:101:0;;;;;:::i;:::-;;:::i;55250:45::-;;;;;;;;;;-1:-1:-1;55250:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;54876:32;;;;;;;;;;-1:-1:-1;54876:32:0;;;;;;;;;;;27887:87;;;;;;;;;;-1:-1:-1;27960:6:0;;-1:-1:-1;;;;;27960:6:0;27887:87;;32552:104;;;;;;;;;;;;;:::i;54691:43::-;;;;;;;;;;;;;;;;34236:155;;;;;;;;;;-1:-1:-1;34236:155:0;;;;;:::i;:::-;;:::i;57808:188::-;;;;;;;;;;-1:-1:-1;57808:188:0;;;;;:::i;:::-;;:::i;58709:152::-;;;;;;;;;;;;;:::i;35359:328::-;;;;;;;;;;-1:-1:-1;35359:328:0;;;;;:::i;:::-;;:::i;54381:80::-;;;;;;;;;;;;54419:42;54381:80;;54944:36;;;;;;;;;;-1:-1:-1;54944:36:0;;;;;;;;;;;59661:373;;;;;;;;;;-1:-1:-1;59661:373:0;;;;;:::i;:::-;;:::i;54770:32::-;;;;;;;;;;;;;;;;54325:43;;;;;;;;;;;;54363:5;54325:43;;54615:40;;;;;;;;;;;;;;;;34462:164;;;;;;;;;;-1:-1:-1;34462:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34583:25:0;;;34559:4;34583:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34462:164;28796:201;;;;;;;;;;-1:-1:-1;28796:201:0;;;;;:::i;:::-;;:::i;58561:140::-;;;;;;;;;;;;;:::i;45367:224::-;45469:4;-1:-1:-1;;;;;;45493:50:0;;-1:-1:-1;;;45493:50:0;;:90;;;45547:36;45571:11;45547:23;:36::i;:::-;45486:97;45367:224;-1:-1:-1;;45367:224:0:o;32383:100::-;32437:13;32470:5;32463:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32383:100;:::o;33943:221::-;34019:7;37286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37286:16:0;34039:73;;;;-1:-1:-1;;;34039:73:0;;7014:2:1;34039:73:0;;;6996:21:1;7053:2;7033:18;;;7026:30;7092:34;7072:18;;;7065:62;-1:-1:-1;;;7143:18:1;;;7136:42;7195:19;;34039:73:0;;;;;;;;;-1:-1:-1;34132:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34132:24:0;;33943:221::o;33466:411::-;33547:13;33563:23;33578:7;33563:14;:23::i;:::-;33547:39;;33611:5;-1:-1:-1;;;;;33605:11:0;:2;-1:-1:-1;;;;;33605:11:0;;;33597:57;;;;-1:-1:-1;;;33597:57:0;;7427:2:1;33597:57:0;;;7409:21:1;7466:2;7446:18;;;7439:30;7505:34;7485:18;;;7478:62;-1:-1:-1;;;7556:18:1;;;7549:31;7597:19;;33597:57:0;7225:397:1;33597:57:0;26834:10;-1:-1:-1;;;;;33689:21:0;;;;:62;;-1:-1:-1;33714:37:0;33731:5;26834:10;34462:164;:::i;33714:37::-;33667:168;;;;-1:-1:-1;;;33667:168:0;;7829:2:1;33667:168:0;;;7811:21:1;7868:2;7848:18;;;7841:30;7907:34;7887:18;;;7880:62;7978:26;7958:18;;;7951:54;8022:19;;33667:168:0;7627:420:1;33667:168:0;33848:21;33857:2;33861:7;33848:8;:21::i;:::-;33536:341;33466:411;;:::o;59304:130::-;27960:6;;-1:-1:-1;;;;;27960:6:0;26834:10;28107:23;28099:68;;;;-1:-1:-1;;;28099:68:0;;;;;;;:::i;:::-;59394:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;59304:130:::0;:::o;34693:339::-;34888:41;26834:10;34921:7;34888:18;:41::i;:::-;34880:103;;;;-1:-1:-1;;;34880:103:0;;;;;;;:::i;:::-;34996:28;35006:4;35012:2;35016:7;34996:9;:28::i;56822:788::-;54363:5;55393:11;;:25;55384:58;;;;-1:-1:-1;;;55384:58:0;;9033:2:1;55384:58:0;;;9015:21:1;9072:2;9052:18;;;9045:30;-1:-1:-1;;;9091:18:1;;;9084:49;9150:18;;55384:58:0;8831:343:1;55384:58:0;55462:10;;;;55453:43;;;;-1:-1:-1;;;55453:43:0;;9381:2:1;55453:43:0;;;9363:21:1;9420:2;9400:18;;;9393:30;-1:-1:-1;;;9439:18:1;;;9432:49;9498:18;;55453:43:0;9179:343:1;55453:43:0;56915:16:::1;::::0;;;::::1;;;56906:52;;;::::0;-1:-1:-1;;;56906:52:0;;9729:2:1;56906:52:0::1;::::0;::::1;9711:21:1::0;9768:2;9748:18;;;9741:30;-1:-1:-1;;;9787:18:1;;;9780:52;9849:18;;56906:52:0::1;9527:346:1::0;56906:52:0::1;57005:1;56988:14;:18;56979:52;;;::::0;-1:-1:-1;;;56979:52:0;;10080:2:1;56979:52:0::1;::::0;::::1;10062:21:1::0;10119:2;10099:18;;;10092:30;-1:-1:-1;;;10138:18:1;;;10131:50;10198:18;;56979:52:0::1;9878:344:1::0;56979:52:0::1;57087:9;57069:14;57051:15;;:32;;;;:::i;:::-;:45;57042:79;;;::::0;-1:-1:-1;;;57042:79:0;;10734:2:1;57042:79:0::1;::::0;::::1;10716:21:1::0;10773:2;10753:18;;;10746:30;-1:-1:-1;;;10792:18:1;;;10785:50;10852:18;;57042:79:0::1;10532:344:1::0;57042:79:0::1;57134:19;57164::::0;57201:14:::1;57186:12;;:29;;;;:::i;:::-;57164:51;;57231:9;57226:246;57250:14;57246:1;:18;57226:246;;;57286:27;:15;18017:19:::0;;18035:1;18017:19;;;17928:127;57286:27:::1;57342:15;17898:14:::0;57328:39:::1;;57382:34;57392:10;57404:11;57382:9;:34::i;:::-;57445:11;::::0;:15:::1;::::0;57459:1:::1;57445:15;:::i;:::-;57431:11;:29:::0;57266:3;::::1;::::0;::::1;:::i;:::-;;;;57226:246;;;;57500:11;57488:9;:23;57484:119;;;57528:63;57554:10;57567:23;57579:11:::0;57567:9:::1;:23;:::i;:::-;57528:17;:63::i;45675:256::-:0;45772:7;45808:23;45825:5;45808:16;:23::i;:::-;45800:5;:31;45792:87;;;;-1:-1:-1;;;45792:87:0;;11486:2:1;45792:87:0;;;11468:21:1;11525:2;11505:18;;;11498:30;11564:34;11544:18;;;11537:62;-1:-1:-1;;;11615:18:1;;;11608:41;11666:19;;45792:87:0;11284:407:1;45792:87:0;-1:-1:-1;;;;;;45897:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;45675:256::o;59442:95::-;27960:6;;-1:-1:-1;;;;;27960:6:0;26834:10;28107:23;28099:68;;;;-1:-1:-1;;;28099:68:0;;;;;;;:::i;:::-;59515:14:::1;::::0;;-1:-1:-1;;59497:32:0;::::1;59515:14;::::0;;::::1;59514:15;59497:32;::::0;;59442:95::o;58004:330::-;58063:21;58045:15;58117:14;58063:21;58129:1;58117:11;:14::i;:::-;58095:36;-1:-1:-1;58142:24:0;58169;:7;58095:36;58169:11;:24::i;:::-;58142:51;;58206:52;54419:42;58246:11;58206:17;:52::i;:::-;58269:57;54535:42;58309:16;58269:17;:57::i;35103:185::-;35241:39;35258:4;35264:2;35268:7;35241:39;;;;;;;;;;;;:16;:39::i;58468:85::-;27960:6;;-1:-1:-1;;;;;27960:6:0;26834:10;28107:23;28099:68;;;;-1:-1:-1;;;28099:68:0;;;;;;;:::i;:::-;58535:10:::1;::::0;;-1:-1:-1;;58521:24:0;::::1;58535:10;::::0;;::::1;58534:11;58521:24;::::0;;58468:85::o;46197:233::-;46272:7;46308:30;46095:10;:17;;46007:113;46308:30;46300:5;:38;46292:95;;;;-1:-1:-1;;;46292:95:0;;11898:2:1;46292:95:0;;;11880:21:1;11937:2;11917:18;;;11910:30;11976:34;11956:18;;;11949:62;-1:-1:-1;;;12027:18:1;;;12020:42;12079:19;;46292:95:0;11696:408:1;46292:95:0;46405:10;46416:5;46405:17;;;;;;;;:::i;:::-;;;;;;;;;46398:24;;46197:233;;;:::o;59203:93::-;27960:6;;-1:-1:-1;;;;;27960:6:0;26834:10;28107:23;28099:68;;;;-1:-1:-1;;;28099:68:0;;;;;;;:::i;:::-;59274:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;32077:239::-:0;32149:7;32185:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32185:16:0;32220:19;32212:73;;;;-1:-1:-1;;;32212:73:0;;12443:2:1;32212:73:0;;;12425:21:1;12482:2;12462:18;;;12455:30;12521:34;12501:18;;;12494:62;-1:-1:-1;;;12572:18:1;;;12565:39;12621:19;;32212:73:0;12241:405:1;31807:208:0;31879:7;-1:-1:-1;;;;;31907:19:0;;31899:74;;;;-1:-1:-1;;;31899:74:0;;12853:2:1;31899:74:0;;;12835:21:1;12892:2;12872:18;;;12865:30;12931:34;12911:18;;;12904:62;-1:-1:-1;;;12982:18:1;;;12975:40;13032:19;;31899:74:0;12651:406:1;31899:74:0;-1:-1:-1;;;;;;31991:16:0;;;;;:9;:16;;;;;;;31807:208::o;28538:103::-;27960:6;;-1:-1:-1;;;;;27960:6:0;26834:10;28107:23;28099:68;;;;-1:-1:-1;;;28099:68:0;;;;;;;:::i;:::-;28603:30:::1;28630:1;28603:18;:30::i;:::-;28538:103::o:0;55116:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57618:182::-;27960:6;;-1:-1:-1;;;;;27960:6:0;26834:10;28107:23;28099:68;;;;-1:-1:-1;;;28099:68:0;;;;;;;:::i;:::-;57701:9:::1;57696:97;57720:4;:11;57716:1;:15;57696:97;;;57777:4;57753:12;:21;57766:4;57771:1;57766:7;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;57753:21:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;57753:21:0;:28;;-1:-1:-1;;57753:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57733:3;::::1;::::0;::::1;:::i;:::-;;;;57696:97;;55773:1041:::0;54363:5;55393:11;;:25;55384:58;;;;-1:-1:-1;;;55384:58:0;;9033:2:1;55384:58:0;;;9015:21:1;9072:2;9052:18;;;9045:30;-1:-1:-1;;;9091:18:1;;;9084:49;9150:18;;55384:58:0;8831:343:1;55384:58:0;55462:10;;;;55453:43;;;;-1:-1:-1;;;55453:43:0;;9381:2:1;55453:43:0;;;9363:21:1;9420:2;9400:18;;;9393:30;-1:-1:-1;;;9439:18:1;;;9432:49;9498:18;;55453:43:0;9179:343:1;55453:43:0;55867:13:::1;::::0;::::1;::::0;::::1;;;55858:46;;;::::0;-1:-1:-1;;;55858:46:0;;13264:2:1;55858:46:0::1;::::0;::::1;13246:21:1::0;13303:2;13283:18;;;13276:30;-1:-1:-1;;;13322:18:1;;;13315:49;13381:18;;55858:46:0::1;13062:343:1::0;55858:46:0::1;55940:10;58407:4:::0;58431:21;;;:12;:21;;;;;;;;55915:57:::1;;;::::0;-1:-1:-1;;;55915:57:0;;13612:2:1;55915:57:0::1;::::0;::::1;13594:21:1::0;13651:2;13631:18;;;13624:30;-1:-1:-1;;;13670:18:1;;;13663:46;13726:18;;55915:57:0::1;13410:340:1::0;55915:57:0::1;56018:1;56001:14;:18;55992:52;;;::::0;-1:-1:-1;;;55992:52:0;;10080:2:1;55992:52:0::1;::::0;::::1;10062:21:1::0;10119:2;10099:18;;;10092:30;-1:-1:-1;;;10138:18:1;;;10131:50;10198:18;;55992:52:0::1;9878:344:1::0;55992:52:0::1;56083:7;;56065:14;:25;;56064:86;;;;-1:-1:-1::0;56142:7:0::1;::::0;56110:10:::1;56096:25;::::0;;;:13:::1;:25;::::0;;;;;:42:::1;::::0;56124:14;;56096:42:::1;:::i;:::-;:53;;56064:86;56055:120;;;::::0;-1:-1:-1;;;56055:120:0;;13957:2:1;56055:120:0::1;::::0;::::1;13939:21:1::0;13996:2;13976:18;;;13969:30;-1:-1:-1;;;14015:18:1;;;14008:50;14075:18;;56055:120:0::1;13755:344:1::0;56055:120:0::1;56228:9;56210:14;56195:12;;:29;;;;:::i;:::-;:42;56186:76;;;::::0;-1:-1:-1;;;56186:76:0;;10734:2:1;56186:76:0::1;::::0;::::1;10716:21:1::0;10773:2;10753:18;;;10746:30;-1:-1:-1;;;10792:18:1;;;10785:50;10852:18;;56186:76:0::1;10532:344:1::0;56186:76:0::1;56275:19;56305::::0;56342:14:::1;56327:12;;:29;;;;:::i;:::-;56305:51;;56372:9;56367:309;56391:14;56387:1;:18;56367:309;;;56427:27;:15;18017:19:::0;;18035:1;18017:19;;;17928:127;56427:27:::1;56483:15;17898:14:::0;56469:39:::1;;56525:34;56535:10;56547:11;56525:9;:34::i;:::-;56618:10;56604:25;::::0;;;:13:::1;:25;::::0;;;;;:29:::1;::::0;56632:1:::1;56604:29;:::i;:::-;56590:10;56576:25;::::0;;;:13:::1;:25;::::0;;;;:57;;;;56648:11:::1;:16:::0;;56663:1:::1;::::0;56576:25;56648:16:::1;::::0;56663:1;;56648:16:::1;:::i;:::-;::::0;;;-1:-1:-1;56407:3:0;;-1:-1:-1;56407:3:0::1;::::0;::::1;:::i;:::-;;;;56367:309;;58978:107:::0;27960:6;;-1:-1:-1;;;;;27960:6:0;26834:10;28107:23;28099:68;;;;-1:-1:-1;;;28099:68:0;;;;;;;:::i;:::-;59053:15:::1;:24:::0;58978:107::o;58869:101::-;27960:6;;-1:-1:-1;;;;;27960:6:0;26834:10;28107:23;28099:68;;;;-1:-1:-1;;;28099:68:0;;;;;;;:::i;:::-;58941:12:::1;:21:::0;58869:101::o;32552:104::-;32608:13;32641:7;32634:14;;;;;:::i;34236:155::-;34331:52;26834:10;34364:8;34374;34331:18;:52::i;57808:188::-;27960:6;;-1:-1:-1;;;;;27960:6:0;26834:10;28107:23;28099:68;;;;-1:-1:-1;;;28099:68:0;;;;;;;:::i;:::-;57896:9:::1;57891:98;57915:4;:11;57911:1;:15;57891:98;;;57972:5;57948:12;:21;57961:4;57966:1;57961:7;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;57948:21:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;57948:21:0;:29;;-1:-1:-1;;57948:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57928:3;::::1;::::0;::::1;:::i;:::-;;;;57891:98;;58709:152:::0;27960:6;;-1:-1:-1;;;;;27960:6:0;26834:10;28107:23;28099:68;;;;-1:-1:-1;;;28099:68:0;;;;;;;:::i;:::-;58788:16:::1;::::0;;-1:-1:-1;;58768:36:0;::::1;58788:16:::0;;;;::::1;;;58787:17;58768:36:::0;;::::1;;::::0;;58820:33:::1;::::0;58837:15:::1;::::0;58820:33:::1;::::0;-1:-1:-1;;58820:33:0::1;58709:152::o:0;35359:328::-;35534:41;26834:10;35567:7;35534:18;:41::i;:::-;35526:103;;;;-1:-1:-1;;;35526:103:0;;;;;;;:::i;:::-;35640:39;35654:4;35660:2;35664:7;35673:5;35640:13;:39::i;:::-;35359:328;;;;:::o;59661:373::-;37262:4;37286:16;;;:7;:16;;;;;;59734:13;;-1:-1:-1;;;;;37286:16:0;59760:76;;;;-1:-1:-1;;;59760:76:0;;14306:2:1;59760:76:0;;;14288:21:1;14345:2;14325:18;;;14318:30;14384:34;14364:18;;;14357:62;-1:-1:-1;;;14435:18:1;;;14428:45;14490:19;;59760:76:0;14104:411:1;59760:76:0;59854:14;;;;59849:69;;59892:14;59885:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59661:373;;;:::o;59849:69::-;59964:1;59943:10;:8;:10::i;:::-;59937:24;:28;:89;;;;;;;;;;;;;;;;;59992:7;60001:18;:7;:16;:18::i;:::-;59975:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59930:96;59661:373;-1:-1:-1;;59661:373:0:o;28796:201::-;27960:6;;-1:-1:-1;;;;;27960:6:0;26834:10;28107:23;28099:68;;;;-1:-1:-1;;;28099:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28885:22:0;::::1;28877:73;;;::::0;-1:-1:-1;;;28877:73:0;;16217:2:1;28877:73:0::1;::::0;::::1;16199:21:1::0;16256:2;16236:18;;;16229:30;16295:34;16275:18;;;16268:62;-1:-1:-1;;;16346:18:1;;;16339:36;16392:19;;28877:73:0::1;16015:402:1::0;28877:73:0::1;28961:28;28980:8;28961:18;:28::i;:::-;28796:201:::0;:::o;58561:140::-;27960:6;;-1:-1:-1;;;;;27960:6:0;26834:10;28107:23;28099:68;;;;-1:-1:-1;;;28099:68:0;;;;;;;:::i;:::-;58634:13:::1;::::0;;-1:-1:-1;;58617:30:0;::::1;58634:13;::::0;;;::::1;;;58633:14;58617:30:::0;;::::1;;::::0;;58663::::1;::::0;58677:15:::1;::::0;58663:30:::1;::::0;-1:-1:-1;;58663:30:0::1;58561:140::o:0;31438:305::-;31540:4;-1:-1:-1;;;;;;31577:40:0;;-1:-1:-1;;;31577:40:0;;:105;;-1:-1:-1;;;;;;;31634:48:0;;-1:-1:-1;;;31634:48:0;31577:105;:158;;;-1:-1:-1;;;;;;;;;;30156:40:0;;;31699:36;30047:157;41343:174;41418:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41418:29:0;-1:-1:-1;;;;;41418:29:0;;;;;;;;:24;;41472:23;41418:24;41472:14;:23::i;:::-;-1:-1:-1;;;;;41463:46:0;;;;;;;;;;;41343:174;;:::o;37491:348::-;37584:4;37286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37286:16:0;37601:73;;;;-1:-1:-1;;;37601:73:0;;16624:2:1;37601:73:0;;;16606:21:1;16663:2;16643:18;;;16636:30;16702:34;16682:18;;;16675:62;-1:-1:-1;;;16753:18:1;;;16746:42;16805:19;;37601:73:0;16422:408:1;37601:73:0;37685:13;37701:23;37716:7;37701:14;:23::i;:::-;37685:39;;37754:5;-1:-1:-1;;;;;37743:16:0;:7;-1:-1:-1;;;;;37743:16:0;;:52;;;-1:-1:-1;;;;;;34583:25:0;;;34559:4;34583:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37763:32;37743:87;;;;37823:7;-1:-1:-1;;;;;37799:31:0;:20;37811:7;37799:11;:20::i;:::-;-1:-1:-1;;;;;37799:31:0;;37743:87;37735:96;37491:348;-1:-1:-1;;;;37491:348:0:o;40600:625::-;40759:4;-1:-1:-1;;;;;40732:31:0;:23;40747:7;40732:14;:23::i;:::-;-1:-1:-1;;;;;40732:31:0;;40724:81;;;;-1:-1:-1;;;40724:81:0;;17037:2:1;40724:81:0;;;17019:21:1;17076:2;17056:18;;;17049:30;17115:34;17095:18;;;17088:62;-1:-1:-1;;;17166:18:1;;;17159:35;17211:19;;40724:81:0;16835:401:1;40724:81:0;-1:-1:-1;;;;;40824:16:0;;40816:65;;;;-1:-1:-1;;;40816:65:0;;17443:2:1;40816:65:0;;;17425:21:1;17482:2;17462:18;;;17455:30;17521:34;17501:18;;;17494:62;-1:-1:-1;;;17572:18:1;;;17565:34;17616:19;;40816:65:0;17241:400:1;40816:65:0;40894:39;40915:4;40921:2;40925:7;40894:20;:39::i;:::-;40998:29;41015:1;41019:7;40998:8;:29::i;:::-;-1:-1:-1;;;;;41040:15:0;;;;;;:9;:15;;;;;:20;;41059:1;;41040:15;:20;;41059:1;;41040:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41071:13:0;;;;;;:9;:13;;;;;:18;;41088:1;;41071:13;:18;;41088:1;;41071:18;:::i;:::-;;;;-1:-1:-1;;41100:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41100:21:0;-1:-1:-1;;;;;41100:21:0;;;;;;;;;41139:27;;41100:16;;41139:27;;;;;;;33536:341;33466:411;;:::o;38181:110::-;38257:26;38267:2;38271:7;38257:26;;;;;;;;;;;;:9;:26::i;2400:317::-;2515:6;2490:21;:31;;2482:73;;;;-1:-1:-1;;;2482:73:0;;17848:2:1;2482:73:0;;;17830:21:1;17887:2;17867:18;;;17860:30;17926:31;17906:18;;;17899:59;17975:18;;2482:73:0;17646:353:1;2482:73:0;2569:12;2587:9;-1:-1:-1;;;;;2587:14:0;2609:6;2587:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2568:52;;;2639:7;2631:78;;;;-1:-1:-1;;;2631:78:0;;18416:2:1;2631:78:0;;;18398:21:1;18455:2;18435:18;;;18428:30;18494:34;18474:18;;;18467:62;18565:28;18545:18;;;18538:56;18611:19;;2631:78:0;18214:422:1;12062:98:0;12120:7;12147:5;12151:1;12147;:5;:::i;:::-;12140:12;12062:98;-1:-1:-1;;;12062:98:0:o;11306:::-;11364:7;11391:5;11395:1;11391;:5;:::i;29157:191::-;29250:6;;;-1:-1:-1;;;;;29267:17:0;;;-1:-1:-1;;;;;;29267:17:0;;;;;;;29300:40;;29250:6;;;29267:17;29250:6;;29300:40;;29231:16;;29300:40;29220:128;29157:191;:::o;41659:315::-;41814:8;-1:-1:-1;;;;;41805:17:0;:5;-1:-1:-1;;;;;41805:17:0;;;41797:55;;;;-1:-1:-1;;;41797:55:0;;19100:2:1;41797:55:0;;;19082:21:1;19139:2;19119:18;;;19112:30;19178:27;19158:18;;;19151:55;19223:18;;41797:55:0;18898:349:1;41797:55:0;-1:-1:-1;;;;;41863:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41863:46:0;;;;;;;;;;41925:41;;540::1;;;41925::0;;513:18:1;41925:41:0;;;;;;;41659:315;;;:::o;36569:::-;36726:28;36736:4;36742:2;36746:7;36726:9;:28::i;:::-;36773:48;36796:4;36802:2;36806:7;36815:5;36773:22;:48::i;:::-;36765:111;;;;-1:-1:-1;;;36765:111:0;;;;;;;:::i;59545:108::-;59605:13;59638:7;59631:14;;;;;:::i;15316:723::-;15372:13;15593:10;15589:53;;-1:-1:-1;;15620:10:0;;;;;;;;;;;;-1:-1:-1;;;15620:10:0;;;;;15316:723::o;15589:53::-;15667:5;15652:12;15708:78;15715:9;;15708:78;;15741:8;;;;:::i;:::-;;-1:-1:-1;15764:10:0;;-1:-1:-1;15772:2:0;15764:10;;:::i;:::-;;;15708:78;;;15796:19;15828:6;15818:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15818:17:0;;15796:39;;15846:154;15853:10;;15846:154;;15880:11;15890:1;15880:11;;:::i;:::-;;-1:-1:-1;15949:10:0;15957:2;15949:5;:10;:::i;:::-;15936:24;;:2;:24;:::i;:::-;15923:39;;15906:6;15913;15906:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;15906:56:0;;;;;;;;-1:-1:-1;15977:11:0;15986:2;15977:11;;:::i;:::-;;;15846:154;;47043:589;-1:-1:-1;;;;;47249:18:0;;47245:187;;47284:40;47316:7;48459:10;:17;;48432:24;;;;:15;:24;;;;;:44;;;48487:24;;;;;;;;;;;;48355:164;47284:40;47245:187;;;47354:2;-1:-1:-1;;;;;47346:10:0;:4;-1:-1:-1;;;;;47346:10:0;;47342:90;;47373:47;47406:4;47412:7;47373:32;:47::i;:::-;-1:-1:-1;;;;;47446:16:0;;47442:183;;47479:45;47516:7;47479:36;:45::i;47442:183::-;47552:4;-1:-1:-1;;;;;47546:10:0;:2;-1:-1:-1;;;;;47546:10:0;;47542:83;;47573:40;47601:2;47605:7;47573:27;:40::i;38518:321::-;38648:18;38654:2;38658:7;38648:5;:18::i;:::-;38699:54;38730:1;38734:2;38738:7;38747:5;38699:22;:54::i;:::-;38677:154;;;;-1:-1:-1;;;38677:154:0;;;;;;;:::i;42539:799::-;42694:4;-1:-1:-1;;;;;42715:13:0;;1434:19;:23;42711:620;;42751:72;;-1:-1:-1;;;42751:72:0;;-1:-1:-1;;;;;42751:36:0;;;;;:72;;26834:10;;42802:4;;42808:7;;42817:5;;42751:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42751:72:0;;;;;;;;-1:-1:-1;;42751:72:0;;;;;;;;;;;;:::i;:::-;;;42747:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42993:13:0;;42989:272;;43036:60;;-1:-1:-1;;;43036:60:0;;;;;;;:::i;42989:272::-;43211:6;43205:13;43196:6;43192:2;43188:15;43181:38;42747:529;-1:-1:-1;;;;;;42874:51:0;-1:-1:-1;;;42874:51:0;;-1:-1:-1;42867:58:0;;42711:620;-1:-1:-1;43315:4:0;42539:799;;;;;;:::o;49144:988::-;49410:22;49460:1;49435:22;49452:4;49435:16;:22::i;:::-;:26;;;;:::i;:::-;49472:18;49493:26;;;:17;:26;;;;;;49410:51;;-1:-1:-1;49626:28:0;;;49622:328;;-1:-1:-1;;;;;49693:18:0;;49671:19;49693:18;;;:12;:18;;;;;;;;:34;;;;;;;;;49744:30;;;;;;:44;;;49861:30;;:17;:30;;;;;:43;;;49622:328;-1:-1:-1;50046:26:0;;;;:17;:26;;;;;;;;50039:33;;;-1:-1:-1;;;;;50090:18:0;;;;;:12;:18;;;;;:34;;;;;;;50083:41;49144:988::o;50427:1079::-;50705:10;:17;50680:22;;50705:21;;50725:1;;50705:21;:::i;:::-;50737:18;50758:24;;;:15;:24;;;;;;51131:10;:26;;50680:46;;-1:-1:-1;50758:24:0;;50680:46;;51131:26;;;;;;:::i;:::-;;;;;;;;;51109:48;;51195:11;51170:10;51181;51170:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;51275:28;;;:15;:28;;;;;;;:41;;;51447:24;;;;;51440:31;51482:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;50498:1008;;;50427:1079;:::o;47933:221::-;48018:14;48035:20;48052:2;48035:16;:20::i;:::-;-1:-1:-1;;;;;48066:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;48111:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;47933:221:0:o;39175:439::-;-1:-1:-1;;;;;39255:16:0;;39247:61;;;;-1:-1:-1;;;39247:61:0;;20881:2:1;39247:61:0;;;20863:21:1;;;20900:18;;;20893:30;20959:34;20939:18;;;20932:62;21011:18;;39247:61:0;20679:356:1;39247:61:0;37262:4;37286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37286:16:0;:30;39319:58;;;;-1:-1:-1;;;39319:58:0;;21242:2:1;39319:58:0;;;21224:21:1;21281:2;21261:18;;;21254:30;21320;21300:18;;;21293:58;21368:18;;39319:58:0;21040:352:1;39319:58:0;39390:45;39419:1;39423:2;39427:7;39390:20;:45::i;:::-;-1:-1:-1;;;;;39448:13:0;;;;;;:9;:13;;;;;:18;;39465:1;;39448:13;:18;;39465:1;;39448:18;:::i;:::-;;;;-1:-1:-1;;39477:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39477:21:0;-1:-1:-1;;;;;39477:21:0;;;;;;;;39516:33;;39477:16;;;39516:33;;39477:16;;39516:33;59394:32:::1;59304:130:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2195:127::-;2256:10;2251:3;2247:20;2244:1;2237:31;2287:4;2284:1;2277:15;2311:4;2308:1;2301:15;2327:275;2398:2;2392:9;2463:2;2444:13;;-1:-1:-1;;2440:27:1;2428:40;;2498:18;2483:34;;2519:22;;;2480:62;2477:88;;;2545:18;;:::i;:::-;2581:2;2574:22;2327:275;;-1:-1:-1;2327:275:1:o;2607:407::-;2672:5;2706:18;2698:6;2695:30;2692:56;;;2728:18;;:::i;:::-;2766:57;2811:2;2790:15;;-1:-1:-1;;2786:29:1;2817:4;2782:40;2766:57;:::i;:::-;2757:66;;2846:6;2839:5;2832:21;2886:3;2877:6;2872:3;2868:16;2865:25;2862:45;;;2903:1;2900;2893:12;2862:45;2952:6;2947:3;2940:4;2933:5;2929:16;2916:43;3006:1;2999:4;2990:6;2983:5;2979:18;2975:29;2968:40;2607:407;;;;;:::o;3019:451::-;3088:6;3141:2;3129:9;3120:7;3116:23;3112:32;3109:52;;;3157:1;3154;3147:12;3109:52;3197:9;3184:23;3230:18;3222:6;3219:30;3216:50;;;3262:1;3259;3252:12;3216:50;3285:22;;3338:4;3330:13;;3326:27;-1:-1:-1;3316:55:1;;3367:1;3364;3357:12;3316:55;3390:74;3456:7;3451:2;3438:16;3433:2;3429;3425:11;3390:74;:::i;3657:328::-;3734:6;3742;3750;3803:2;3791:9;3782:7;3778:23;3774:32;3771:52;;;3819:1;3816;3809:12;3771:52;3842:29;3861:9;3842:29;:::i;:::-;3832:39;;3890:38;3924:2;3913:9;3909:18;3890:38;:::i;:::-;3880:48;;3975:2;3964:9;3960:18;3947:32;3937:42;;3657:328;;;;;:::o;3990:186::-;4049:6;4102:2;4090:9;4081:7;4077:23;4073:32;4070:52;;;4118:1;4115;4108:12;4070:52;4141:29;4160:9;4141:29;:::i;4181:952::-;4265:6;4296:2;4339;4327:9;4318:7;4314:23;4310:32;4307:52;;;4355:1;4352;4345:12;4307:52;4395:9;4382:23;4424:18;4465:2;4457:6;4454:14;4451:34;;;4481:1;4478;4471:12;4451:34;4519:6;4508:9;4504:22;4494:32;;4564:7;4557:4;4553:2;4549:13;4545:27;4535:55;;4586:1;4583;4576:12;4535:55;4622:2;4609:16;4644:2;4640;4637:10;4634:36;;;4650:18;;:::i;:::-;4696:2;4693:1;4689:10;4679:20;;4719:28;4743:2;4739;4735:11;4719:28;:::i;:::-;4781:15;;;4851:11;;;4847:20;;;4812:12;;;;4879:19;;;4876:39;;;4911:1;4908;4901:12;4876:39;4935:11;;;;4955:148;4971:6;4966:3;4963:15;4955:148;;;5037:23;5056:3;5037:23;:::i;:::-;5025:36;;4988:12;;;;5081;;;;4955:148;;;5122:5;4181:952;-1:-1:-1;;;;;;;;4181:952:1:o;5138:347::-;5203:6;5211;5264:2;5252:9;5243:7;5239:23;5235:32;5232:52;;;5280:1;5277;5270:12;5232:52;5303:29;5322:9;5303:29;:::i;:::-;5293:39;;5382:2;5371:9;5367:18;5354:32;5429:5;5422:13;5415:21;5408:5;5405:32;5395:60;;5451:1;5448;5441:12;5395:60;5474:5;5464:15;;;5138:347;;;;;:::o;5490:667::-;5585:6;5593;5601;5609;5662:3;5650:9;5641:7;5637:23;5633:33;5630:53;;;5679:1;5676;5669:12;5630:53;5702:29;5721:9;5702:29;:::i;:::-;5692:39;;5750:38;5784:2;5773:9;5769:18;5750:38;:::i;:::-;5740:48;;5835:2;5824:9;5820:18;5807:32;5797:42;;5890:2;5879:9;5875:18;5862:32;5917:18;5909:6;5906:30;5903:50;;;5949:1;5946;5939:12;5903:50;5972:22;;6025:4;6017:13;;6013:27;-1:-1:-1;6003:55:1;;6054:1;6051;6044:12;6003:55;6077:74;6143:7;6138:2;6125:16;6120:2;6116;6112:11;6077:74;:::i;:::-;6067:84;;;5490:667;;;;;;;:::o;6162:260::-;6230:6;6238;6291:2;6279:9;6270:7;6266:23;6262:32;6259:52;;;6307:1;6304;6297:12;6259:52;6330:29;6349:9;6330:29;:::i;:::-;6320:39;;6378:38;6412:2;6401:9;6397:18;6378:38;:::i;:::-;6368:48;;6162:260;;;;;:::o;6427:380::-;6506:1;6502:12;;;;6549;;;6570:61;;6624:4;6616:6;6612:17;6602:27;;6570:61;6677:2;6669:6;6666:14;6646:18;6643:38;6640:161;;;6723:10;6718:3;6714:20;6711:1;6704:31;6758:4;6755:1;6748:15;6786:4;6783:1;6776:15;6640:161;;6427:380;;;:::o;8052:356::-;8254:2;8236:21;;;8273:18;;;8266:30;8332:34;8327:2;8312:18;;8305:62;8399:2;8384:18;;8052:356::o;8413:413::-;8615:2;8597:21;;;8654:2;8634:18;;;8627:30;8693:34;8688:2;8673:18;;8666:62;-1:-1:-1;;;8759:2:1;8744:18;;8737:47;8816:3;8801:19;;8413:413::o;10227:127::-;10288:10;10283:3;10279:20;10276:1;10269:31;10319:4;10316:1;10309:15;10343:4;10340:1;10333:15;10359:168;10399:7;10465:1;10461;10457:6;10453:14;10450:1;10447:21;10442:1;10435:9;10428:17;10424:45;10421:71;;;10472:18;;:::i;:::-;-1:-1:-1;10512:9:1;;10359:168::o;10881:128::-;10921:3;10952:1;10948:6;10945:1;10942:13;10939:39;;;10958:18;;:::i;:::-;-1:-1:-1;10994:9:1;;10881:128::o;11014:135::-;11053:3;-1:-1:-1;;11074:17:1;;11071:43;;;11094:18;;:::i;:::-;-1:-1:-1;11141:1:1;11130:13;;11014:135::o;11154:125::-;11194:4;11222:1;11219;11216:8;11213:34;;;11227:18;;:::i;:::-;-1:-1:-1;11264:9:1;;11154:125::o;12109:127::-;12170:10;12165:3;12161:20;12158:1;12151:31;12201:4;12198:1;12191:15;12225:4;12222:1;12215:15;14646:185;14688:3;14726:5;14720:12;14741:52;14786:6;14781:3;14774:4;14767:5;14763:16;14741:52;:::i;:::-;14809:16;;;;;14646:185;-1:-1:-1;;14646:185:1:o;14836:1174::-;15012:3;15041:1;15074:6;15068:13;15104:3;15126:1;15154:9;15150:2;15146:18;15136:28;;15214:2;15203:9;15199:18;15236;15226:61;;15280:4;15272:6;15268:17;15258:27;;15226:61;15306:2;15354;15346:6;15343:14;15323:18;15320:38;15317:165;;;-1:-1:-1;;;15381:33:1;;15437:4;15434:1;15427:15;15467:4;15388:3;15455:17;15317:165;15498:18;15525:104;;;;15643:1;15638:320;;;;15491:467;;15525:104;-1:-1:-1;;15558:24:1;;15546:37;;15603:16;;;;-1:-1:-1;15525:104:1;;15638:320;14593:1;14586:14;;;14630:4;14617:18;;15733:1;15747:165;15761:6;15758:1;15755:13;15747:165;;;15839:14;;15826:11;;;15819:35;15882:16;;;;15776:10;;15747:165;;;15751:3;;15941:6;15936:3;15932:16;15925:23;;15491:467;;;;;;;15974:30;16000:3;15992:6;15974:30;:::i;:::-;15967:37;14836:1174;-1:-1:-1;;;;;14836:1174:1:o;18641:127::-;18702:10;18697:3;18693:20;18690:1;18683:31;18733:4;18730:1;18723:15;18757:4;18754:1;18747:15;18773:120;18813:1;18839;18829:35;;18844:18;;:::i;:::-;-1:-1:-1;18878:9:1;;18773:120::o;19252:414::-;19454:2;19436:21;;;19493:2;19473:18;;;19466:30;19532:34;19527:2;19512:18;;19505:62;-1:-1:-1;;;19598:2:1;19583:18;;19576:48;19656:3;19641:19;;19252:414::o;19671:112::-;19703:1;19729;19719:35;;19734:18;;:::i;:::-;-1:-1:-1;19768:9:1;;19671:112::o;19788:500::-;-1:-1:-1;;;;;20057:15:1;;;20039:34;;20109:15;;20104:2;20089:18;;20082:43;20156:2;20141:18;;20134:34;;;20204:3;20199:2;20184:18;;20177:31;;;19982:4;;20225:57;;20262:19;;20254:6;20225:57;:::i;:::-;20217:65;19788:500;-1:-1:-1;;;;;;19788:500:1:o;20293:249::-;20362:6;20415:2;20403:9;20394:7;20390:23;20386:32;20383:52;;;20431:1;20428;20421:12;20383:52;20463:9;20457:16;20482:30;20506:5;20482:30;:::i;20547:127::-;20608:10;20603:3;20599:20;20596:1;20589:31;20639:4;20636:1;20629:15;20663:4;20660:1;20653:15
Swarm Source
ipfs://538f8440884ea42b39869bd3228bd4116fb19a2c7b2c668ab8995b26ad783d3b
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.