ERC-721
NFT
Overview
Max Total Supply
1,975 MCLG
Holders
1,195
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MCLGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
McLarenMSOLABGenesis
Compiler Version
v0.8.1+commit.df193b15
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-06 */ // File: https://github.com/ProjectOpenSea/opensea-creatures/blob/f7257a043e82fae8251eec2bdde37a44fee474c4/contracts/common/meta-transactions/Initializable.sol pragma solidity ^0.8.0; contract Initializable { bool inited = false; modifier initializer() { require(!inited, "already inited"); _; inited = true; } } // File: https://github.com/ProjectOpenSea/opensea-creatures/blob/f7257a043e82fae8251eec2bdde37a44fee474c4/contracts/common/meta-transactions/EIP712Base.sol pragma solidity ^0.8.0; contract EIP712Base is Initializable { struct EIP712Domain { string name; string version; address verifyingContract; bytes32 salt; } string constant public ERC712_VERSION = "1"; bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256( bytes( "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)" ) ); bytes32 internal domainSeperator; // supposed to be called once while initializing. // one of the contracts that inherits this contract follows proxy pattern // so it is not possible to do this in a constructor function _initializeEIP712( string memory name ) internal initializer { _setDomainSeperator(name); } function _setDomainSeperator(string memory name) internal { domainSeperator = keccak256( abi.encode( EIP712_DOMAIN_TYPEHASH, keccak256(bytes(name)), keccak256(bytes(ERC712_VERSION)), address(this), bytes32(getChainId()) ) ); } function getDomainSeperator() public view returns (bytes32) { return domainSeperator; } function getChainId() public view returns (uint256) { uint256 id; assembly { id := chainid() } return id; } /** * Accept message hash and returns hash message in EIP712 compatible form * So that it can be used to recover signer from signature signed using EIP712 formatted data * https://eips.ethereum.org/EIPS/eip-712 * "\\x19" makes the encoding deterministic * "\\x01" is the version byte to make it compatible to EIP-191 */ function toTypedMessageHash(bytes32 messageHash) internal view returns (bytes32) { return keccak256( abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash) ); } } // File: https://github.com/ProjectOpenSea/opensea-creatures/blob/f7257a043e82fae8251eec2bdde37a44fee474c4/contracts/common/meta-transactions/ContentMixin.sol pragma solidity ^0.8.0; abstract contract ContextMixin { function msgSender() internal view returns (address payable sender) { if (msg.sender == address(this)) { bytes memory array = msg.data; uint256 index = msg.data.length; assembly { // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those. sender := and( mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff ) } } else { sender = payable(msg.sender); } return sender; } } // File: openzeppelin-solidity/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since 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 subtraction 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; } } } // File: https://github.com/ProjectOpenSea/opensea-creatures/blob/f7257a043e82fae8251eec2bdde37a44fee474c4/contracts/common/meta-transactions/NativeMetaTransaction.sol pragma solidity ^0.8.0; contract NativeMetaTransaction is EIP712Base { using SafeMath for uint256; bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256( bytes( "MetaTransaction(uint256 nonce,address from,bytes functionSignature)" ) ); event MetaTransactionExecuted( address userAddress, address payable relayerAddress, bytes functionSignature ); mapping(address => uint256) nonces; /* * Meta transaction structure. * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas * He should call the desired function directly in that case. */ struct MetaTransaction { uint256 nonce; address from; bytes functionSignature; } function executeMetaTransaction( address userAddress, bytes memory functionSignature, bytes32 sigR, bytes32 sigS, uint8 sigV ) public payable returns (bytes memory) { MetaTransaction memory metaTx = MetaTransaction({ nonce: nonces[userAddress], from: userAddress, functionSignature: functionSignature }); require( verify(userAddress, metaTx, sigR, sigS, sigV), "Signer and signature do not match" ); // increase nonce for user (to avoid re-use) nonces[userAddress] = nonces[userAddress].add(1); emit MetaTransactionExecuted( userAddress, payable(msg.sender), functionSignature ); // Append userAddress and relayer address at the end to extract it from calling context (bool success, bytes memory returnData) = address(this).call( abi.encodePacked(functionSignature, userAddress) ); require(success, "Function call not successful"); return returnData; } function hashMetaTransaction(MetaTransaction memory metaTx) internal pure returns (bytes32) { return keccak256( abi.encode( META_TRANSACTION_TYPEHASH, metaTx.nonce, metaTx.from, keccak256(metaTx.functionSignature) ) ); } function getNonce(address user) public view returns (uint256 nonce) { nonce = nonces[user]; } function verify( address signer, MetaTransaction memory metaTx, bytes32 sigR, bytes32 sigS, uint8 sigV ) internal view returns (bool) { require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER"); return signer == ecrecover( toTypedMessageHash(hashMetaTransaction(metaTx)), sigV, sigR, sigS ); } } // File: openzeppelin-solidity/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: openzeppelin-solidity/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: openzeppelin-solidity/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: openzeppelin-solidity/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: openzeppelin-solidity/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: openzeppelin-solidity/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: openzeppelin-solidity/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: openzeppelin-solidity/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: openzeppelin-solidity/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: 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 {} } // File: openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @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(); } } // File: contracts/McLarenNFT.sol pragma solidity ^0.8.1; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } /** * @title McLarenMSOLABGenesis * McLarenMSOLABGenesis - NFT contract for https://nft.mclaren.com/ * ERC721 contract that whitelists a trading address, and has minting functionality. * ProxyAddress depends on the network you're deploying to. * It's 0xf57b2c51ded3a29e6891aba85459d600256cf317 on Rinkeby and 0xa5409ec958c83c3f309868babaca7c86dcb077c1 on mainnet. * See https://github.com/ProjectOpenSea/opensea-creatures/blob/master/migrations/2_deploy_contracts.js#L7-L12 for an example of conditionally setting the proxy registry address. */ contract McLarenMSOLABGenesis is ContextMixin, ERC721Enumerable, NativeMetaTransaction, Ownable { using SafeMath for uint256; address proxyRegistryAddress; uint256 private _currentTokenId = 0; /** * @dev Mapping from NFT ID to metadata uri. */ mapping (uint256 => string) internal idToUri; constructor( string memory _name, string memory _symbol, address _proxyRegistryAddress ) ERC721(_name, _symbol) { proxyRegistryAddress = _proxyRegistryAddress; _initializeEIP712(_name); } /** * @dev Returns contract-level metadata * based on https://docs.opensea.io/docs/contract-level-metadata */ function contractURI() public pure returns (string memory) { return "https://mclaren-assets.s3.amazonaws.com/contract-assets/mclaren-contract-metadata.json"; } /** * @dev Mints a token to an address with a tokenURI. * @param _to address of the future owner of the token * @param _tokenId tokenId of the token */ function mintTo(address _to, uint256 _tokenId, string memory _uri) public onlyOwner { _mint(_to, _tokenId); _setTokenUri(_tokenId, _uri); } /** * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } /** * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea. */ function _msgSender() internal override view returns (address sender) { return ContextMixin.msgSender(); } /** * @dev A distinct URI (RFC 3986) for a given NFT. * @param _tokenId Id for which we want uri. * @return URI of _tokenId. */ function tokenURI( uint256 _tokenId ) public override view returns (string memory) { return _tokenURI(_tokenId); } /** * @notice This is an internal function that can be overriden if you want to implement a different * way to generate token URI. * @param _tokenId Id for which we want uri. * @return URI of _tokenId. */ function _tokenURI( uint256 _tokenId ) internal virtual view returns (string memory) { return idToUri[_tokenId]; } /** * @notice This is an internal function which should be called from user-implemented external * function. Its purpose is to show and properly initialize data structures when using this * implementation. * @dev Set a distinct URI (RFC 3986) for a given NFT ID. * @param _tokenId Id for which we want URI. * @param _uri String representing RFC 3986 URI. */ function _setTokenUri( uint256 _tokenId, string memory _uri ) internal { idToUri[_tokenId] = _uri; } }
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":"address","name":"_proxyRegistryAddress","type":"address"}],"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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600a805460ff191690556000600f553480156200002057600080fd5b50604051620028a9380380620028a98339810160408190526200004391620003d4565b8251839083906200005c9060009060208501906200027b565b508051620000729060019060208401906200027b565b5050506200008f62000089620000be60201b60201c565b620000db565b600e80546001600160a01b0319166001600160a01b038316179055620000b5836200012d565b50505062000504565b6000620000d56200017760201b62000bd91760201c565b90505b90565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff16156200015c5760405162461bcd60e51b8152600401620001539062000489565b60405180910390fd5b6200016781620001d5565b50600a805460ff19166001179055565b600033301415620001d057600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620000d89050565b503390565b6040518060800160405280604f81526020016200285a604f913980516020918201208251838301206040805180820190915260018152603160f81b930192909252907fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6306200024362000277565b604051620002599594939291906020016200045d565b60408051601f198184030181529190528051602090910120600b5550565b4690565b8280546200028990620004b1565b90600052602060002090601f016020900481019282620002ad5760008555620002f8565b82601f10620002c857805160ff1916838001178555620002f8565b82800160010185558215620002f8579182015b82811115620002f8578251825591602001919060010190620002db565b50620003069291506200030a565b5090565b5b808211156200030657600081556001016200030b565b600082601f83011262000332578081fd5b81516001600160401b03808211156200034f576200034f620004ee565b604051601f8301601f19908116603f011681019082821181831017156200037a576200037a620004ee565b8160405283815260209250868385880101111562000396578485fd5b8491505b83821015620003b957858201830151818301840152908201906200039a565b83821115620003ca57848385830101525b9695505050505050565b600080600060608486031215620003e9578283fd5b83516001600160401b038082111562000400578485fd5b6200040e8783880162000321565b9450602086015191508082111562000424578384fd5b50620004338682870162000321565b604086015190935090506001600160a01b038116811462000452578182fd5b809150509250925092565b948552602085019390935260408401919091526001600160a01b03166060830152608082015260a00190565b6020808252600e908201526d185b1c9958591e481a5b9a5d195960921b604082015260600190565b600281046001821680620004c657607f821691505b60208210811415620004e857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61234680620005146000396000f3fe6080604052600436106101815760003560e01c80634f6ccce7116100d15780639f6ed25f1161008a578063c87b56dd11610064578063c87b56dd14610420578063e8a3d48514610440578063e985e9c514610455578063f2fde38b1461047557610181565b80639f6ed25f146103c0578063a22cb465146103e0578063b88d4fde1461040057610181565b80634f6ccce7146103215780636352211e1461034157806370a0823114610361578063715018a6146103815780638da5cb5b1461039657806395d89b41146103ab57610181565b806318160ddd1161013e5780632d0335ab116101185780632d0335ab146102ac5780632f745c59146102cc5780633408e470146102ec57806342842e0e1461030157610181565b806318160ddd1461025557806320379ee51461027757806323b872dd1461028c57610181565b806301ffc9a71461018657806306fdde03146101bc578063081812fc146101de578063095ea7b31461020b5780630c53c51c1461022d5780630f7e597014610240575b600080fd5b34801561019257600080fd5b506101a66101a1366004611a2e565b610495565b6040516101b39190611bba565b60405180910390f35b3480156101c857600080fd5b506101d16104c0565b6040516101b39190611c10565b3480156101ea57600080fd5b506101fe6101f9366004611a82565b610553565b6040516101b39190611b34565b34801561021757600080fd5b5061022b610226366004611999565b61059f565b005b6101d161023b36600461191e565b610637565b34801561024c57600080fd5b506101d16107b7565b34801561026157600080fd5b5061026a6107d4565b6040516101b39190611bc5565b34801561028357600080fd5b5061026a6107da565b34801561029857600080fd5b5061022b6102a7366004611843565b6107e0565b3480156102b857600080fd5b5061026a6102c73660046117ef565b610818565b3480156102d857600080fd5b5061026a6102e7366004611999565b610833565b3480156102f857600080fd5b5061026a610885565b34801561030d57600080fd5b5061022b61031c366004611843565b610889565b34801561032d57600080fd5b5061026a61033c366004611a82565b6108a4565b34801561034d57600080fd5b506101fe61035c366004611a82565b6108ff565b34801561036d57600080fd5b5061026a61037c3660046117ef565b610934565b34801561038d57600080fd5b5061022b610978565b3480156103a257600080fd5b506101fe6109c3565b3480156103b757600080fd5b506101d16109d2565b3480156103cc57600080fd5b5061022b6103db3660046119c4565b6109e1565b3480156103ec57600080fd5b5061022b6103fb3660046118ed565b610a34565b34801561040c57600080fd5b5061022b61041b366004611883565b610a4a565b34801561042c57600080fd5b506101d161043b366004611a82565b610a89565b34801561044c57600080fd5b506101d1610a94565b34801561046157600080fd5b506101a661047036600461180b565b610ab4565b34801561048157600080fd5b5061022b6104903660046117ef565b610b68565b60006001600160e01b0319821663780e9d6360e01b14806104ba57506104ba82610c35565b92915050565b6060600080546104cf906121e5565b80601f01602080910402602001604051908101604052809291908181526020018280546104fb906121e5565b80156105485780601f1061051d57610100808354040283529160200191610548565b820191906000526020600020905b81548152906001019060200180831161052b57829003601f168201915b505050505090505b90565b600061055e82610c75565b6105835760405162461bcd60e51b815260040161057a90611fea565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105aa826108ff565b9050806001600160a01b0316836001600160a01b031614156105de5760405162461bcd60e51b815260040161057a906120ac565b806001600160a01b03166105f0610c92565b6001600160a01b0316148061060c575061060c81610470610c92565b6106285760405162461bcd60e51b815260040161057a90611ec5565b6106328383610ca1565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526106758782878787610d0f565b6106915760405162461bcd60e51b815260040161057a9061206b565b6001600160a01b0387166000908152600c60205260409020546106b5906001610db5565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061070590899033908a90611b48565b60405180910390a1600080306001600160a01b0316888a60405160200161072d929190611ae2565b60408051601f198184030181529082905261074791611ac6565b6000604051808303816000865af19150503d8060008114610784576040519150601f19603f3d011682016040523d82523d6000602084013e610789565b606091505b5091509150816107ab5760405162461bcd60e51b815260040161057a90611d06565b98975050505050505050565b604051806040016040528060018152602001603160f81b81525081565b60085490565b600b5490565b6107f16107eb610c92565b82610dc8565b61080d5760405162461bcd60e51b815260040161057a906120ed565b610632838383610e4c565b6001600160a01b03166000908152600c602052604090205490565b600061083e83610934565b821061085c5760405162461bcd60e51b815260040161057a90611c23565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b4690565b61063283838360405180602001604052806000815250610a4a565b60006108ae6107d4565b82106108cc5760405162461bcd60e51b815260040161057a9061213e565b600882815481106108ed57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104ba5760405162461bcd60e51b815260040161057a90611f6c565b60006001600160a01b03821661095c5760405162461bcd60e51b815260040161057a90611f22565b506001600160a01b031660009081526003602052604090205490565b610980610c92565b6001600160a01b03166109916109c3565b6001600160a01b0316146109b75760405162461bcd60e51b815260040161057a90612036565b6109c16000610f7f565b565b600d546001600160a01b031690565b6060600180546104cf906121e5565b6109e9610c92565b6001600160a01b03166109fa6109c3565b6001600160a01b031614610a205760405162461bcd60e51b815260040161057a90612036565b610a2a8383610fd1565b61063282826110b8565b610a46610a3f610c92565b83836110d7565b5050565b610a5b610a55610c92565b83610dc8565b610a775760405162461bcd60e51b815260040161057a906120ed565b610a838484848461117a565b50505050565b60606104ba826111ad565b60606040518060800160405280605681526020016122bb60569139905090565b600e5460405163c455279160e01b81526000916001600160a01b039081169190841690829063c455279190610aed908890600401611b34565b60206040518083038186803b158015610b0557600080fd5b505afa158015610b19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3d9190611a66565b6001600160a01b03161415610b565760019150506104ba565b610b60848461124f565b949350505050565b610b70610c92565b6001600160a01b0316610b816109c3565b6001600160a01b031614610ba75760405162461bcd60e51b815260040161057a90612036565b6001600160a01b038116610bcd5760405162461bcd60e51b815260040161057a90611cc0565b610bd681610f7f565b50565b600033301415610c3057600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506105509050565b503390565b60006001600160e01b031982166380ac58cd60e01b1480610c6657506001600160e01b03198216635b5e139f60e01b145b806104ba57506104ba8261127d565b6000908152600260205260409020546001600160a01b0316151590565b6000610c9c610bd9565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cd6826108ff565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616610d375760405162461bcd60e51b815260040161057a90611e80565b6001610d4a610d4587611296565b6112f4565b83868660405160008152602001604052604051610d6a9493929190611bf2565b6020604051602081039080840390855afa158015610d8c573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000610dc1828461218a565b9392505050565b6000610dd382610c75565b610def5760405162461bcd60e51b815260040161057a90611e34565b6000610dfa836108ff565b9050806001600160a01b0316846001600160a01b03161480610e215750610e218185610ab4565b80610b605750836001600160a01b0316610e3a84610553565b6001600160a01b031614949350505050565b826001600160a01b0316610e5f826108ff565b6001600160a01b031614610e855760405162461bcd60e51b815260040161057a90611d3d565b6001600160a01b038216610eab5760405162461bcd60e51b815260040161057a90611db9565b610eb6838383611310565b610ec1600082610ca1565b6001600160a01b0383166000908152600360205260408120805460019290610eea9084906121a2565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f1890849061218a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4610632838383610632565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610ff75760405162461bcd60e51b815260040161057a90611fb5565b61100081610c75565b1561101d5760405162461bcd60e51b815260040161057a90611d82565b61102960008383611310565b6001600160a01b038216600090815260036020526040812080546001929061105290849061218a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610a4660008383610632565b60008281526010602090815260409091208251610632928401906116c1565b816001600160a01b0316836001600160a01b031614156111095760405162461bcd60e51b815260040161057a90611dfd565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061116d908590611bba565b60405180910390a3505050565b611185848484610e4c565b61119184848484611399565b610a835760405162461bcd60e51b815260040161057a90611c6e565b60008181526010602052604090208054606091906111ca906121e5565b80601f01602080910402602001604051908101604052809291908181526020018280546111f6906121e5565b80156112435780601f1061121857610100808354040283529160200191611243565b820191906000526020600020905b81548152906001019060200180831161122657829003601f168201915b50505050509050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6001600160e01b031981166301ffc9a760e01b14919050565b600060405180608001604052806043815260200161227860439139805160209182012083518483015160408087015180519086012090516112d79501611bce565b604051602081830303815290604052805190602001209050919050565b60006112fe6107da565b826040516020016112d7929190611b19565b61131b838383610632565b6001600160a01b03831661133757611332816114b4565b61135a565b816001600160a01b0316836001600160a01b03161461135a5761135a83826114f8565b6001600160a01b0382166113765761137181611595565b610632565b826001600160a01b0316826001600160a01b03161461063257610632828261166e565b60006113ad846001600160a01b03166116b2565b156114a957836001600160a01b031663150b7a026113c9610c92565b8786866040518563ffffffff1660e01b81526004016113eb9493929190611b7d565b602060405180830381600087803b15801561140557600080fd5b505af1925050508015611435575060408051601f3d908101601f1916820190925261143291810190611a4a565b60015b61148f573d808015611463576040519150601f19603f3d011682016040523d82523d6000602084013e611468565b606091505b5080516114875760405162461bcd60e51b815260040161057a90611c6e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b60565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161150584610934565b61150f91906121a2565b600083815260076020526040902054909150808214611562576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906115a7906001906121a2565b600083815260096020526040812054600880549394509092849081106115dd57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061160c57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061165257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061167983610934565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03163b151590565b8280546116cd906121e5565b90600052602060002090601f0160209004810192826116ef5760008555611735565b82601f1061170857805160ff1916838001178555611735565b82800160010185558215611735579182015b8281111561173557825182559160200191906001019061171a565b50611741929150611745565b5090565b5b808211156117415760008155600101611746565b600067ffffffffffffffff8084111561177557611775612236565b604051601f8501601f19908116603f0116810190828211818310171561179d5761179d612236565b816040528093508581528686860111156117b657600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126117e0578081fd5b610dc18383356020850161175a565b600060208284031215611800578081fd5b8135610dc18161224c565b6000806040838503121561181d578081fd5b82356118288161224c565b915060208301356118388161224c565b809150509250929050565b600080600060608486031215611857578081fd5b83356118628161224c565b925060208401356118728161224c565b929592945050506040919091013590565b60008060008060808587031215611898578081fd5b84356118a38161224c565b935060208501356118b38161224c565b925060408501359150606085013567ffffffffffffffff8111156118d5578182fd5b6118e1878288016117d0565b91505092959194509250565b600080604083850312156118ff578182fd5b823561190a8161224c565b915060208301358015158114611838578182fd5b600080600080600060a08688031215611935578081fd5b85356119408161224c565b9450602086013567ffffffffffffffff81111561195b578182fd5b611967888289016117d0565b9450506040860135925060608601359150608086013560ff8116811461198b578182fd5b809150509295509295909350565b600080604083850312156119ab578182fd5b82356119b68161224c565b946020939093013593505050565b6000806000606084860312156119d8578283fd5b83356119e38161224c565b925060208401359150604084013567ffffffffffffffff811115611a05578182fd5b8401601f81018613611a15578182fd5b611a248682356020840161175a565b9150509250925092565b600060208284031215611a3f578081fd5b8135610dc181612261565b600060208284031215611a5b578081fd5b8151610dc181612261565b600060208284031215611a77578081fd5b8151610dc18161224c565b600060208284031215611a93578081fd5b5035919050565b60008151808452611ab28160208601602086016121b9565b601f01601f19169290920160200192915050565b60008251611ad88184602087016121b9565b9190910192915050565b60008351611af48184602088016121b9565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b03848116825283166020820152606060408201819052600090611b7490830184611a9a565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bb090830184611a9a565b9695505050505050565b901515815260200190565b90815260200190565b93845260208401929092526001600160a01b03166040830152606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b600060208252610dc16020830184611a9a565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604082015260600190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526025908201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360408201526424a3a722a960d91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636040820152600d60fb1b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6000821982111561219d5761219d612220565b500190565b6000828210156121b4576121b4612220565b500390565b60005b838110156121d45781810151838201526020016121bc565b83811115610a835750506000910152565b6002810460018216806121f957607f821691505b6020821081141561221a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610bd657600080fd5b6001600160e01b031981168114610bd657600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f6d636c6172656e2d6173736574732e73332e616d617a6f6e6177732e636f6d2f636f6e74726163742d6173736574732f6d636c6172656e2d636f6e74726163742d6d657461646174612e6a736f6ea2646970667358221220560a28464b976e7eeb1ea6490e6fefcd0e924d234d52f3221c49a598406a9c0d64736f6c63430008010033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000144d634c6172656e4d534f4c414247656e6573697300000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d434c4700000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101815760003560e01c80634f6ccce7116100d15780639f6ed25f1161008a578063c87b56dd11610064578063c87b56dd14610420578063e8a3d48514610440578063e985e9c514610455578063f2fde38b1461047557610181565b80639f6ed25f146103c0578063a22cb465146103e0578063b88d4fde1461040057610181565b80634f6ccce7146103215780636352211e1461034157806370a0823114610361578063715018a6146103815780638da5cb5b1461039657806395d89b41146103ab57610181565b806318160ddd1161013e5780632d0335ab116101185780632d0335ab146102ac5780632f745c59146102cc5780633408e470146102ec57806342842e0e1461030157610181565b806318160ddd1461025557806320379ee51461027757806323b872dd1461028c57610181565b806301ffc9a71461018657806306fdde03146101bc578063081812fc146101de578063095ea7b31461020b5780630c53c51c1461022d5780630f7e597014610240575b600080fd5b34801561019257600080fd5b506101a66101a1366004611a2e565b610495565b6040516101b39190611bba565b60405180910390f35b3480156101c857600080fd5b506101d16104c0565b6040516101b39190611c10565b3480156101ea57600080fd5b506101fe6101f9366004611a82565b610553565b6040516101b39190611b34565b34801561021757600080fd5b5061022b610226366004611999565b61059f565b005b6101d161023b36600461191e565b610637565b34801561024c57600080fd5b506101d16107b7565b34801561026157600080fd5b5061026a6107d4565b6040516101b39190611bc5565b34801561028357600080fd5b5061026a6107da565b34801561029857600080fd5b5061022b6102a7366004611843565b6107e0565b3480156102b857600080fd5b5061026a6102c73660046117ef565b610818565b3480156102d857600080fd5b5061026a6102e7366004611999565b610833565b3480156102f857600080fd5b5061026a610885565b34801561030d57600080fd5b5061022b61031c366004611843565b610889565b34801561032d57600080fd5b5061026a61033c366004611a82565b6108a4565b34801561034d57600080fd5b506101fe61035c366004611a82565b6108ff565b34801561036d57600080fd5b5061026a61037c3660046117ef565b610934565b34801561038d57600080fd5b5061022b610978565b3480156103a257600080fd5b506101fe6109c3565b3480156103b757600080fd5b506101d16109d2565b3480156103cc57600080fd5b5061022b6103db3660046119c4565b6109e1565b3480156103ec57600080fd5b5061022b6103fb3660046118ed565b610a34565b34801561040c57600080fd5b5061022b61041b366004611883565b610a4a565b34801561042c57600080fd5b506101d161043b366004611a82565b610a89565b34801561044c57600080fd5b506101d1610a94565b34801561046157600080fd5b506101a661047036600461180b565b610ab4565b34801561048157600080fd5b5061022b6104903660046117ef565b610b68565b60006001600160e01b0319821663780e9d6360e01b14806104ba57506104ba82610c35565b92915050565b6060600080546104cf906121e5565b80601f01602080910402602001604051908101604052809291908181526020018280546104fb906121e5565b80156105485780601f1061051d57610100808354040283529160200191610548565b820191906000526020600020905b81548152906001019060200180831161052b57829003601f168201915b505050505090505b90565b600061055e82610c75565b6105835760405162461bcd60e51b815260040161057a90611fea565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105aa826108ff565b9050806001600160a01b0316836001600160a01b031614156105de5760405162461bcd60e51b815260040161057a906120ac565b806001600160a01b03166105f0610c92565b6001600160a01b0316148061060c575061060c81610470610c92565b6106285760405162461bcd60e51b815260040161057a90611ec5565b6106328383610ca1565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526106758782878787610d0f565b6106915760405162461bcd60e51b815260040161057a9061206b565b6001600160a01b0387166000908152600c60205260409020546106b5906001610db5565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061070590899033908a90611b48565b60405180910390a1600080306001600160a01b0316888a60405160200161072d929190611ae2565b60408051601f198184030181529082905261074791611ac6565b6000604051808303816000865af19150503d8060008114610784576040519150601f19603f3d011682016040523d82523d6000602084013e610789565b606091505b5091509150816107ab5760405162461bcd60e51b815260040161057a90611d06565b98975050505050505050565b604051806040016040528060018152602001603160f81b81525081565b60085490565b600b5490565b6107f16107eb610c92565b82610dc8565b61080d5760405162461bcd60e51b815260040161057a906120ed565b610632838383610e4c565b6001600160a01b03166000908152600c602052604090205490565b600061083e83610934565b821061085c5760405162461bcd60e51b815260040161057a90611c23565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b4690565b61063283838360405180602001604052806000815250610a4a565b60006108ae6107d4565b82106108cc5760405162461bcd60e51b815260040161057a9061213e565b600882815481106108ed57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104ba5760405162461bcd60e51b815260040161057a90611f6c565b60006001600160a01b03821661095c5760405162461bcd60e51b815260040161057a90611f22565b506001600160a01b031660009081526003602052604090205490565b610980610c92565b6001600160a01b03166109916109c3565b6001600160a01b0316146109b75760405162461bcd60e51b815260040161057a90612036565b6109c16000610f7f565b565b600d546001600160a01b031690565b6060600180546104cf906121e5565b6109e9610c92565b6001600160a01b03166109fa6109c3565b6001600160a01b031614610a205760405162461bcd60e51b815260040161057a90612036565b610a2a8383610fd1565b61063282826110b8565b610a46610a3f610c92565b83836110d7565b5050565b610a5b610a55610c92565b83610dc8565b610a775760405162461bcd60e51b815260040161057a906120ed565b610a838484848461117a565b50505050565b60606104ba826111ad565b60606040518060800160405280605681526020016122bb60569139905090565b600e5460405163c455279160e01b81526000916001600160a01b039081169190841690829063c455279190610aed908890600401611b34565b60206040518083038186803b158015610b0557600080fd5b505afa158015610b19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3d9190611a66565b6001600160a01b03161415610b565760019150506104ba565b610b60848461124f565b949350505050565b610b70610c92565b6001600160a01b0316610b816109c3565b6001600160a01b031614610ba75760405162461bcd60e51b815260040161057a90612036565b6001600160a01b038116610bcd5760405162461bcd60e51b815260040161057a90611cc0565b610bd681610f7f565b50565b600033301415610c3057600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506105509050565b503390565b60006001600160e01b031982166380ac58cd60e01b1480610c6657506001600160e01b03198216635b5e139f60e01b145b806104ba57506104ba8261127d565b6000908152600260205260409020546001600160a01b0316151590565b6000610c9c610bd9565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cd6826108ff565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616610d375760405162461bcd60e51b815260040161057a90611e80565b6001610d4a610d4587611296565b6112f4565b83868660405160008152602001604052604051610d6a9493929190611bf2565b6020604051602081039080840390855afa158015610d8c573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000610dc1828461218a565b9392505050565b6000610dd382610c75565b610def5760405162461bcd60e51b815260040161057a90611e34565b6000610dfa836108ff565b9050806001600160a01b0316846001600160a01b03161480610e215750610e218185610ab4565b80610b605750836001600160a01b0316610e3a84610553565b6001600160a01b031614949350505050565b826001600160a01b0316610e5f826108ff565b6001600160a01b031614610e855760405162461bcd60e51b815260040161057a90611d3d565b6001600160a01b038216610eab5760405162461bcd60e51b815260040161057a90611db9565b610eb6838383611310565b610ec1600082610ca1565b6001600160a01b0383166000908152600360205260408120805460019290610eea9084906121a2565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f1890849061218a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4610632838383610632565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610ff75760405162461bcd60e51b815260040161057a90611fb5565b61100081610c75565b1561101d5760405162461bcd60e51b815260040161057a90611d82565b61102960008383611310565b6001600160a01b038216600090815260036020526040812080546001929061105290849061218a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610a4660008383610632565b60008281526010602090815260409091208251610632928401906116c1565b816001600160a01b0316836001600160a01b031614156111095760405162461bcd60e51b815260040161057a90611dfd565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061116d908590611bba565b60405180910390a3505050565b611185848484610e4c565b61119184848484611399565b610a835760405162461bcd60e51b815260040161057a90611c6e565b60008181526010602052604090208054606091906111ca906121e5565b80601f01602080910402602001604051908101604052809291908181526020018280546111f6906121e5565b80156112435780601f1061121857610100808354040283529160200191611243565b820191906000526020600020905b81548152906001019060200180831161122657829003601f168201915b50505050509050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6001600160e01b031981166301ffc9a760e01b14919050565b600060405180608001604052806043815260200161227860439139805160209182012083518483015160408087015180519086012090516112d79501611bce565b604051602081830303815290604052805190602001209050919050565b60006112fe6107da565b826040516020016112d7929190611b19565b61131b838383610632565b6001600160a01b03831661133757611332816114b4565b61135a565b816001600160a01b0316836001600160a01b03161461135a5761135a83826114f8565b6001600160a01b0382166113765761137181611595565b610632565b826001600160a01b0316826001600160a01b03161461063257610632828261166e565b60006113ad846001600160a01b03166116b2565b156114a957836001600160a01b031663150b7a026113c9610c92565b8786866040518563ffffffff1660e01b81526004016113eb9493929190611b7d565b602060405180830381600087803b15801561140557600080fd5b505af1925050508015611435575060408051601f3d908101601f1916820190925261143291810190611a4a565b60015b61148f573d808015611463576040519150601f19603f3d011682016040523d82523d6000602084013e611468565b606091505b5080516114875760405162461bcd60e51b815260040161057a90611c6e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b60565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161150584610934565b61150f91906121a2565b600083815260076020526040902054909150808214611562576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906115a7906001906121a2565b600083815260096020526040812054600880549394509092849081106115dd57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061160c57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061165257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061167983610934565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03163b151590565b8280546116cd906121e5565b90600052602060002090601f0160209004810192826116ef5760008555611735565b82601f1061170857805160ff1916838001178555611735565b82800160010185558215611735579182015b8281111561173557825182559160200191906001019061171a565b50611741929150611745565b5090565b5b808211156117415760008155600101611746565b600067ffffffffffffffff8084111561177557611775612236565b604051601f8501601f19908116603f0116810190828211818310171561179d5761179d612236565b816040528093508581528686860111156117b657600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126117e0578081fd5b610dc18383356020850161175a565b600060208284031215611800578081fd5b8135610dc18161224c565b6000806040838503121561181d578081fd5b82356118288161224c565b915060208301356118388161224c565b809150509250929050565b600080600060608486031215611857578081fd5b83356118628161224c565b925060208401356118728161224c565b929592945050506040919091013590565b60008060008060808587031215611898578081fd5b84356118a38161224c565b935060208501356118b38161224c565b925060408501359150606085013567ffffffffffffffff8111156118d5578182fd5b6118e1878288016117d0565b91505092959194509250565b600080604083850312156118ff578182fd5b823561190a8161224c565b915060208301358015158114611838578182fd5b600080600080600060a08688031215611935578081fd5b85356119408161224c565b9450602086013567ffffffffffffffff81111561195b578182fd5b611967888289016117d0565b9450506040860135925060608601359150608086013560ff8116811461198b578182fd5b809150509295509295909350565b600080604083850312156119ab578182fd5b82356119b68161224c565b946020939093013593505050565b6000806000606084860312156119d8578283fd5b83356119e38161224c565b925060208401359150604084013567ffffffffffffffff811115611a05578182fd5b8401601f81018613611a15578182fd5b611a248682356020840161175a565b9150509250925092565b600060208284031215611a3f578081fd5b8135610dc181612261565b600060208284031215611a5b578081fd5b8151610dc181612261565b600060208284031215611a77578081fd5b8151610dc18161224c565b600060208284031215611a93578081fd5b5035919050565b60008151808452611ab28160208601602086016121b9565b601f01601f19169290920160200192915050565b60008251611ad88184602087016121b9565b9190910192915050565b60008351611af48184602088016121b9565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b03848116825283166020820152606060408201819052600090611b7490830184611a9a565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bb090830184611a9a565b9695505050505050565b901515815260200190565b90815260200190565b93845260208401929092526001600160a01b03166040830152606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b600060208252610dc16020830184611a9a565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604082015260600190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526025908201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360408201526424a3a722a960d91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636040820152600d60fb1b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6000821982111561219d5761219d612220565b500190565b6000828210156121b4576121b4612220565b500390565b60005b838110156121d45781810151838201526020016121bc565b83811115610a835750506000910152565b6002810460018216806121f957607f821691505b6020821081141561221a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610bd657600080fd5b6001600160e01b031981168114610bd657600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f6d636c6172656e2d6173736574732e73332e616d617a6f6e6177732e636f6d2f636f6e74726163742d6173736574732f6d636c6172656e2d636f6e74726163742d6d657461646174612e6a736f6ea2646970667358221220560a28464b976e7eeb1ea6490e6fefcd0e924d234d52f3221c49a598406a9c0d64736f6c63430008010033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000144d634c6172656e4d534f4c414247656e6573697300000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d434c4700000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): McLarenMSOLABGenesis
Arg [1] : _symbol (string): MCLG
Arg [2] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 4d634c6172656e4d534f4c414247656e65736973000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4d434c4700000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
60181:3403:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53260:224;;;;;;;;;;-1:-1:-1;53260:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40071:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41631:221::-;;;;;;;;;;-1:-1:-1;41631:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41154:411::-;;;;;;;;;;-1:-1:-1;41154:411:0;;;;;:::i;:::-;;:::i;:::-;;11626:1151;;;;;;:::i;:::-;;:::i;750:43::-;;;;;;;;;;;;;:::i;53900:113::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1759:101::-;;;;;;;;;;;;;:::i;42381:339::-;;;;;;;;;;-1:-1:-1;42381:339:0;;;;;:::i;:::-;;:::i;13203:107::-;;;;;;;;;;-1:-1:-1;13203:107:0;;;;;:::i;:::-;;:::i;53568:256::-;;;;;;;;;;-1:-1:-1;53568:256:0;;;;;:::i;:::-;;:::i;1868:161::-;;;;;;;;;;;;;:::i;42791:185::-;;;;;;;;;;-1:-1:-1;42791:185:0;;;;;:::i;:::-;;:::i;54090:233::-;;;;;;;;;;-1:-1:-1;54090:233:0;;;;;:::i;:::-;;:::i;39765:239::-;;;;;;;;;;-1:-1:-1;39765:239:0;;;;;:::i;:::-;;:::i;39495:208::-;;;;;;;;;;-1:-1:-1;39495:208:0;;;;;:::i;:::-;;:::i;18565:103::-;;;;;;;;;;;;;:::i;17914:87::-;;;;;;;;;;;;;:::i;40240:104::-;;;;;;;;;;;;;:::i;61266:162::-;;;;;;;;;;-1:-1:-1;61266:162:0;;;;;:::i;:::-;;:::i;41924:155::-;;;;;;;;;;-1:-1:-1;41924:155:0;;;;;:::i;:::-;;:::i;43047:328::-;;;;;;;;;;-1:-1:-1;43047:328:0;;;;;:::i;:::-;;:::i;62473:153::-;;;;;;;;;;-1:-1:-1;62473:153:0;;;;;:::i;:::-;;:::i;60906:171::-;;;;;;;;;;;;;:::i;61560:445::-;;;;;;;;;;-1:-1:-1;61560:445:0;;;;;:::i;:::-;;:::i;18823:201::-;;;;;;;;;;-1:-1:-1;18823:201:0;;;;;:::i;:::-;;:::i;53260:224::-;53362:4;-1:-1:-1;;;;;;53386:50:0;;-1:-1:-1;;;53386:50:0;;:90;;;53440:36;53464:11;53440:23;:36::i;:::-;53379:97;53260:224;-1:-1:-1;;53260:224:0:o;40071:100::-;40125:13;40158:5;40151:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40071:100;;:::o;41631:221::-;41707:7;41735:16;41743:7;41735;:16::i;:::-;41727:73;;;;-1:-1:-1;;;41727:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;41820:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41820:24:0;;41631:221::o;41154:411::-;41235:13;41251:23;41266:7;41251:14;:23::i;:::-;41235:39;;41299:5;-1:-1:-1;;;;;41293:11:0;:2;-1:-1:-1;;;;;41293:11:0;;;41285:57;;;;-1:-1:-1;;;41285:57:0;;;;;;;:::i;:::-;41393:5;-1:-1:-1;;;;;41377:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;41377:21:0;;:62;;;;41402:37;41419:5;41426:12;:10;:12::i;41402:37::-;41355:168;;;;-1:-1:-1;;;41355:168:0;;;;;;;:::i;:::-;41536:21;41545:2;41549:7;41536:8;:21::i;:::-;41154:411;;;:::o;11626:1151::-;11884:152;;;11827:12;11884:152;;;;;-1:-1:-1;;;;;11922:19:0;;11852:29;11922:19;;;:6;:19;;;;;;;;;11884:152;;;;;;;;;;;12071:45;11929:11;11884:152;12099:4;12105;12111;12071:6;:45::i;:::-;12049:128;;;;-1:-1:-1;;;12049:128:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12266:19:0;;;;;;:6;:19;;;;;;:26;;12290:1;12266:23;:26::i;:::-;-1:-1:-1;;;;;12244:19:0;;;;;;:6;:19;;;;;;;:48;;;;12310:126;;;;;12251:11;;12382:10;;12408:17;;12310:126;:::i;:::-;;;;;;;;12547:12;12561:23;12596:4;-1:-1:-1;;;;;12588:18:0;12638:17;12657:11;12621:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;12621:48:0;;;;;;;;;;12588:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12546:134;;;;12699:7;12691:48;;;;-1:-1:-1;;;12691:48:0;;;;;;;:::i;:::-;12759:10;11626:1151;-1:-1:-1;;;;;;;;11626:1151:0:o;750:43::-;;;;;;;;;;;;;;-1:-1:-1;;;750:43:0;;;;:::o;53900:113::-;53988:10;:17;53900:113;:::o;1759:101::-;1837:15;;1759:101;:::o;42381:339::-;42576:41;42595:12;:10;:12::i;:::-;42609:7;42576:18;:41::i;:::-;42568:103;;;;-1:-1:-1;;;42568:103:0;;;;;;;:::i;:::-;42684:28;42694:4;42700:2;42704:7;42684:9;:28::i;13203:107::-;-1:-1:-1;;;;;13290:12:0;13256:13;13290:12;;;:6;:12;;;;;;;13203:107::o;53568:256::-;53665:7;53701:23;53718:5;53701:16;:23::i;:::-;53693:5;:31;53685:87;;;;-1:-1:-1;;;53685:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;53790:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;53568:256::o;1868:161::-;1982:9;1868:161;:::o;42791:185::-;42929:39;42946:4;42952:2;42956:7;42929:39;;;;;;;;;;;;:16;:39::i;54090:233::-;54165:7;54201:30;:28;:30::i;:::-;54193:5;:38;54185:95;;;;-1:-1:-1;;;54185:95:0;;;;;;;:::i;:::-;54298:10;54309:5;54298:17;;;;;;-1:-1:-1;;;54298:17:0;;;;;;;;;;;;;;;;;54291:24;;54090:233;;;:::o;39765:239::-;39837:7;39873:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39873:16:0;39908:19;39900:73;;;;-1:-1:-1;;;39900:73:0;;;;;;;:::i;39495:208::-;39567:7;-1:-1:-1;;;;;39595:19:0;;39587:74;;;;-1:-1:-1;;;39587:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;39679:16:0;;;;;:9;:16;;;;;;;39495:208::o;18565:103::-;18145:12;:10;:12::i;:::-;-1:-1:-1;;;;;18134:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18134:23:0;;18126:68;;;;-1:-1:-1;;;18126:68:0;;;;;;;:::i;:::-;18630:30:::1;18657:1;18630:18;:30::i;:::-;18565:103::o:0;17914:87::-;17987:6;;-1:-1:-1;;;;;17987:6:0;17914:87;:::o;40240:104::-;40296:13;40329:7;40322:14;;;;;:::i;61266:162::-;18145:12;:10;:12::i;:::-;-1:-1:-1;;;;;18134:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18134:23:0;;18126:68;;;;-1:-1:-1;;;18126:68:0;;;;;;;:::i;:::-;61361:20:::1;61367:3;61372:8;61361:5;:20::i;:::-;61392:28;61405:8;61415:4;61392:12;:28::i;41924:155::-:0;42019:52;42038:12;:10;:12::i;:::-;42052:8;42062;42019:18;:52::i;:::-;41924:155;;:::o;43047:328::-;43222:41;43241:12;:10;:12::i;:::-;43255:7;43222:18;:41::i;:::-;43214:103;;;;-1:-1:-1;;;43214:103:0;;;;;;;:::i;:::-;43328:39;43342:4;43348:2;43352:7;43361:5;43328:13;:39::i;:::-;43047:328;;;;:::o;62473:153::-;62569:13;62601:19;62611:8;62601:9;:19::i;60906:171::-;60950:13;60974:95;;;;;;;;;;;;;;;;;;;60906:171;:::o;61560:445::-;61814:20;;61858:28;;-1:-1:-1;;;61858:28:0;;61685:4;;-1:-1:-1;;;;;61814:20:0;;;;61850:49;;;;61814:20;;61858:21;;:28;;61880:5;;61858:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;61850:49:0;;61846:93;;;61923:4;61916:11;;;;;61846:93;61958:39;61981:5;61988:8;61958:22;:39::i;:::-;61951:46;61560:445;-1:-1:-1;;;;61560:445:0:o;18823:201::-;18145:12;:10;:12::i;:::-;-1:-1:-1;;;;;18134:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18134:23:0;;18126:68;;;;-1:-1:-1;;;18126:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18912:22:0;::::1;18904:73;;;;-1:-1:-1::0;;;18904:73:0::1;;;;;;;:::i;:::-;18988:28;19007:8;18988:18;:28::i;:::-;18823:201:::0;:::o;2892:650::-;2963:22;3007:10;3029:4;3007:27;3003:508;;;3051:18;3072:8;;3051:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;3111:8:0;3322:17;3316:24;-1:-1:-1;;;;;3290:134:0;;-1:-1:-1;3150:289:0;;-1:-1:-1;3150:289:0;;-1:-1:-1;3488:10:0;2892:650;:::o;39126:305::-;39228:4;-1:-1:-1;;;;;;39265:40:0;;-1:-1:-1;;;39265:40:0;;:105;;-1:-1:-1;;;;;;;39322:48:0;;-1:-1:-1;;;39322:48:0;39265:105;:158;;;;39387:36;39411:11;39387:23;:36::i;44885:127::-;44950:4;44974:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44974:16:0;:30;;;44885:127::o;62149:161::-;62239:14;62278:24;:22;:24::i;:::-;62271:31;;62149:161;:::o;49031:174::-;49106:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;49106:29:0;-1:-1:-1;;;;;49106:29:0;;;;;;;;:24;;49160:23;49106:24;49160:14;:23::i;:::-;-1:-1:-1;;;;;49151:46:0;;;;;;;;;;;49031:174;;:::o;13318:486::-;13496:4;-1:-1:-1;;;;;13521:20:0;;13513:70;;;;-1:-1:-1;;;13513:70:0;;;;;;;:::i;:::-;13637:159;13665:47;13684:27;13704:6;13684:19;:27::i;:::-;13665:18;:47::i;:::-;13731:4;13754;13777;13637:159;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13614:182:0;:6;-1:-1:-1;;;;;13614:182:0;;13594:202;;13318:486;;;;;;;:::o;6433:98::-;6491:7;6518:5;6522:1;6518;:5;:::i;:::-;6511:12;6433:98;-1:-1:-1;;;6433:98:0:o;45179:348::-;45272:4;45297:16;45305:7;45297;:16::i;:::-;45289:73;;;;-1:-1:-1;;;45289:73:0;;;;;;;:::i;:::-;45373:13;45389:23;45404:7;45389:14;:23::i;:::-;45373:39;;45442:5;-1:-1:-1;;;;;45431:16:0;:7;-1:-1:-1;;;;;45431:16:0;;:52;;;;45451:32;45468:5;45475:7;45451:16;:32::i;:::-;45431:87;;;;45511:7;-1:-1:-1;;;;;45487:31:0;:20;45499:7;45487:11;:20::i;:::-;-1:-1:-1;;;;;45487:31:0;;;45179:348;-1:-1:-1;;;;45179:348:0:o;48288:625::-;48447:4;-1:-1:-1;;;;;48420:31:0;:23;48435:7;48420:14;:23::i;:::-;-1:-1:-1;;;;;48420:31:0;;48412:81;;;;-1:-1:-1;;;48412:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48512:16:0;;48504:65;;;;-1:-1:-1;;;48504:65:0;;;;;;;:::i;:::-;48582:39;48603:4;48609:2;48613:7;48582:20;:39::i;:::-;48686:29;48703:1;48707:7;48686:8;:29::i;:::-;-1:-1:-1;;;;;48728:15:0;;;;;;:9;:15;;;;;:20;;48747:1;;48728:15;:20;;48747:1;;48728:20;:::i;:::-;;;;-1:-1:-1;;;;;;;48759:13:0;;;;;;:9;:13;;;;;:18;;48776:1;;48759:13;:18;;48776:1;;48759:18;:::i;:::-;;;;-1:-1:-1;;48788:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48788:21:0;-1:-1:-1;;;;;48788:21:0;;;;;;;;;48827:27;;48788:16;;48827:27;;;;;;;48867:38;48887:4;48893:2;48897:7;48867:19;:38::i;19184:191::-;19277:6;;;-1:-1:-1;;;;;19294:17:0;;;-1:-1:-1;;;;;;19294:17:0;;;;;;;19327:40;;19277:6;;;19294:17;19277:6;;19327:40;;19258:16;;19327:40;19184:191;;:::o;46863:439::-;-1:-1:-1;;;;;46943:16:0;;46935:61;;;;-1:-1:-1;;;46935:61:0;;;;;;;:::i;:::-;47016:16;47024:7;47016;:16::i;:::-;47015:17;47007:58;;;;-1:-1:-1;;;47007:58:0;;;;;;;:::i;:::-;47078:45;47107:1;47111:2;47115:7;47078:20;:45::i;:::-;-1:-1:-1;;;;;47136:13:0;;;;;;:9;:13;;;;;:18;;47153:1;;47136:13;:18;;47153:1;;47136:18;:::i;:::-;;;;-1:-1:-1;;47165:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;47165:21:0;-1:-1:-1;;;;;47165:21:0;;;;;;;;47204:33;;47165:16;;;47204:33;;47165:16;;47204:33;47250:44;47278:1;47282:2;47286:7;47250:19;:44::i;63420:157::-;63543:17;;;;:7;:17;;;;;;;;:24;;;;;;;;:::i;49347:315::-;49502:8;-1:-1:-1;;;;;49493:17:0;:5;-1:-1:-1;;;;;49493:17:0;;;49485:55;;;;-1:-1:-1;;;49485:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49551:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;49551:46:0;;;;;;;49613:41;;;;;49551:46;;49613:41;:::i;:::-;;;;;;;;49347:315;;;:::o;44257:::-;44414:28;44424:4;44430:2;44434:7;44414:9;:28::i;:::-;44461:48;44484:4;44490:2;44494:7;44503:5;44461:22;:48::i;:::-;44453:111;;;;-1:-1:-1;;;44453:111:0;;;;;;;:::i;62860:153::-;62990:17;;;;:7;:17;;;;;62983:24;;62958:13;;62990:17;62983:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62860:153;;;:::o;42150:164::-;-1:-1:-1;;;;;42271:25:0;;;42247:4;42271:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42150:164::o;30753:157::-;-1:-1:-1;;;;;;30862:40:0;;-1:-1:-1;;;30862:40:0;30753:157;;;:::o;12785:410::-;12895:7;10962:100;;;;;;;;;;;;;;;;;10942:127;;;;;;;13049:12;;13084:11;;;;13128:24;;;;;13118:35;;;;;;12968:204;;;;;;:::i;:::-;;;;;;;;;;;;;12940:247;;;;;;12920:267;;12785:410;;;:::o;2398:258::-;2497:7;2599:20;:18;:20::i;:::-;2621:11;2570:63;;;;;;;;;:::i;54936:589::-;55080:45;55107:4;55113:2;55117:7;55080:26;:45::i;:::-;-1:-1:-1;;;;;55142:18:0;;55138:187;;55177:40;55209:7;55177:31;:40::i;:::-;55138:187;;;55247:2;-1:-1:-1;;;;;55239:10:0;:4;-1:-1:-1;;;;;55239:10:0;;55235:90;;55266:47;55299:4;55305:7;55266:32;:47::i;:::-;-1:-1:-1;;;;;55339:16:0;;55335:183;;55372:45;55409:7;55372:36;:45::i;:::-;55335:183;;;55445:4;-1:-1:-1;;;;;55439:10:0;:2;-1:-1:-1;;;;;55439:10:0;;55435:83;;55466:40;55494:2;55498:7;55466:27;:40::i;50227:799::-;50382:4;50403:15;:2;-1:-1:-1;;;;;50403:13:0;;:15::i;:::-;50399:620;;;50455:2;-1:-1:-1;;;;;50439:36:0;;50476:12;:10;:12::i;:::-;50490:4;50496:7;50505:5;50439:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50439:72:0;;;;;;;;-1:-1:-1;;50439:72:0;;;;;;;;;;;;:::i;:::-;;;50435:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50681:13:0;;50677:272;;50724:60;;-1:-1:-1;;;50724:60:0;;;;;;;:::i;50677:272::-;50899:6;50893:13;50884:6;50880:2;50876:15;50869:38;50435:529;-1:-1:-1;;;;;;50562:51:0;-1:-1:-1;;;50562:51:0;;-1:-1:-1;50555:58:0;;50399:620;-1:-1:-1;51003:4:0;50227:799;;;;;;:::o;56248:164::-;56352:10;:17;;56325:24;;;;:15;:24;;;;;:44;;;56380:24;;;;;;;;;;;;56248:164::o;57039:988::-;57305:22;57355:1;57330:22;57347:4;57330:16;:22::i;:::-;:26;;;;:::i;:::-;57367:18;57388:26;;;:17;:26;;;;;;57305:51;;-1:-1:-1;57521:28:0;;;57517:328;;-1:-1:-1;;;;;57588:18:0;;57566:19;57588:18;;;:12;:18;;;;;;;;:34;;;;;;;;;57639:30;;;;;;:44;;;57756:30;;:17;:30;;;;;:43;;;57517:328;-1:-1:-1;57941:26:0;;;;:17;:26;;;;;;;;57934:33;;;-1:-1:-1;;;;;57985:18:0;;;;;:12;:18;;;;;:34;;;;;;;57978:41;57039:988::o;58322:1079::-;58600:10;:17;58575:22;;58600:21;;58620:1;;58600:21;:::i;:::-;58632:18;58653:24;;;:15;:24;;;;;;59026:10;:26;;58575:46;;-1:-1:-1;58653:24:0;;58575:46;;59026:26;;;;-1:-1:-1;;;59026:26:0;;;;;;;;;;;;;;;;;59004:48;;59090:11;59065:10;59076;59065:22;;;;;;-1:-1:-1;;;59065:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;59170:28;;;:15;:28;;;;;;;:41;;;59342:24;;;;;59335:31;59377:10;:16;;;;;-1:-1:-1;;;59377:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;58322:1079;;;;:::o;55826:221::-;55911:14;55928:20;55945:2;55928:16;:20::i;:::-;-1:-1:-1;;;;;55959:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;56004:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;55826:221:0:o;20623:326::-;-1:-1:-1;;;;;20918:19:0;;:23;;;20623:326::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:633:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;232:2;226:9;200:2;286:15;;-1:-1:-1;;282:24:1;;;308:2;278:33;274:42;262:55;;;332:18;;;352:22;;;329:46;326:2;;;378:18;;:::i;:::-;418:10;414:2;407:22;447:6;438:15;;477:6;469;462:22;517:3;508:6;503:3;499:16;496:25;493:2;;;534:1;531;524:12;493:2;584:6;579:3;572:4;564:6;560:17;547:44;639:1;632:4;623:6;615;611:19;607:30;600:41;;;;90:557;;;;;:::o;652:232::-;;749:3;742:4;734:6;730:17;726:27;716:2;;771:5;764;757:20;716:2;797:81;874:3;865:6;852:20;845:4;837:6;833:17;797:81;:::i;889:259::-;;1001:2;989:9;980:7;976:23;972:32;969:2;;;1022:6;1014;1007:22;969:2;1066:9;1053:23;1085:33;1112:5;1085:33;:::i;1153:402::-;;;1282:2;1270:9;1261:7;1257:23;1253:32;1250:2;;;1303:6;1295;1288:22;1250:2;1347:9;1334:23;1366:33;1393:5;1366:33;:::i;:::-;1418:5;-1:-1:-1;1475:2:1;1460:18;;1447:32;1488:35;1447:32;1488:35;:::i;:::-;1542:7;1532:17;;;1240:315;;;;;:::o;1560:470::-;;;;1706:2;1694:9;1685:7;1681:23;1677:32;1674:2;;;1727:6;1719;1712:22;1674:2;1771:9;1758:23;1790:33;1817:5;1790:33;:::i;:::-;1842:5;-1:-1:-1;1899:2:1;1884:18;;1871:32;1912:35;1871:32;1912:35;:::i;:::-;1664:366;;1966:7;;-1:-1:-1;;;2020:2:1;2005:18;;;;1992:32;;1664:366::o;2035:691::-;;;;;2207:3;2195:9;2186:7;2182:23;2178:33;2175:2;;;2229:6;2221;2214:22;2175:2;2273:9;2260:23;2292:33;2319:5;2292:33;:::i;:::-;2344:5;-1:-1:-1;2401:2:1;2386:18;;2373:32;2414:35;2373:32;2414:35;:::i;:::-;2468:7;-1:-1:-1;2522:2:1;2507:18;;2494:32;;-1:-1:-1;2577:2:1;2562:18;;2549:32;2604:18;2593:30;;2590:2;;;2641:6;2633;2626:22;2590:2;2669:51;2712:7;2703:6;2692:9;2688:22;2669:51;:::i;:::-;2659:61;;;2165:561;;;;;;;:::o;2731:438::-;;;2857:2;2845:9;2836:7;2832:23;2828:32;2825:2;;;2878:6;2870;2863:22;2825:2;2922:9;2909:23;2941:33;2968:5;2941:33;:::i;:::-;2993:5;-1:-1:-1;3050:2:1;3035:18;;3022:32;3092:15;;3085:23;3073:36;;3063:2;;3128:6;3120;3113:22;3174:792;;;;;;3361:3;3349:9;3340:7;3336:23;3332:33;3329:2;;;3383:6;3375;3368:22;3329:2;3427:9;3414:23;3446:33;3473:5;3446:33;:::i;:::-;3498:5;-1:-1:-1;3554:2:1;3539:18;;3526:32;3581:18;3570:30;;3567:2;;;3618:6;3610;3603:22;3567:2;3646:51;3689:7;3680:6;3669:9;3665:22;3646:51;:::i;:::-;3636:61;;;3744:2;3733:9;3729:18;3716:32;3706:42;;3795:2;3784:9;3780:18;3767:32;3757:42;;3851:3;3840:9;3836:19;3823:33;3900:4;3891:7;3887:18;3878:7;3875:31;3865:2;;3925:6;3917;3910:22;3865:2;3953:7;3943:17;;;3319:647;;;;;;;;:::o;3971:327::-;;;4100:2;4088:9;4079:7;4075:23;4071:32;4068:2;;;4121:6;4113;4106:22;4068:2;4165:9;4152:23;4184:33;4211:5;4184:33;:::i;:::-;4236:5;4288:2;4273:18;;;;4260:32;;-1:-1:-1;;;4058:240:1:o;4303:687::-;;;;4459:2;4447:9;4438:7;4434:23;4430:32;4427:2;;;4480:6;4472;4465:22;4427:2;4524:9;4511:23;4543:33;4570:5;4543:33;:::i;:::-;4595:5;-1:-1:-1;4647:2:1;4632:18;;4619:32;;-1:-1:-1;4702:2:1;4687:18;;4674:32;4729:18;4718:30;;4715:2;;;4766:6;4758;4751:22;4715:2;4794:22;;4847:4;4839:13;;4835:27;-1:-1:-1;4825:2:1;;4881:6;4873;4866:22;4825:2;4909:75;4976:7;4971:2;4958:16;4953:2;4949;4945:11;4909:75;:::i;:::-;4899:85;;;4417:573;;;;;:::o;4995:257::-;;5106:2;5094:9;5085:7;5081:23;5077:32;5074:2;;;5127:6;5119;5112:22;5074:2;5171:9;5158:23;5190:32;5216:5;5190:32;:::i;5257:261::-;;5379:2;5367:9;5358:7;5354:23;5350:32;5347:2;;;5400:6;5392;5385:22;5347:2;5437:9;5431:16;5456:32;5482:5;5456:32;:::i;5523:292::-;;5675:2;5663:9;5654:7;5650:23;5646:32;5643:2;;;5696:6;5688;5681:22;5643:2;5733:9;5727:16;5752:33;5779:5;5752:33;:::i;5820:190::-;;5932:2;5920:9;5911:7;5907:23;5903:32;5900:2;;;5953:6;5945;5938:22;5900:2;-1:-1:-1;5981:23:1;;5890:120;-1:-1:-1;5890:120:1:o;6015:259::-;;6096:5;6090:12;6123:6;6118:3;6111:19;6139:63;6195:6;6188:4;6183:3;6179:14;6172:4;6165:5;6161:16;6139:63;:::i;:::-;6256:2;6235:15;-1:-1:-1;;6231:29:1;6222:39;;;;6263:4;6218:50;;6066:208;-1:-1:-1;;6066:208:1:o;6279:274::-;;6446:6;6440:13;6462:53;6508:6;6503:3;6496:4;6488:6;6484:17;6462:53;:::i;:::-;6531:16;;;;;6416:137;-1:-1:-1;;6416:137:1:o;6558:415::-;;6753:6;6747:13;6769:53;6815:6;6810:3;6803:4;6795:6;6791:17;6769:53;:::i;:::-;6891:2;6887:15;;;;-1:-1:-1;;6883:53:1;6844:16;;;;6869:68;;;6964:2;6953:14;;6723:250;-1:-1:-1;;6723:250:1:o;6978:392::-;-1:-1:-1;;;7236:27:1;;7288:1;7279:11;;7272:27;;;;7324:2;7315:12;;7308:28;7361:2;7352:12;;7226:144::o;7375:203::-;-1:-1:-1;;;;;7539:32:1;;;;7521:51;;7509:2;7494:18;;7476:102::o;7583:433::-;-1:-1:-1;;;;;7840:15:1;;;7822:34;;7892:15;;7887:2;7872:18;;7865:43;7944:2;7939;7924:18;;7917:30;;;7583:433;;7964:46;;7991:18;;7983:6;7964:46;:::i;:::-;7956:54;7774:242;-1:-1:-1;;;;;7774:242:1:o;8021:490::-;-1:-1:-1;;;;;8290:15:1;;;8272:34;;8342:15;;8337:2;8322:18;;8315:43;8389:2;8374:18;;8367:34;;;8437:3;8432:2;8417:18;;8410:31;;;8021:490;;8458:47;;8485:19;;8477:6;8458:47;:::i;:::-;8450:55;8224:287;-1:-1:-1;;;;;;8224:287:1:o;8516:187::-;8681:14;;8674:22;8656:41;;8644:2;8629:18;;8611:92::o;8708:177::-;8854:25;;;8842:2;8827:18;;8809:76::o;8890:417::-;9121:25;;;9177:2;9162:18;;9155:34;;;;-1:-1:-1;;;;;9225:32:1;9220:2;9205:18;;9198:60;9289:2;9274:18;;9267:34;9108:3;9093:19;;9075:232::o;9312:398::-;9539:25;;;9612:4;9600:17;;;;9595:2;9580:18;;9573:45;9649:2;9634:18;;9627:34;9692:2;9677:18;;9670:34;9526:3;9511:19;;9493:217::o;9715:219::-;;9862:2;9851:9;9844:21;9882:46;9924:2;9913:9;9909:18;9901:6;9882:46;:::i;10165:407::-;10367:2;10349:21;;;10406:2;10386:18;;;10379:30;10445:34;10440:2;10425:18;;10418:62;-1:-1:-1;;;10511:2:1;10496:18;;10489:41;10562:3;10547:19;;10339:233::o;10577:414::-;10779:2;10761:21;;;10818:2;10798:18;;;10791:30;10857:34;10852:2;10837:18;;10830:62;-1:-1:-1;;;10923:2:1;10908:18;;10901:48;10981:3;10966:19;;10751:240::o;10996:402::-;11198:2;11180:21;;;11237:2;11217:18;;;11210:30;11276:34;11271:2;11256:18;;11249:62;-1:-1:-1;;;11342:2:1;11327:18;;11320:36;11388:3;11373:19;;11170:228::o;11403:352::-;11605:2;11587:21;;;11644:2;11624:18;;;11617:30;11683;11678:2;11663:18;;11656:58;11746:2;11731:18;;11577:178::o;11760:401::-;11962:2;11944:21;;;12001:2;11981:18;;;11974:30;12040:34;12035:2;12020:18;;12013:62;-1:-1:-1;;;12106:2:1;12091:18;;12084:35;12151:3;12136:19;;11934:227::o;12166:352::-;12368:2;12350:21;;;12407:2;12387:18;;;12380:30;12446;12441:2;12426:18;;12419:58;12509:2;12494:18;;12340:178::o;12523:400::-;12725:2;12707:21;;;12764:2;12744:18;;;12737:30;12803:34;12798:2;12783:18;;12776:62;-1:-1:-1;;;12869:2:1;12854:18;;12847:34;12913:3;12898:19;;12697:226::o;12928:349::-;13130:2;13112:21;;;13169:2;13149:18;;;13142:30;13208:27;13203:2;13188:18;;13181:55;13268:2;13253:18;;13102:175::o;13282:408::-;13484:2;13466:21;;;13523:2;13503:18;;;13496:30;13562:34;13557:2;13542:18;;13535:62;-1:-1:-1;;;13628:2:1;13613:18;;13606:42;13680:3;13665:19;;13456:234::o;13695:401::-;13897:2;13879:21;;;13936:2;13916:18;;;13909:30;13975:34;13970:2;13955:18;;13948:62;-1:-1:-1;;;14041:2:1;14026:18;;14019:35;14086:3;14071:19;;13869:227::o;14101:420::-;14303:2;14285:21;;;14342:2;14322:18;;;14315:30;14381:34;14376:2;14361:18;;14354:62;14452:26;14447:2;14432:18;;14425:54;14511:3;14496:19;;14275:246::o;14526:406::-;14728:2;14710:21;;;14767:2;14747:18;;;14740:30;14806:34;14801:2;14786:18;;14779:62;-1:-1:-1;;;14872:2:1;14857:18;;14850:40;14922:3;14907:19;;14700:232::o;14937:405::-;15139:2;15121:21;;;15178:2;15158:18;;;15151:30;15217:34;15212:2;15197:18;;15190:62;-1:-1:-1;;;15283:2:1;15268:18;;15261:39;15332:3;15317:19;;15111:231::o;15347:356::-;15549:2;15531:21;;;15568:18;;;15561:30;15627:34;15622:2;15607:18;;15600:62;15694:2;15679:18;;15521:182::o;15708:408::-;15910:2;15892:21;;;15949:2;15929:18;;;15922:30;15988:34;15983:2;15968:18;;15961:62;-1:-1:-1;;;16054:2:1;16039:18;;16032:42;16106:3;16091:19;;15882:234::o;16121:356::-;16323:2;16305:21;;;16342:18;;;16335:30;16401:34;16396:2;16381:18;;16374:62;16468:2;16453:18;;16295:182::o;16482:397::-;16684:2;16666:21;;;16723:2;16703:18;;;16696:30;16762:34;16757:2;16742:18;;16735:62;-1:-1:-1;;;16828:2:1;16813:18;;16806:31;16869:3;16854:19;;16656:223::o;16884:397::-;17086:2;17068:21;;;17125:2;17105:18;;;17098:30;17164:34;17159:2;17144:18;;17137:62;-1:-1:-1;;;17230:2:1;17215:18;;17208:31;17271:3;17256:19;;17058:223::o;17286:413::-;17488:2;17470:21;;;17527:2;17507:18;;;17500:30;17566:34;17561:2;17546:18;;17539:62;-1:-1:-1;;;17632:2:1;17617:18;;17610:47;17689:3;17674:19;;17460:239::o;17704:408::-;17906:2;17888:21;;;17945:2;17925:18;;;17918:30;17984:34;17979:2;17964:18;;17957:62;-1:-1:-1;;;18050:2:1;18035:18;;18028:42;18102:3;18087:19;;17878:234::o;18299:128::-;;18370:1;18366:6;18363:1;18360:13;18357:2;;;18376:18;;:::i;:::-;-1:-1:-1;18412:9:1;;18347:80::o;18432:125::-;;18500:1;18497;18494:8;18491:2;;;18505:18;;:::i;:::-;-1:-1:-1;18542:9:1;;18481:76::o;18562:258::-;18634:1;18644:113;18658:6;18655:1;18652:13;18644:113;;;18734:11;;;18728:18;18715:11;;;18708:39;18680:2;18673:10;18644:113;;;18775:6;18772:1;18769:13;18766:2;;;-1:-1:-1;;18810:1:1;18792:16;;18785:27;18615:205::o;18825:380::-;18910:1;18900:12;;18957:1;18947:12;;;18968:2;;19022:4;19014:6;19010:17;19000:27;;18968:2;19075;19067:6;19064:14;19044:18;19041:38;19038:2;;;19121:10;19116:3;19112:20;19109:1;19102:31;19156:4;19153:1;19146:15;19184:4;19181:1;19174:15;19038:2;;18880:325;;;:::o;19210:127::-;19271:10;19266:3;19262:20;19259:1;19252:31;19302:4;19299:1;19292:15;19326:4;19323:1;19316:15;19342:127;19403:10;19398:3;19394:20;19391:1;19384:31;19434:4;19431:1;19424:15;19458:4;19455:1;19448:15;19474:133;-1:-1:-1;;;;;19551:31:1;;19541:42;;19531:2;;19597:1;19594;19587:12;19612:133;-1:-1:-1;;;;;;19688:32:1;;19678:43;;19668:2;;19735:1;19732;19725:12
Swarm Source
ipfs://560a28464b976e7eeb1ea6490e6fefcd0e924d234d52f3221c49a598406a9c0d
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.