ERC-721
NFT
Overview
Max Total Supply
153 Nyx Genesis Collection
Holders
55
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
27 Nyx Genesis CollectionLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
NyxGenesisCollection
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-25 */ /* ________ ___ ___ ___ ___ |\ ___ \ |\ \ / /|\ \ / /| \ \ \\ \ \ \ \ \/ / | \ \/ / / \ \ \\ \ \ \ \ / / \ \ / / \ \ \\ \ \ \/ / / / \/ \ \__\\ \__\__/ / / / /\ \ \|__| \|__|\___/ / /__/ /\ __\ \|___|/ |__|/ \|__| _______ ________ ________ ___ ___ ___ ________ ___ ________ ________ |\ ___ \ |\ __ \|\ __ \|\ \ |\ \ / /| |\ __ \|\ \|\ __ \|\ ___ \ \ \ __/|\ \ \|\ \ \ \|\ \ \ \ \ \ \/ / / \ \ \|\ /\ \ \ \ \|\ \ \ \_|\ \ \ \ \_|/_\ \ __ \ \ _ _\ \ \ \ \ / / \ \ __ \ \ \ \ _ _\ \ \ \\ \ \ \ \_|\ \ \ \ \ \ \ \\ \\ \ \____ \/ / / \ \ \|\ \ \ \ \ \\ \\ \ \_\\ \ \ \_______\ \__\ \__\ \__\\ _\\ \_______\__/ / / \ \_______\ \__\ \__\\ _\\ \_______\ \|_______|\|__|\|__|\|__|\|__|\|_______|\___/ / \|_______|\|__|\|__|\|__|\|_______| \|___|/ ________ ________ ___ ___ _______ ________ _________ ___ ________ ________ |\ ____\|\ __ \|\ \ |\ \ |\ ___ \ |\ ____\\___ ___\\ \|\ __ \|\ ___ \ \ \ \___|\ \ \|\ \ \ \ \ \ \ \ \ __/|\ \ \___\|___ \ \_\ \ \ \ \|\ \ \ \\ \ \ \ \ \ \ \ \\\ \ \ \ \ \ \ \ \ \_|/_\ \ \ \ \ \ \ \ \ \ \\\ \ \ \\ \ \ \ \ \____\ \ \\\ \ \ \____\ \ \____\ \ \_|\ \ \ \____ \ \ \ \ \ \ \ \\\ \ \ \\ \ \ \ \_______\ \_______\ \_______\ \_______\ \_______\ \_______\ \ \__\ \ \__\ \_______\ \__\\ \__\ \|_______|\|_______|\|_______|\|_______|\|_______|\|_______| \|__| \|__|\|_______|\|__| \|__| */ // File: @openzeppelin/contracts/utils/Counters.sol pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol 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 overriden 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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public 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 || getApproved(tokenId) == spender || isApprovedForAll(owner, 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); } /** * @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); } /** * @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 of token that is not own"); 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); } /** * @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 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 {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File: @openzeppelin/contracts/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: nyx.sol pragma solidity ^0.8.2; contract NyxGenesisCollection is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable { using Counters for Counters.Counter; string public baseURI; Counters.Counter private _tokenIdCounter; constructor(uint256 amount, string memory uri, address _mintDestination) ERC721("NYXG", "Nyx Genesis Collection") { /** set base uri */ baseURI = uri; for (uint i = 0; i < amount; i++) { safeMint(_mintDestination, Strings.toString(i)); } } function continueMint(uint256 amount, address _mintDestination) public onlyOwner{ for (uint i = 0; i < amount; i++) { safeMint(_mintDestination, Strings.toString(i)); } } function _baseURI() override internal view virtual returns (string memory) { return baseURI; } function _changeBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function safeMint(address to, string memory uri) public onlyOwner { uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(to, tokenId); _setTokenURI(tokenId, uri); } // The following functions are overrides required by Solidity. function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"address","name":"_mintDestination","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"_changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_mintDestination","type":"address"}],"name":"continueMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"to","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"name":"safeMint","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
60806040523480156200001157600080fd5b5060405162002c9b38038062002c9b833981016040819052620000349162000b13565b60408051808201825260048152634e59584760e01b60208083019182528351808501909452601684527f4e79782047656e6573697320436f6c6c656374696f6e00000000000000000000908401528151919291620000959160009162000a07565b508051620000ab90600190602084019062000a07565b505050620000c8620000c26200012a60201b60201c565b6200012e565b8151620000dd90600c90602085019062000a07565b5060005b8381101562000120576200010b8262000105836200018060201b62000b451760201c565b6200029d565b80620001178162000c00565b915050620000e1565b5050505062000ddb565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606081620001a55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115620001d55780620001bc8162000c00565b9150620001cd9050600a8362000c34565b9150620001a9565b6000816001600160401b03811115620001f257620001f262000aad565b6040519080825280601f01601f1916602001820160405280156200021d576020820181803683370190505b5090505b841562000295576200023560018362000c4b565b915062000244600a8662000c65565b6200025190603062000c7c565b60f81b81838151811062000269576200026962000c97565b60200101906001600160f81b031916908160001a9053506200028d600a8662000c34565b945062000221565b949350505050565b600b546001600160a01b03163314620002fd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600062000316600d6200034c60201b62000c4a1760201c565b90506200032f600d6200035060201b62000c4e1760201c565b6200033b838262000359565b6200034781836200037f565b505050565b5490565b80546001019055565b6200037b8282604051806020016040528060008152506200041d60201b60201c565b5050565b6000828152600260205260409020546001600160a01b0316620003fc5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401620002f4565b6000828152600a602090815260409091208251620003479284019062000a07565b62000429838362000457565b620004386000848484620005ad565b620003475760405162461bcd60e51b8152600401620002f49062000cad565b6001600160a01b038216620004af5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620002f4565b6000818152600260205260409020546001600160a01b031615620005165760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620002f4565b6200052460008383620006cc565b6001600160a01b03821660009081526003602052604081208054600192906200054f90849062000c7c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620005ce846001600160a01b0316620006e460201b62000c571760201c565b15620006c157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200060890339089908890889060040162000cff565b6020604051808303816000875af192505050801562000646575060408051601f3d908101601f19168201909252620006439181019062000d55565b60015b620006a6573d80801562000677576040519150601f19603f3d011682016040523d82523d6000602084013e6200067c565b606091505b5080516200069e5760405162461bcd60e51b8152600401620002f49062000cad565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000295565b506001949350505050565b62000347838383620006ea60201b62000c5d1760201c565b3b151590565b620007028383836200034760201b620005171760201c565b6001600160a01b03831662000760576200075a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000786565b816001600160a01b0316836001600160a01b0316146200078657620007868382620007c6565b6001600160a01b038216620007a057620003478162000873565b826001600160a01b0316826001600160a01b03161462000347576200034782826200092d565b60006001620007e0846200097e60201b620007ef1760201c565b620007ec919062000c4b565b60008381526007602052604090205490915080821462000840576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620008879060019062000c4b565b60008381526009602052604081205460088054939450909284908110620008b257620008b262000c97565b906000526020600020015490508060088381548110620008d657620008d662000c97565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000911576200091162000d88565b6001900381819060005260206000200160009055905550505050565b600062000945836200097e60201b620007ef1760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620009eb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620002f4565b506001600160a01b031660009081526003602052604090205490565b82805462000a159062000d9e565b90600052602060002090601f01602090048101928262000a39576000855562000a84565b82601f1062000a5457805160ff191683800117855562000a84565b8280016001018555821562000a84579182015b8281111562000a8457825182559160200191906001019062000a67565b5062000a9292915062000a96565b5090565b5b8082111562000a92576000815560010162000a97565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000ae057818101518382015260200162000ac6565b8381111562000af0576000848401525b50505050565b80516001600160a01b038116811462000b0e57600080fd5b919050565b60008060006060848603121562000b2957600080fd5b835160208501519093506001600160401b038082111562000b4957600080fd5b818601915086601f83011262000b5e57600080fd5b81518181111562000b735762000b7362000aad565b604051601f8201601f19908116603f0116810190838211818310171562000b9e5762000b9e62000aad565b8160405282815289602084870101111562000bb857600080fd5b62000bcb83602083016020880162000ac3565b809650505050505062000be16040850162000af6565b90509250925092565b634e487b7160e01b600052601160045260246000fd5b600060001982141562000c175762000c1762000bea565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008262000c465762000c4662000c1e565b500490565b60008282101562000c605762000c6062000bea565b500390565b60008262000c775762000c7762000c1e565b500690565b6000821982111562000c925762000c9262000bea565b500190565b634e487b7160e01b600052603260045260246000fd5b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000d3e8160a085016020870162000ac3565b601f01601f19169190910160a00195945050505050565b60006020828403121562000d6857600080fd5b81516001600160e01b03198116811462000d8157600080fd5b9392505050565b634e487b7160e01b600052603160045260246000fd5b600181811c9082168062000db357607f821691505b6020821081141562000dd557634e487b7160e01b600052602260045260246000fd5b50919050565b611eb08062000deb6000396000f3fe608060405234801561001057600080fd5b506004361061011d5760003560e01c806301ffc9a71461012257806306fdde031461014a578063081812fc1461015f578063095ea7b31461018a57806318160ddd1461019f57806323b872dd146101b15780632f745c59146101c45780633ee6a1fe146101d757806342842e0e146101ea5780634f6ccce7146101fd5780636352211e146102105780636c0360eb1461022357806370a082311461022b578063715018a61461023e5780638da5cb5b1461024657806395d89b411461024e578063a22cb46514610256578063b88d4fde14610269578063c87b56dd1461027c578063d128321a1461028f578063d204c45e146102a2578063e985e9c5146102b5578063f2fde38b146102c8575b600080fd5b61013561013036600461187d565b6102db565b60405190151581526020015b60405180910390f35b6101526102ec565b60405161014191906118f2565b61017261016d366004611905565b61037e565b6040516001600160a01b039091168152602001610141565b61019d61019836600461193a565b61040b565b005b6008545b604051908152602001610141565b61019d6101bf366004611964565b61051c565b6101a36101d236600461193a565b61054d565b61019d6101e53660046119a0565b6105e3565b61019d6101f8366004611964565b61063c565b6101a361020b366004611905565b610657565b61017261021e366004611905565b6106ea565b610152610761565b6101a36102393660046119cc565b6107ef565b61019d610876565b6101726108b1565b6101526108c0565b61019d6102643660046119e7565b6108cf565b61019d610277366004611aae565b610990565b61015261028a366004611905565b6109c8565b61019d61029d366004611b49565b6109d3565b61019d6102b0366004611b7d565b610a19565b6101356102c3366004611bca565b610a77565b61019d6102d63660046119cc565b610aa5565b60006102e682610d15565b92915050565b6060600080546102fb90611bf4565b80601f016020809104026020016040519081016040528092919081815260200182805461032790611bf4565b80156103745780601f1061034957610100808354040283529160200191610374565b820191906000526020600020905b81548152906001019060200180831161035757829003601f168201915b5050505050905090565b600061038982610d3a565b6103ef5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610416826106ea565b9050806001600160a01b0316836001600160a01b031614156104845760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016103e6565b336001600160a01b03821614806104a057506104a08133610a77565b61050d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016103e6565b6105178383610d57565b505050565b6105263382610dc5565b6105425760405162461bcd60e51b81526004016103e690611c2f565b610517838383610e87565b6000610558836107ef565b82106105ba5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016103e6565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b336105ec6108b1565b6001600160a01b0316146106125760405162461bcd60e51b81526004016103e690611c80565b60005b828110156105175761062a826102b083610b45565b8061063481611ccb565b915050610615565b61051783838360405180602001604052806000815250610990565b600061066260085490565b82106106c55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016103e6565b600882815481106106d8576106d8611ce6565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806102e65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016103e6565b600c805461076e90611bf4565b80601f016020809104026020016040519081016040528092919081815260200182805461079a90611bf4565b80156107e75780601f106107bc576101008083540402835291602001916107e7565b820191906000526020600020905b8154815290600101906020018083116107ca57829003601f168201915b505050505081565b60006001600160a01b03821661085a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016103e6565b506001600160a01b031660009081526003602052604090205490565b3361087f6108b1565b6001600160a01b0316146108a55760405162461bcd60e51b81526004016103e690611c80565b6108af6000611020565b565b600b546001600160a01b031690565b6060600180546102fb90611bf4565b6001600160a01b0382163314156109245760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016103e6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61099a3383610dc5565b6109b65760405162461bcd60e51b81526004016103e690611c2f565b6109c284848484611072565b50505050565b60606102e6826110a5565b336109dc6108b1565b6001600160a01b031614610a025760405162461bcd60e51b81526004016103e690611c80565b8051610a1590600c9060208401906117ce565b5050565b33610a226108b1565b6001600160a01b031614610a485760405162461bcd60e51b81526004016103e690611c80565b6000610a53600d5490565b9050610a63600d80546001019055565b610a6d8382611207565b6105178183611221565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b33610aae6108b1565b6001600160a01b031614610ad45760405162461bcd60e51b81526004016103e690611c80565b6001600160a01b038116610b395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103e6565b610b4281611020565b50565b606081610b695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610b935780610b7d81611ccb565b9150610b8c9050600a83611d12565b9150610b6d565b6000816001600160401b03811115610bad57610bad611a23565b6040519080825280601f01601f191660200182016040528015610bd7576020820181803683370190505b5090505b8415610c4257610bec600183611d26565b9150610bf9600a86611d3d565b610c04906030611d51565b60f81b818381518110610c1957610c19611ce6565b60200101906001600160f81b031916908160001a905350610c3b600a86611d12565b9450610bdb565b949350505050565b5490565b80546001019055565b3b151590565b6001600160a01b038316610cb857610cb381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b610cdb565b816001600160a01b0316836001600160a01b031614610cdb57610cdb83826112ac565b6001600160a01b038216610cf25761051781611349565b826001600160a01b0316826001600160a01b0316146105175761051782826113f8565b60006001600160e01b0319821663780e9d6360e01b14806102e657506102e68261143c565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d8c826106ea565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610dd082610d3a565b610e315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103e6565b6000610e3c836106ea565b9050806001600160a01b0316846001600160a01b03161480610e775750836001600160a01b0316610e6c8461037e565b6001600160a01b0316145b80610c425750610c428185610a77565b826001600160a01b0316610e9a826106ea565b6001600160a01b031614610f025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016103e6565b6001600160a01b038216610f645760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103e6565b610f6f83838361148c565b610f7a600082610d57565b6001600160a01b0383166000908152600360205260408120805460019290610fa3908490611d26565b90915550506001600160a01b0382166000908152600360205260408120805460019290610fd1908490611d51565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020611e5b83398151915291a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61107d848484610e87565b61108984848484611497565b6109c25760405162461bcd60e51b81526004016103e690611d69565b60606110b082610d3a565b6111165760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016103e6565b6000828152600a60205260408120805461112f90611bf4565b80601f016020809104026020016040519081016040528092919081815260200182805461115b90611bf4565b80156111a85780601f1061117d576101008083540402835291602001916111a8565b820191906000526020600020905b81548152906001019060200180831161118b57829003601f168201915b5050505050905060006111b9611595565b90508051600014156111cc575092915050565b8151156111fe5780826040516020016111e6929190611dbb565b60405160208183030381529060405292505050919050565b610c42846115a4565b610a1582826040518060200160405280600081525061166f565b61122a82610d3a565b61128d5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016103e6565b6000828152600a602090815260409091208251610517928401906117ce565b600060016112b9846107ef565b6112c39190611d26565b600083815260076020526040902054909150808214611316576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061135b90600190611d26565b6000838152600960205260408120546008805493945090928490811061138357611383611ce6565b9060005260206000200154905080600883815481106113a4576113a4611ce6565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806113dc576113dc611dea565b6001900381819060005260206000200160009055905550505050565b6000611403836107ef565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160e01b031982166380ac58cd60e01b148061146d57506001600160e01b03198216635b5e139f60e01b145b806102e657506301ffc9a760e01b6001600160e01b03198316146102e6565b610517838383610c5d565b60006001600160a01b0384163b1561158a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114db903390899088908890600401611e00565b6020604051808303816000875af1925050508015611516575060408051601f3d908101601f1916820190925261151391810190611e3d565b60015b611570573d808015611544576040519150601f19603f3d011682016040523d82523d6000602084013e611549565b606091505b5080516115685760405162461bcd60e51b81526004016103e690611d69565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c42565b506001949350505050565b6060600c80546102fb90611bf4565b60606115af82610d3a565b6116135760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016103e6565b600061161d611595565b9050600081511161163d5760405180602001604052806000815250611668565b8061164784610b45565b604051602001611658929190611dbb565b6040516020818303038152906040525b9392505050565b61167983836116a2565b6116866000848484611497565b6105175760405162461bcd60e51b81526004016103e690611d69565b6001600160a01b0382166116f85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016103e6565b61170181610d3a565b1561174d5760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016103e6565b6117596000838361148c565b6001600160a01b0382166000908152600360205260408120805460019290611782908490611d51565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020611e5b833981519152908290a45050565b8280546117da90611bf4565b90600052602060002090601f0160209004810192826117fc5760008555611842565b82601f1061181557805160ff1916838001178555611842565b82800160010185558215611842579182015b82811115611842578251825591602001919060010190611827565b5061184e929150611852565b5090565b5b8082111561184e5760008155600101611853565b6001600160e01b031981168114610b4257600080fd5b60006020828403121561188f57600080fd5b813561166881611867565b60005b838110156118b557818101518382015260200161189d565b838111156109c25750506000910152565b600081518084526118de81602086016020860161189a565b601f01601f19169290920160200192915050565b60208152600061166860208301846118c6565b60006020828403121561191757600080fd5b5035919050565b80356001600160a01b038116811461193557600080fd5b919050565b6000806040838503121561194d57600080fd5b6119568361191e565b946020939093013593505050565b60008060006060848603121561197957600080fd5b6119828461191e565b92506119906020850161191e565b9150604084013590509250925092565b600080604083850312156119b357600080fd5b823591506119c36020840161191e565b90509250929050565b6000602082840312156119de57600080fd5b6116688261191e565b600080604083850312156119fa57600080fd5b611a038361191e565b915060208301358015158114611a1857600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611a5357611a53611a23565b604051601f8501601f19908116603f01168101908282118183101715611a7b57611a7b611a23565b81604052809350858152868686011115611a9457600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215611ac457600080fd5b611acd8561191e565b9350611adb6020860161191e565b92506040850135915060608501356001600160401b03811115611afd57600080fd5b8501601f81018713611b0e57600080fd5b611b1d87823560208401611a39565b91505092959194509250565b600082601f830112611b3a57600080fd5b61166883833560208501611a39565b600060208284031215611b5b57600080fd5b81356001600160401b03811115611b7157600080fd5b610c4284828501611b29565b60008060408385031215611b9057600080fd5b611b998361191e565b915060208301356001600160401b03811115611bb457600080fd5b611bc085828601611b29565b9150509250929050565b60008060408385031215611bdd57600080fd5b611be68361191e565b91506119c36020840161191e565b600181811c90821680611c0857607f821691505b60208210811415611c2957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415611cdf57611cdf611cb5565b5060010190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b600082611d2157611d21611cfc565b500490565b600082821015611d3857611d38611cb5565b500390565b600082611d4c57611d4c611cfc565b500690565b60008219821115611d6457611d64611cb5565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351611dcd81846020880161189a565b835190830190611de181836020880161189a565b01949350505050565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e33908301846118c6565b9695505050505050565b600060208284031215611e4f57600080fd5b81516116688161186756feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212202ade67dc5c9486073e86d6f6d448dbe885ab0dfdde54cece25e5c42780600ad764736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000009900000000000000000000000000000000000000000000000000000000000000600000000000000000000000007a5bbc4a4d3c39a8d76a31b4921d590f8bf16bf1000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e796d3743477868786765366943725a6137725835635148374e6672536f6d42587479656b6a3553397568772f000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061011d5760003560e01c806301ffc9a71461012257806306fdde031461014a578063081812fc1461015f578063095ea7b31461018a57806318160ddd1461019f57806323b872dd146101b15780632f745c59146101c45780633ee6a1fe146101d757806342842e0e146101ea5780634f6ccce7146101fd5780636352211e146102105780636c0360eb1461022357806370a082311461022b578063715018a61461023e5780638da5cb5b1461024657806395d89b411461024e578063a22cb46514610256578063b88d4fde14610269578063c87b56dd1461027c578063d128321a1461028f578063d204c45e146102a2578063e985e9c5146102b5578063f2fde38b146102c8575b600080fd5b61013561013036600461187d565b6102db565b60405190151581526020015b60405180910390f35b6101526102ec565b60405161014191906118f2565b61017261016d366004611905565b61037e565b6040516001600160a01b039091168152602001610141565b61019d61019836600461193a565b61040b565b005b6008545b604051908152602001610141565b61019d6101bf366004611964565b61051c565b6101a36101d236600461193a565b61054d565b61019d6101e53660046119a0565b6105e3565b61019d6101f8366004611964565b61063c565b6101a361020b366004611905565b610657565b61017261021e366004611905565b6106ea565b610152610761565b6101a36102393660046119cc565b6107ef565b61019d610876565b6101726108b1565b6101526108c0565b61019d6102643660046119e7565b6108cf565b61019d610277366004611aae565b610990565b61015261028a366004611905565b6109c8565b61019d61029d366004611b49565b6109d3565b61019d6102b0366004611b7d565b610a19565b6101356102c3366004611bca565b610a77565b61019d6102d63660046119cc565b610aa5565b60006102e682610d15565b92915050565b6060600080546102fb90611bf4565b80601f016020809104026020016040519081016040528092919081815260200182805461032790611bf4565b80156103745780601f1061034957610100808354040283529160200191610374565b820191906000526020600020905b81548152906001019060200180831161035757829003601f168201915b5050505050905090565b600061038982610d3a565b6103ef5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610416826106ea565b9050806001600160a01b0316836001600160a01b031614156104845760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016103e6565b336001600160a01b03821614806104a057506104a08133610a77565b61050d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016103e6565b6105178383610d57565b505050565b6105263382610dc5565b6105425760405162461bcd60e51b81526004016103e690611c2f565b610517838383610e87565b6000610558836107ef565b82106105ba5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016103e6565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b336105ec6108b1565b6001600160a01b0316146106125760405162461bcd60e51b81526004016103e690611c80565b60005b828110156105175761062a826102b083610b45565b8061063481611ccb565b915050610615565b61051783838360405180602001604052806000815250610990565b600061066260085490565b82106106c55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016103e6565b600882815481106106d8576106d8611ce6565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806102e65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016103e6565b600c805461076e90611bf4565b80601f016020809104026020016040519081016040528092919081815260200182805461079a90611bf4565b80156107e75780601f106107bc576101008083540402835291602001916107e7565b820191906000526020600020905b8154815290600101906020018083116107ca57829003601f168201915b505050505081565b60006001600160a01b03821661085a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016103e6565b506001600160a01b031660009081526003602052604090205490565b3361087f6108b1565b6001600160a01b0316146108a55760405162461bcd60e51b81526004016103e690611c80565b6108af6000611020565b565b600b546001600160a01b031690565b6060600180546102fb90611bf4565b6001600160a01b0382163314156109245760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016103e6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61099a3383610dc5565b6109b65760405162461bcd60e51b81526004016103e690611c2f565b6109c284848484611072565b50505050565b60606102e6826110a5565b336109dc6108b1565b6001600160a01b031614610a025760405162461bcd60e51b81526004016103e690611c80565b8051610a1590600c9060208401906117ce565b5050565b33610a226108b1565b6001600160a01b031614610a485760405162461bcd60e51b81526004016103e690611c80565b6000610a53600d5490565b9050610a63600d80546001019055565b610a6d8382611207565b6105178183611221565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b33610aae6108b1565b6001600160a01b031614610ad45760405162461bcd60e51b81526004016103e690611c80565b6001600160a01b038116610b395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103e6565b610b4281611020565b50565b606081610b695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610b935780610b7d81611ccb565b9150610b8c9050600a83611d12565b9150610b6d565b6000816001600160401b03811115610bad57610bad611a23565b6040519080825280601f01601f191660200182016040528015610bd7576020820181803683370190505b5090505b8415610c4257610bec600183611d26565b9150610bf9600a86611d3d565b610c04906030611d51565b60f81b818381518110610c1957610c19611ce6565b60200101906001600160f81b031916908160001a905350610c3b600a86611d12565b9450610bdb565b949350505050565b5490565b80546001019055565b3b151590565b6001600160a01b038316610cb857610cb381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b610cdb565b816001600160a01b0316836001600160a01b031614610cdb57610cdb83826112ac565b6001600160a01b038216610cf25761051781611349565b826001600160a01b0316826001600160a01b0316146105175761051782826113f8565b60006001600160e01b0319821663780e9d6360e01b14806102e657506102e68261143c565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d8c826106ea565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610dd082610d3a565b610e315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103e6565b6000610e3c836106ea565b9050806001600160a01b0316846001600160a01b03161480610e775750836001600160a01b0316610e6c8461037e565b6001600160a01b0316145b80610c425750610c428185610a77565b826001600160a01b0316610e9a826106ea565b6001600160a01b031614610f025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016103e6565b6001600160a01b038216610f645760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103e6565b610f6f83838361148c565b610f7a600082610d57565b6001600160a01b0383166000908152600360205260408120805460019290610fa3908490611d26565b90915550506001600160a01b0382166000908152600360205260408120805460019290610fd1908490611d51565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020611e5b83398151915291a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61107d848484610e87565b61108984848484611497565b6109c25760405162461bcd60e51b81526004016103e690611d69565b60606110b082610d3a565b6111165760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016103e6565b6000828152600a60205260408120805461112f90611bf4565b80601f016020809104026020016040519081016040528092919081815260200182805461115b90611bf4565b80156111a85780601f1061117d576101008083540402835291602001916111a8565b820191906000526020600020905b81548152906001019060200180831161118b57829003601f168201915b5050505050905060006111b9611595565b90508051600014156111cc575092915050565b8151156111fe5780826040516020016111e6929190611dbb565b60405160208183030381529060405292505050919050565b610c42846115a4565b610a1582826040518060200160405280600081525061166f565b61122a82610d3a565b61128d5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016103e6565b6000828152600a602090815260409091208251610517928401906117ce565b600060016112b9846107ef565b6112c39190611d26565b600083815260076020526040902054909150808214611316576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061135b90600190611d26565b6000838152600960205260408120546008805493945090928490811061138357611383611ce6565b9060005260206000200154905080600883815481106113a4576113a4611ce6565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806113dc576113dc611dea565b6001900381819060005260206000200160009055905550505050565b6000611403836107ef565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160e01b031982166380ac58cd60e01b148061146d57506001600160e01b03198216635b5e139f60e01b145b806102e657506301ffc9a760e01b6001600160e01b03198316146102e6565b610517838383610c5d565b60006001600160a01b0384163b1561158a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114db903390899088908890600401611e00565b6020604051808303816000875af1925050508015611516575060408051601f3d908101601f1916820190925261151391810190611e3d565b60015b611570573d808015611544576040519150601f19603f3d011682016040523d82523d6000602084013e611549565b606091505b5080516115685760405162461bcd60e51b81526004016103e690611d69565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c42565b506001949350505050565b6060600c80546102fb90611bf4565b60606115af82610d3a565b6116135760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016103e6565b600061161d611595565b9050600081511161163d5760405180602001604052806000815250611668565b8061164784610b45565b604051602001611658929190611dbb565b6040516020818303038152906040525b9392505050565b61167983836116a2565b6116866000848484611497565b6105175760405162461bcd60e51b81526004016103e690611d69565b6001600160a01b0382166116f85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016103e6565b61170181610d3a565b1561174d5760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016103e6565b6117596000838361148c565b6001600160a01b0382166000908152600360205260408120805460019290611782908490611d51565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020611e5b833981519152908290a45050565b8280546117da90611bf4565b90600052602060002090601f0160209004810192826117fc5760008555611842565b82601f1061181557805160ff1916838001178555611842565b82800160010185558215611842579182015b82811115611842578251825591602001919060010190611827565b5061184e929150611852565b5090565b5b8082111561184e5760008155600101611853565b6001600160e01b031981168114610b4257600080fd5b60006020828403121561188f57600080fd5b813561166881611867565b60005b838110156118b557818101518382015260200161189d565b838111156109c25750506000910152565b600081518084526118de81602086016020860161189a565b601f01601f19169290920160200192915050565b60208152600061166860208301846118c6565b60006020828403121561191757600080fd5b5035919050565b80356001600160a01b038116811461193557600080fd5b919050565b6000806040838503121561194d57600080fd5b6119568361191e565b946020939093013593505050565b60008060006060848603121561197957600080fd5b6119828461191e565b92506119906020850161191e565b9150604084013590509250925092565b600080604083850312156119b357600080fd5b823591506119c36020840161191e565b90509250929050565b6000602082840312156119de57600080fd5b6116688261191e565b600080604083850312156119fa57600080fd5b611a038361191e565b915060208301358015158114611a1857600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611a5357611a53611a23565b604051601f8501601f19908116603f01168101908282118183101715611a7b57611a7b611a23565b81604052809350858152868686011115611a9457600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215611ac457600080fd5b611acd8561191e565b9350611adb6020860161191e565b92506040850135915060608501356001600160401b03811115611afd57600080fd5b8501601f81018713611b0e57600080fd5b611b1d87823560208401611a39565b91505092959194509250565b600082601f830112611b3a57600080fd5b61166883833560208501611a39565b600060208284031215611b5b57600080fd5b81356001600160401b03811115611b7157600080fd5b610c4284828501611b29565b60008060408385031215611b9057600080fd5b611b998361191e565b915060208301356001600160401b03811115611bb457600080fd5b611bc085828601611b29565b9150509250929050565b60008060408385031215611bdd57600080fd5b611be68361191e565b91506119c36020840161191e565b600181811c90821680611c0857607f821691505b60208210811415611c2957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415611cdf57611cdf611cb5565b5060010190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b600082611d2157611d21611cfc565b500490565b600082821015611d3857611d38611cb5565b500390565b600082611d4c57611d4c611cfc565b500690565b60008219821115611d6457611d64611cb5565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351611dcd81846020880161189a565b835190830190611de181836020880161189a565b01949350505050565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e33908301846118c6565b9695505050505050565b600060208284031215611e4f57600080fd5b81516116688161186756feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212202ade67dc5c9486073e86d6f6d448dbe885ab0dfdde54cece25e5c42780600ad764736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000009900000000000000000000000000000000000000000000000000000000000000600000000000000000000000007a5bbc4a4d3c39a8d76a31b4921d590f8bf16bf1000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e796d3743477868786765366943725a6137725835635148374e6672536f6d42587479656b6a3553397568772f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : amount (uint256): 153
Arg [1] : uri (string): https://gateway.pinata.cloud/ipfs/QmNym7CGxhxge6iCrZa7rX5cQH7NfrSomBXtyekj5S9uhw/
Arg [2] : _mintDestination (address): 0x7A5Bbc4a4d3C39a8D76A31b4921d590f8Bf16bF1
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000099
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000007a5bbc4a4d3c39a8d76a31b4921d590f8bf16bf1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [4] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [5] : 732f516d4e796d3743477868786765366943725a6137725835635148374e6672
Arg [6] : 536f6d42587479656b6a3553397568772f000000000000000000000000000000
Deployed Bytecode Sourcemap
49457:2014:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51256:212;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;51256:212:0;;;;;;;;29135:100;;;:::i;:::-;;;;;;;:::i;30694:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;30694:221:0;1528:203:1;30217:411:0;;;;;;:::i;:::-;;:::i;:::-;;43888:113;43976:10;:17;43888:113;;;2319:25:1;;;2307:2;2292:18;43888:113:0;2173:177:1;31584:339:0;;;;;;:::i;:::-;;:::i;43556:256::-;;;;;;:::i;:::-;;:::i;49973:206::-;;;;;;:::i;:::-;;:::i;31994:185::-;;;;;;:::i;:::-;;:::i;44078:233::-;;;;;;:::i;:::-;;:::i;28829:239::-;;;;;;:::i;:::-;;:::i;49591:21::-;;;:::i;28559:208::-;;;;;;:::i;:::-;;:::i;8834:94::-;;;:::i;8183:87::-;;;:::i;29304:104::-;;;:::i;30987:295::-;;;;;;:::i;:::-;;:::i;32250:328::-;;;;;;:::i;:::-;;:::i;51052:196::-;;;;;;:::i;:::-;;:::i;50303:92::-;;;;;;:::i;:::-;;:::i;50403:236::-;;;;;;:::i;:::-;;:::i;31353:164::-;;;;;;:::i;:::-;;:::i;9083:192::-;;;;;;:::i;:::-;;:::i;51256:212::-;51395:4;51424:36;51448:11;51424:23;:36::i;:::-;51417:43;51256:212;-1:-1:-1;;51256:212:0:o;29135:100::-;29189:13;29222:5;29215:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29135:100;:::o;30694:221::-;30770:7;30798:16;30806:7;30798;:16::i;:::-;30790:73;;;;-1:-1:-1;;;30790:73:0;;6735:2:1;30790:73:0;;;6717:21:1;6774:2;6754:18;;;6747:30;6813:34;6793:18;;;6786:62;-1:-1:-1;;;6864:18:1;;;6857:42;6916:19;;30790:73:0;;;;;;;;;-1:-1:-1;30883:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30883:24:0;;30694:221::o;30217:411::-;30298:13;30314:23;30329:7;30314:14;:23::i;:::-;30298:39;;30362:5;-1:-1:-1;;;;;30356:11:0;:2;-1:-1:-1;;;;;30356:11:0;;;30348:57;;;;-1:-1:-1;;;30348:57:0;;7148:2:1;30348:57:0;;;7130:21:1;7187:2;7167:18;;;7160:30;7226:34;7206:18;;;7199:62;-1:-1:-1;;;7277:18:1;;;7270:31;7318:19;;30348:57:0;6946:397:1;30348:57:0;7051:10;-1:-1:-1;;;;;30440:21:0;;;;:62;;-1:-1:-1;30465:37:0;30482:5;7051:10;31353:164;:::i;30465:37::-;30418:168;;;;-1:-1:-1;;;30418:168:0;;7550:2:1;30418:168:0;;;7532:21:1;7589:2;7569:18;;;7562:30;7628:34;7608:18;;;7601:62;-1:-1:-1;;;7679:18:1;;;7672:54;7743:19;;30418:168:0;7348:420:1;30418:168:0;30599:21;30608:2;30612:7;30599:8;:21::i;:::-;30287:341;30217:411;;:::o;31584:339::-;31779:41;7051:10;31812:7;31779:18;:41::i;:::-;31771:103;;;;-1:-1:-1;;;31771:103:0;;;;;;;:::i;:::-;31887:28;31897:4;31903:2;31907:7;31887:9;:28::i;43556:256::-;43653:7;43689:23;43706:5;43689:16;:23::i;:::-;43681:5;:31;43673:87;;;;-1:-1:-1;;;43673:87:0;;8393:2:1;43673:87:0;;;8375:21:1;8432:2;8412:18;;;8405:30;8471:34;8451:18;;;8444:62;-1:-1:-1;;;8522:18:1;;;8515:41;8573:19;;43673:87:0;8191:407:1;43673:87:0;-1:-1:-1;;;;;;43778:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43556:256::o;49973:206::-;7051:10;8403:7;:5;:7::i;:::-;-1:-1:-1;;;;;8403:23:0;;8395:68;;;;-1:-1:-1;;;8395:68:0;;;;;;;:::i;:::-;50069:6:::1;50064:108;50085:6;50081:1;:10;50064:108;;;50113:47;50122:16;50140:19;50157:1;50140:16;:19::i;50113:47::-;50093:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50064:108;;31994:185:::0;32132:39;32149:4;32155:2;32159:7;32132:39;;;;;;;;;;;;:16;:39::i;44078:233::-;44153:7;44189:30;43976:10;:17;;43888:113;44189:30;44181:5;:38;44173:95;;;;-1:-1:-1;;;44173:95:0;;9438:2:1;44173:95:0;;;9420:21:1;9477:2;9457:18;;;9450:30;9516:34;9496:18;;;9489:62;-1:-1:-1;;;9567:18:1;;;9560:42;9619:19;;44173:95:0;9236:408:1;44173:95:0;44286:10;44297:5;44286:17;;;;;;;;:::i;:::-;;;;;;;;;44279:24;;44078:233;;;:::o;28829:239::-;28901:7;28937:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28937:16:0;28972:19;28964:73;;;;-1:-1:-1;;;28964:73:0;;9983:2:1;28964:73:0;;;9965:21:1;10022:2;10002:18;;;9995:30;10061:34;10041:18;;;10034:62;-1:-1:-1;;;10112:18:1;;;10105:39;10161:19;;28964:73:0;9781:405:1;49591:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28559:208::-;28631:7;-1:-1:-1;;;;;28659:19:0;;28651:74;;;;-1:-1:-1;;;28651:74:0;;10393:2:1;28651:74:0;;;10375:21:1;10432:2;10412:18;;;10405:30;10471:34;10451:18;;;10444:62;-1:-1:-1;;;10522:18:1;;;10515:40;10572:19;;28651:74:0;10191:406:1;28651:74:0;-1:-1:-1;;;;;;28743:16:0;;;;;:9;:16;;;;;;;28559:208::o;8834:94::-;7051:10;8403:7;:5;:7::i;:::-;-1:-1:-1;;;;;8403:23:0;;8395:68;;;;-1:-1:-1;;;8395:68:0;;;;;;;:::i;:::-;8899:21:::1;8917:1;8899:9;:21::i;:::-;8834:94::o:0;8183:87::-;8256:6;;-1:-1:-1;;;;;8256:6:0;;8183:87::o;29304:104::-;29360:13;29393:7;29386:14;;;;;:::i;30987:295::-;-1:-1:-1;;;;;31090:24:0;;7051:10;31090:24;;31082:62;;;;-1:-1:-1;;;31082:62:0;;10804:2:1;31082:62:0;;;10786:21:1;10843:2;10823:18;;;10816:30;-1:-1:-1;;;10862:18:1;;;10855:55;10927:18;;31082:62:0;10602:349:1;31082:62:0;7051:10;31157:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31157:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31157:53:0;;;;;;;;;;31226:48;;540:41:1;;;31157:42:0;;7051:10;31226:48;;513:18:1;31226:48:0;;;;;;;30987:295;;:::o;32250:328::-;32425:41;7051:10;32458:7;32425:18;:41::i;:::-;32417:103;;;;-1:-1:-1;;;32417:103:0;;;;;;;:::i;:::-;32531:39;32545:4;32551:2;32555:7;32564:5;32531:13;:39::i;:::-;32250:328;;;;:::o;51052:196::-;51179:13;51217:23;51232:7;51217:14;:23::i;50303:92::-;7051:10;8403:7;:5;:7::i;:::-;-1:-1:-1;;;;;8403:23:0;;8395:68;;;;-1:-1:-1;;;8395:68:0;;;;;;;:::i;:::-;50374:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50303:92:::0;:::o;50403:236::-;7051:10;8403:7;:5;:7::i;:::-;-1:-1:-1;;;;;8403:23:0;;8395:68;;;;-1:-1:-1;;;8395:68:0;;;;;;;:::i;:::-;50480:15:::1;50498:25;:15;3775:14:::0;;3683:114;50498:25:::1;50480:43;;50534:27;:15;3894:19:::0;;3912:1;3894:19;;;3805:127;50534:27:::1;50572:22;50582:2;50586:7;50572:9;:22::i;:::-;50605:26;50618:7;50627:3;50605:12;:26::i;31353:164::-:0;-1:-1:-1;;;;;31474:25:0;;;31450:4;31474:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31353:164::o;9083:192::-;7051:10;8403:7;:5;:7::i;:::-;-1:-1:-1;;;;;8403:23:0;;8395:68;;;;-1:-1:-1;;;8395:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9172:22:0;::::1;9164:73;;;::::0;-1:-1:-1;;;9164:73:0;;11158:2:1;9164:73:0::1;::::0;::::1;11140:21:1::0;11197:2;11177:18;;;11170:30;11236:34;11216:18;;;11209:62;-1:-1:-1;;;11287:18:1;;;11280:36;11333:19;;9164:73:0::1;10956:402:1::0;9164:73:0::1;9248:19;9258:8;9248:9;:19::i;:::-;9083:192:::0;:::o;4587:723::-;4643:13;4864:10;4860:53;;-1:-1:-1;;4891:10:0;;;;;;;;;;;;-1:-1:-1;;;4891:10:0;;;;;4587:723::o;4860:53::-;4938:5;4923:12;4979:78;4986:9;;4979:78;;5012:8;;;;:::i;:::-;;-1:-1:-1;5035:10:0;;-1:-1:-1;5043:2:0;5035:10;;:::i;:::-;;;4979:78;;;5067:19;5099:6;-1:-1:-1;;;;;5089:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5089:17:0;;5067:39;;5117:154;5124:10;;5117:154;;5151:11;5161:1;5151:11;;:::i;:::-;;-1:-1:-1;5220:10:0;5228:2;5220:5;:10;:::i;:::-;5207:24;;:2;:24;:::i;:::-;5194:39;;5177:6;5184;5177:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5177:56:0;;;;;;;;-1:-1:-1;5248:11:0;5257:2;5248:11;;:::i;:::-;;;5117:154;;;5295:6;4587:723;-1:-1:-1;;;;4587:723:0:o;3683:114::-;3775:14;;3683:114::o;3805:127::-;3894:19;;3912:1;3894:19;;;3805:127::o;10229:387::-;10552:20;10600:8;;;10229:387::o;44924:589::-;-1:-1:-1;;;;;45130:18:0;;45126:187;;45165:40;45197:7;46340:10;:17;;46313:24;;;;:15;:24;;;;;:44;;;46368:24;;;;;;;;;;;;46236:164;45165:40;45126:187;;;45235:2;-1:-1:-1;;;;;45227:10:0;:4;-1:-1:-1;;;;;45227:10:0;;45223:90;;45254:47;45287:4;45293:7;45254:32;:47::i;:::-;-1:-1:-1;;;;;45327:16:0;;45323:183;;45360:45;45397:7;45360:36;:45::i;45323:183::-;45433:4;-1:-1:-1;;;;;45427:10:0;:2;-1:-1:-1;;;;;45427:10:0;;45423:83;;45454:40;45482:2;45486:7;45454:27;:40::i;43248:224::-;43350:4;-1:-1:-1;;;;;;43374:50:0;;-1:-1:-1;;;43374:50:0;;:90;;;43428:36;43452:11;43428:23;:36::i;34088:127::-;34153:4;34177:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34177:16:0;:30;;;34088:127::o;38070:174::-;38145:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38145:29:0;-1:-1:-1;;;;;38145:29:0;;;;;;;;:24;;38199:23;38145:24;38199:14;:23::i;:::-;-1:-1:-1;;;;;38190:46:0;;;;;;;;;;;38070:174;;:::o;34382:348::-;34475:4;34500:16;34508:7;34500;:16::i;:::-;34492:73;;;;-1:-1:-1;;;34492:73:0;;12202:2:1;34492:73:0;;;12184:21:1;12241:2;12221:18;;;12214:30;12280:34;12260:18;;;12253:62;-1:-1:-1;;;12331:18:1;;;12324:42;12383:19;;34492:73:0;12000:408:1;34492:73:0;34576:13;34592:23;34607:7;34592:14;:23::i;:::-;34576:39;;34645:5;-1:-1:-1;;;;;34634:16:0;:7;-1:-1:-1;;;;;34634:16:0;;:51;;;;34678:7;-1:-1:-1;;;;;34654:31:0;:20;34666:7;34654:11;:20::i;:::-;-1:-1:-1;;;;;34654:31:0;;34634:51;:87;;;;34689:32;34706:5;34713:7;34689:16;:32::i;37374:578::-;37533:4;-1:-1:-1;;;;;37506:31:0;:23;37521:7;37506:14;:23::i;:::-;-1:-1:-1;;;;;37506:31:0;;37498:85;;;;-1:-1:-1;;;37498:85:0;;12615:2:1;37498:85:0;;;12597:21:1;12654:2;12634:18;;;12627:30;12693:34;12673:18;;;12666:62;-1:-1:-1;;;12744:18:1;;;12737:39;12793:19;;37498:85:0;12413:405:1;37498:85:0;-1:-1:-1;;;;;37602:16:0;;37594:65;;;;-1:-1:-1;;;37594:65:0;;13025:2:1;37594:65:0;;;13007:21:1;13064:2;13044:18;;;13037:30;13103:34;13083:18;;;13076:62;-1:-1:-1;;;13154:18:1;;;13147:34;13198:19;;37594:65:0;12823:400:1;37594:65:0;37672:39;37693:4;37699:2;37703:7;37672:20;:39::i;:::-;37776:29;37793:1;37797:7;37776:8;:29::i;:::-;-1:-1:-1;;;;;37818:15:0;;;;;;:9;:15;;;;;:20;;37837:1;;37818:15;:20;;37837:1;;37818:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37849:13:0;;;;;;:9;:13;;;;;:18;;37866:1;;37849:13;:18;;37866:1;;37849:18;:::i;:::-;;;;-1:-1:-1;;37878:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37878:21:0;-1:-1:-1;;;;;37878:21:0;;;;;;;;;37917:27;;37878:16;;37917:27;;;;-1:-1:-1;;;;;;;;;;;37917:27:0;;37374:578;;;:::o;9283:173::-;9358:6;;;-1:-1:-1;;;;;9375:17:0;;;-1:-1:-1;;;;;;9375:17:0;;;;;;;9408:40;;9358:6;;;9375:17;9358:6;;9408:40;;9339:16;;9408:40;9328:128;9283:173;:::o;33460:315::-;33617:28;33627:4;33633:2;33637:7;33617:9;:28::i;:::-;33664:48;33687:4;33693:2;33697:7;33706:5;33664:22;:48::i;:::-;33656:111;;;;-1:-1:-1;;;33656:111:0;;;;;;;:::i;40824:679::-;40897:13;40931:16;40939:7;40931;:16::i;:::-;40923:78;;;;-1:-1:-1;;;40923:78:0;;13849:2:1;40923:78:0;;;13831:21:1;13888:2;13868:18;;;13861:30;13927:34;13907:18;;;13900:62;-1:-1:-1;;;13978:18:1;;;13971:47;14035:19;;40923:78:0;13647:413:1;40923:78:0;41014:23;41040:19;;;:10;:19;;;;;41014:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41070:18;41091:10;:8;:10::i;:::-;41070:31;;41183:4;41177:18;41199:1;41177:23;41173:72;;;-1:-1:-1;41224:9:0;40824:679;-1:-1:-1;;40824:679:0:o;41173:72::-;41349:23;;:27;41345:108;;41424:4;41430:9;41407:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41393:48;;;;40824:679;;;:::o;41345:108::-;41472:23;41487:7;41472:14;:23::i;35072:110::-;35148:26;35158:2;35162:7;35148:26;;;;;;;;;;;;:9;:26::i;41659:217::-;41759:16;41767:7;41759;:16::i;:::-;41751:75;;;;-1:-1:-1;;;41751:75:0;;14742:2:1;41751:75:0;;;14724:21:1;14781:2;14761:18;;;14754:30;14820:34;14800:18;;;14793:62;-1:-1:-1;;;14871:18:1;;;14864:44;14925:19;;41751:75:0;14540:410:1;41751:75:0;41837:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;47027:988::-;47293:22;47343:1;47318:22;47335:4;47318:16;:22::i;:::-;:26;;;;:::i;:::-;47355:18;47376:26;;;:17;:26;;;;;;47293:51;;-1:-1:-1;47509:28:0;;;47505:328;;-1:-1:-1;;;;;47576:18:0;;47554:19;47576:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47627:30;;;;;;:44;;;47744:30;;:17;:30;;;;;:43;;;47505:328;-1:-1:-1;47929:26:0;;;;:17;:26;;;;;;;;47922:33;;;-1:-1:-1;;;;;47973:18:0;;;;;:12;:18;;;;;:34;;;;;;;47966:41;47027:988::o;48310:1079::-;48588:10;:17;48563:22;;48588:21;;48608:1;;48588:21;:::i;:::-;48620:18;48641:24;;;:15;:24;;;;;;49014:10;:26;;48563:46;;-1:-1:-1;48641:24:0;;48563:46;;49014:26;;;;;;:::i;:::-;;;;;;;;;48992:48;;49078:11;49053:10;49064;49053:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;49158:28;;;:15;:28;;;;;;;:41;;;49330:24;;;;;49323:31;49365:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48381:1008;;;48310:1079;:::o;45814:221::-;45899:14;45916:20;45933:2;45916:16;:20::i;:::-;-1:-1:-1;;;;;45947:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45992:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45814:221:0:o;28190:305::-;28292:4;-1:-1:-1;;;;;;28329:40:0;;-1:-1:-1;;;28329:40:0;;:105;;-1:-1:-1;;;;;;;28386:48:0;;-1:-1:-1;;;28386:48:0;28329:105;:158;;;-1:-1:-1;;;;;;;;;;20278:40:0;;;28451:36;20169:157;50717:204;50868:45;50895:4;50901:2;50905:7;50868:26;:45::i;38809:799::-;38964:4;-1:-1:-1;;;;;38985:13:0;;10552:20;10600:8;38981:620;;39021:72;;-1:-1:-1;;;39021:72:0;;-1:-1:-1;;;;;39021:36:0;;;;;:72;;7051:10;;39072:4;;39078:7;;39087:5;;39021:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39021:72:0;;;;;;;;-1:-1:-1;;39021:72:0;;;;;;;;;;;;:::i;:::-;;;39017:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39263:13:0;;39259:272;;39306:60;;-1:-1:-1;;;39306:60:0;;;;;;;:::i;39259:272::-;39481:6;39475:13;39466:6;39462:2;39458:15;39451:38;39017:529;-1:-1:-1;;;;;;39144:51:0;-1:-1:-1;;;39144:51:0;;-1:-1:-1;39137:58:0;;38981:620;-1:-1:-1;39585:4:0;38809:799;;;;;;:::o;50187:108::-;50247:13;50280:7;50273:14;;;;;:::i;29479:334::-;29552:13;29586:16;29594:7;29586;:16::i;:::-;29578:76;;;;-1:-1:-1;;;29578:76:0;;16037:2:1;29578:76:0;;;16019:21:1;16076:2;16056:18;;;16049:30;16115:34;16095:18;;;16088:62;-1:-1:-1;;;16166:18:1;;;16159:45;16221:19;;29578:76:0;15835:411:1;29578:76:0;29667:21;29691:10;:8;:10::i;:::-;29667:34;;29743:1;29725:7;29719:21;:25;:86;;;;;;;;;;;;;;;;;29771:7;29780:18;:7;:16;:18::i;:::-;29754:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29719:86;29712:93;29479:334;-1:-1:-1;;;29479:334:0:o;35409:321::-;35539:18;35545:2;35549:7;35539:5;:18::i;:::-;35590:54;35621:1;35625:2;35629:7;35638:5;35590:22;:54::i;:::-;35568:154;;;;-1:-1:-1;;;35568:154:0;;;;;;;:::i;36066:382::-;-1:-1:-1;;;;;36146:16:0;;36138:61;;;;-1:-1:-1;;;36138:61:0;;16453:2:1;36138:61:0;;;16435:21:1;;;16472:18;;;16465:30;16531:34;16511:18;;;16504:62;16583:18;;36138:61:0;16251:356:1;36138:61:0;36219:16;36227:7;36219;:16::i;:::-;36218:17;36210:58;;;;-1:-1:-1;;;36210:58:0;;16814:2:1;36210:58:0;;;16796:21:1;16853:2;16833:18;;;16826:30;-1:-1:-1;;;16872:18:1;;;16865:58;16940:18;;36210:58:0;16612:352:1;36210:58:0;36281:45;36310:1;36314:2;36318:7;36281:20;:45::i;:::-;-1:-1:-1;;;;;36339:13:0;;;;;;:9;:13;;;;;:18;;36356:1;;36339:13;:18;;36356:1;;36339:18;:::i;:::-;;;;-1:-1:-1;;36368:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36368:21:0;-1:-1:-1;;;;;36368:21:0;;;;;;;;36407:33;;36368:16;;;-1:-1:-1;;;;;;;;;;;36407:33:0;36368:16;;36407:33;36066:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:254::-;2756:6;2764;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;2869:9;2856:23;2846:33;;2898:38;2932:2;2921:9;2917:18;2898:38;:::i;:::-;2888:48;;2688:254;;;;;:::o;2947:186::-;3006:6;3059:2;3047:9;3038:7;3034:23;3030:32;3027:52;;;3075:1;3072;3065:12;3027:52;3098:29;3117:9;3098:29;:::i;3138:347::-;3203:6;3211;3264:2;3252:9;3243:7;3239:23;3235:32;3232:52;;;3280:1;3277;3270:12;3232:52;3303:29;3322:9;3303:29;:::i;:::-;3293:39;;3382:2;3371:9;3367:18;3354:32;3429:5;3422:13;3415:21;3408:5;3405:32;3395:60;;3451:1;3448;3441:12;3395:60;3474:5;3464:15;;;3138:347;;;;;:::o;3490:127::-;3551:10;3546:3;3542:20;3539:1;3532:31;3582:4;3579:1;3572:15;3606:4;3603:1;3596:15;3622:631;3686:5;-1:-1:-1;;;;;3746:14:1;;;3743:40;;;3763:18;;:::i;:::-;3838:2;3832:9;3806:2;3892:15;;-1:-1:-1;;3888:24:1;;;3914:2;3884:33;3880:42;3868:55;;;3938:18;;;3958:22;;;3935:46;3932:72;;;3984:18;;:::i;:::-;4024:10;4020:2;4013:22;4053:6;4044:15;;4083:6;4075;4068:22;4123:3;4114:6;4109:3;4105:16;4102:25;4099:45;;;4140:1;4137;4130:12;4099:45;4190:6;4185:3;4178:4;4170:6;4166:17;4153:44;4245:1;4238:4;4229:6;4221;4217:19;4213:30;4206:41;;;;3622:631;;;;;:::o;4258:666::-;4353:6;4361;4369;4377;4430:3;4418:9;4409:7;4405:23;4401:33;4398:53;;;4447:1;4444;4437:12;4398:53;4470:29;4489:9;4470:29;:::i;:::-;4460:39;;4518:38;4552:2;4541:9;4537:18;4518:38;:::i;:::-;4508:48;-1:-1:-1;4603:2:1;4588:18;;4575:32;;-1:-1:-1;4658:2:1;4643:18;;4630:32;-1:-1:-1;;;;;4674:30:1;;4671:50;;;4717:1;4714;4707:12;4671:50;4740:22;;4793:4;4785:13;;4781:27;-1:-1:-1;4771:55:1;;4822:1;4819;4812:12;4771:55;4845:73;4910:7;4905:2;4892:16;4887:2;4883;4879:11;4845:73;:::i;:::-;4835:83;;;4258:666;;;;;;;:::o;4929:221::-;4972:5;5025:3;5018:4;5010:6;5006:17;5002:27;4992:55;;5043:1;5040;5033:12;4992:55;5065:79;5140:3;5131:6;5118:20;5111:4;5103:6;5099:17;5065:79;:::i;5155:322::-;5224:6;5277:2;5265:9;5256:7;5252:23;5248:32;5245:52;;;5293:1;5290;5283:12;5245:52;5320:23;;-1:-1:-1;;;;;5355:30:1;;5352:50;;;5398:1;5395;5388:12;5352:50;5421;5463:7;5454:6;5443:9;5439:22;5421:50;:::i;5482:396::-;5560:6;5568;5621:2;5609:9;5600:7;5596:23;5592:32;5589:52;;;5637:1;5634;5627:12;5589:52;5660:29;5679:9;5660:29;:::i;:::-;5650:39;-1:-1:-1;5740:2:1;5725:18;;5712:32;-1:-1:-1;;;;;5756:30:1;;5753:50;;;5799:1;5796;5789:12;5753:50;5822;5864:7;5855:6;5844:9;5840:22;5822:50;:::i;:::-;5812:60;;;5482:396;;;;;:::o;5883:260::-;5951:6;5959;6012:2;6000:9;5991:7;5987:23;5983:32;5980:52;;;6028:1;6025;6018:12;5980:52;6051:29;6070:9;6051:29;:::i;:::-;6041:39;;6099:38;6133:2;6122:9;6118:18;6099:38;:::i;6148:380::-;6227:1;6223:12;;;;6270;;;6291:61;;6345:4;6337:6;6333:17;6323:27;;6291:61;6398:2;6390:6;6387:14;6367:18;6364:38;6361:161;;;6444:10;6439:3;6435:20;6432:1;6425:31;6479:4;6476:1;6469:15;6507:4;6504:1;6497:15;6361:161;;6148:380;;;:::o;7773:413::-;7975:2;7957:21;;;8014:2;7994:18;;;7987:30;8053:34;8048:2;8033:18;;8026:62;-1:-1:-1;;;8119:2:1;8104:18;;8097:47;8176:3;8161:19;;7773:413::o;8603:356::-;8805:2;8787:21;;;8824:18;;;8817:30;8883:34;8878:2;8863:18;;8856:62;8950:2;8935:18;;8603:356::o;8964:127::-;9025:10;9020:3;9016:20;9013:1;9006:31;9056:4;9053:1;9046:15;9080:4;9077:1;9070:15;9096:135;9135:3;-1:-1:-1;;9156:17:1;;9153:43;;;9176:18;;:::i;:::-;-1:-1:-1;9223:1:1;9212:13;;9096:135::o;9649:127::-;9710:10;9705:3;9701:20;9698:1;9691:31;9741:4;9738:1;9731:15;9765:4;9762:1;9755:15;11363:127;11424:10;11419:3;11415:20;11412:1;11405:31;11455:4;11452:1;11445:15;11479:4;11476:1;11469:15;11495:120;11535:1;11561;11551:35;;11566:18;;:::i;:::-;-1:-1:-1;11600:9:1;;11495:120::o;11620:125::-;11660:4;11688:1;11685;11682:8;11679:34;;;11693:18;;:::i;:::-;-1:-1:-1;11730:9:1;;11620:125::o;11750:112::-;11782:1;11808;11798:35;;11813:18;;:::i;:::-;-1:-1:-1;11847:9:1;;11750:112::o;11867:128::-;11907:3;11938:1;11934:6;11931:1;11928:13;11925:39;;;11944:18;;:::i;:::-;-1:-1:-1;11980:9:1;;11867:128::o;13228:414::-;13430:2;13412:21;;;13469:2;13449:18;;;13442:30;13508:34;13503:2;13488:18;;13481:62;-1:-1:-1;;;13574:2:1;13559:18;;13552:48;13632:3;13617:19;;13228:414::o;14065:470::-;14244:3;14282:6;14276:13;14298:53;14344:6;14339:3;14332:4;14324:6;14320:17;14298:53;:::i;:::-;14414:13;;14373:16;;;;14436:57;14414:13;14373:16;14470:4;14458:17;;14436:57;:::i;:::-;14509:20;;14065:470;-1:-1:-1;;;;14065:470:1:o;14955:127::-;15016:10;15011:3;15007:20;15004:1;14997:31;15047:4;15044:1;15037:15;15071:4;15068:1;15061:15;15087:489;-1:-1:-1;;;;;15356:15:1;;;15338:34;;15408:15;;15403:2;15388:18;;15381:43;15455:2;15440:18;;15433:34;;;15503:3;15498:2;15483:18;;15476:31;;;15281:4;;15524:46;;15550:19;;15542:6;15524:46;:::i;:::-;15516:54;15087:489;-1:-1:-1;;;;;;15087:489:1:o;15581:249::-;15650:6;15703:2;15691:9;15682:7;15678:23;15674:32;15671:52;;;15719:1;15716;15709:12;15671:52;15751:9;15745:16;15770:30;15794:5;15770:30;:::i
Swarm Source
ipfs://2ade67dc5c9486073e86d6f6d448dbe885ab0dfdde54cece25e5c42780600ad7
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.