Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
5,102 AzukiX
Holders
697
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 AzukiXLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AzukiX
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-19 */ // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function totalSupply() public view returns (uint256) { return currentIndex; } /** * @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 override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/AzukiX.sol pragma solidity ^0.8.4; contract AzukiX is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; uint256 public PRICE; uint256 public MAX_SUPPLY; string private BASE_URI; uint256 public FREE_MINT_LIMIT_PER_WALLET; uint256 public MAX_MINT_AMOUNT_PER_TX; bool public IS_SALE_ACTIVE; uint256 public FREE_MINT_IS_ALLOWED_UNTIL; // Free mint is allowed until x mint bool public METADATA_FROZEN; mapping(address => uint256) private freeMintCountMap; constructor(uint256 price, uint256 maxSupply, string memory baseUri, uint256 freeMintAllowance, uint256 maxMintPerTx, bool isSaleActive, uint256 freeMintIsAllowedUntil) ERC721A("AzukiX", "AzukiX") { PRICE = price; MAX_SUPPLY = maxSupply; BASE_URI = baseUri; FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance; MAX_MINT_AMOUNT_PER_TX = maxMintPerTx; IS_SALE_ACTIVE = isSaleActive; FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil; } /** FREE MINT **/ function updateFreeMintCount(address minter, uint256 count) private { freeMintCountMap[minter] += count; } /** GETTERS **/ function _baseURI() internal view virtual override returns (string memory) { return BASE_URI; } /** SETTERS **/ function setPrice(uint256 customPrice) external onlyOwner { PRICE = customPrice; } function lowerMaxSupply(uint256 newMaxSupply) external onlyOwner { require(newMaxSupply < MAX_SUPPLY, "Invalid new max supply"); require(newMaxSupply >= currentIndex, "Invalid new max supply"); MAX_SUPPLY = newMaxSupply; } function setBaseURI(string memory customBaseURI_) external onlyOwner { require(!METADATA_FROZEN, "Metadata frozen!"); BASE_URI = customBaseURI_; } function setFreeMintAllowance(uint256 freeMintAllowance) external onlyOwner { FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance; } function setMaxMintPerTx(uint256 maxMintPerTx) external onlyOwner { MAX_MINT_AMOUNT_PER_TX = maxMintPerTx; } function setSaleActive(bool saleIsActive) external onlyOwner { IS_SALE_ACTIVE = saleIsActive; } function setFreeMintAllowedUntil(uint256 freeMintIsAllowedUntil) external onlyOwner { FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil; } function freezeMetadata() external onlyOwner { METADATA_FROZEN = true; } /** MINT **/ modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= MAX_MINT_AMOUNT_PER_TX, "Invalid mint amount!"); require(currentIndex + _mintAmount <= MAX_SUPPLY, "Max supply exceeded!"); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(IS_SALE_ACTIVE, "Sale is not active!"); uint256 price = PRICE * _mintAmount; if (currentIndex < FREE_MINT_IS_ALLOWED_UNTIL) { uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET - freeMintCountMap[msg.sender]; if (remainingFreeMint > 0) { if (_mintAmount >= remainingFreeMint) { price -= remainingFreeMint * PRICE; updateFreeMintCount(msg.sender, remainingFreeMint); } else { price -= _mintAmount * PRICE; updateFreeMintCount(msg.sender, _mintAmount); } } } require(msg.value >= price, "Insufficient funds!"); _safeMint(msg.sender, _mintAmount); } function mintOwner(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_to, _mintAmount); } /** PAYOUT **/ address private constant payoutAddress = 0x45fbD2C83775A53d86e46DdAc56E7ADc7402233e; function withdraw() public onlyOwner nonReentrant { uint256 balance = address(this).balance; Address.sendValue(payable(payoutAddress), balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"},{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_IS_ALLOWED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_FROZEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeMetadata","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":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"}],"name":"setFreeMintAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"name":"setFreeMintAllowedUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200259d3803806200259d833981016040819052620000349162000209565b604080518082018252600680825265082f4ead6d2b60d31b60208084018281528551808701909652928552840152815191929162000075916001916200014d565b5080516200008b9060029060208401906200014d565b505050620000a8620000a2620000f760201b60201c565b620000fb565b60016008556009879055600a8690558451620000cc90600b9060208801906200014d565b50600c93909355600d91909155600e805460ff1916911515919091179055600f55506200037f915050565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015b906200032c565b90600052602060002090601f0160209004810192826200017f5760008555620001ca565b82601f106200019a57805160ff1916838001178555620001ca565b82800160010185558215620001ca579182015b82811115620001ca578251825591602001919060010190620001ad565b50620001d8929150620001dc565b5090565b5b80821115620001d85760008155600101620001dd565b805180151581146200020457600080fd5b919050565b600080600080600080600060e0888a0312156200022557600080fd5b87516020808a015160408b01519299509750906001600160401b03808211156200024e57600080fd5b818b0191508b601f8301126200026357600080fd5b81518181111562000278576200027862000369565b604051601f8201601f19908116603f01168101908382118183101715620002a357620002a362000369565b816040528281528e86848701011115620002bc57600080fd5b600093505b82841015620002e05784840186015181850187015292850192620002c1565b82841115620002f25760008684830101525b809a5050505050505060608801519350608088015192506200031760a08901620001f3565b915060c0880151905092959891949750929550565b600181811c908216806200034157607f821691505b602082108114156200036357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61220e806200038f6000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610595578063d111515d146105b5578063e985e9c5146105ca578063f2fde38b14610613578063fdb4953a1461063357600080fd5b8063a22cb46514610515578063b0551ac414610535578063b88d4fde14610555578063c4e9374d1461057557600080fd5b80638d859f3e116100e75780638d859f3e146104995780638da5cb5b146104af57806391b7f5ed146104cd57806395d89b41146104ed578063a0712d681461050257600080fd5b8063715018a61461042a57806376d02b711461043f578063841718a6146104595780638b85e43d1461047957600080fd5b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461038a57806355f804b3146103aa578063616cdb1e146103ca5780636352211e146103ea57806370a082311461040a57600080fd5b806332cb6b0c146103295780633ccfd60b1461033f5780634065b85f14610354578063408cbf941461036a57600080fd5b806309ef6527116101d757806309ef6527146102ba57806310b0c052146102de57806318160ddd146102f457806323b872dd1461030957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611e93565b61064d565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025361069f565b6040516102359190611fd7565b34801561026c57600080fd5b5061028061027b366004611f16565b610731565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611e4e565b6107c1565b005b3480156102c657600080fd5b506102d0600d5481565b604051908152602001610235565b3480156102ea57600080fd5b506102d0600c5481565b34801561030057600080fd5b506000546102d0565b34801561031557600080fd5b506102b8610324366004611d6c565b6108d9565b34801561033557600080fd5b506102d0600a5481565b34801561034b57600080fd5b506102b86108e4565b34801561036057600080fd5b506102d0600f5481565b34801561037657600080fd5b506102b8610385366004611e4e565b61098d565b34801561039657600080fd5b506102b86103a5366004611d6c565b610a6d565b3480156103b657600080fd5b506102b86103c5366004611ecd565b610a88565b3480156103d657600080fd5b506102b86103e5366004611f16565b610b0f565b3480156103f657600080fd5b50610280610405366004611f16565b610b3e565b34801561041657600080fd5b506102d0610425366004611d1e565b610b50565b34801561043657600080fd5b506102b8610be1565b34801561044b57600080fd5b50600e546102299060ff1681565b34801561046557600080fd5b506102b8610474366004611e78565b610c17565b34801561048557600080fd5b506102b8610494366004611f16565b610c54565b3480156104a557600080fd5b506102d060095481565b3480156104bb57600080fd5b506007546001600160a01b0316610280565b3480156104d957600080fd5b506102b86104e8366004611f16565b610c83565b3480156104f957600080fd5b50610253610cb2565b6102b8610510366004611f16565b610cc1565b34801561052157600080fd5b506102b8610530366004611e24565b610e9c565b34801561054157600080fd5b506102b8610550366004611f16565b610f61565b34801561056157600080fd5b506102b8610570366004611da8565b610f90565b34801561058157600080fd5b506102b8610590366004611f16565b610fc9565b3480156105a157600080fd5b506102536105b0366004611f16565b61108d565b3480156105c157600080fd5b506102b861115b565b3480156105d657600080fd5b506102296105e5366004611d39565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561061f57600080fd5b506102b861062e366004611d1e565b611194565b34801561063f57600080fd5b506010546102299060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061067e57506001600160e01b03198216635b5e139f60e01b145b8061069957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106ae90612100565b80601f01602080910402602001604051908101604052809291908181526020018280546106da90612100565b80156107275780601f106106fc57610100808354040283529160200191610727565b820191906000526020600020905b81548152906001019060200180831161070a57829003601f168201915b5050505050905090565b600061073e826000541190565b6107a55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107cc82610b3e565b9050806001600160a01b0316836001600160a01b0316141561083b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161079c565b336001600160a01b0382161480610857575061085781336105e5565b6108c95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161079c565b6108d483838361122f565b505050565b6108d483838361128b565b6007546001600160a01b0316331461090e5760405162461bcd60e51b815260040161079c90611fea565b600260085414156109615760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161079c565b6002600855476109857345fbd2c83775a53d86e46ddac56e7adc7402233e82611570565b506001600855565b806000811180156109a05750600d548111155b6109e35760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161079c565b600a54816000546109f49190612072565b1115610a395760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161079c565b6007546001600160a01b03163314610a635760405162461bcd60e51b815260040161079c90611fea565b6108d48383611689565b6108d483838360405180602001604052806000815250610f90565b6007546001600160a01b03163314610ab25760405162461bcd60e51b815260040161079c90611fea565b60105460ff1615610af85760405162461bcd60e51b815260206004820152601060248201526f4d657461646174612066726f7a656e2160801b604482015260640161079c565b8051610b0b90600b906020840190611be3565b5050565b6007546001600160a01b03163314610b395760405162461bcd60e51b815260040161079c90611fea565b600d55565b6000610b49826116a3565b5192915050565b60006001600160a01b038216610bbc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161079c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610c0b5760405162461bcd60e51b815260040161079c90611fea565b610c15600061177a565b565b6007546001600160a01b03163314610c415760405162461bcd60e51b815260040161079c90611fea565b600e805460ff1916911515919091179055565b6007546001600160a01b03163314610c7e5760405162461bcd60e51b815260040161079c90611fea565b600f55565b6007546001600160a01b03163314610cad5760405162461bcd60e51b815260040161079c90611fea565b600955565b6060600280546106ae90612100565b80600081118015610cd45750600d548111155b610d175760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161079c565b600a5481600054610d289190612072565b1115610d6d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161079c565b600e5460ff16610db55760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b604482015260640161079c565b600082600954610dc5919061209e565b9050600f546000541015610e4c5733600090815260116020526040812054600c54610df091906120bd565b90508015610e4a57808410610e2757600954610e0c908261209e565b610e1690836120bd565b9150610e2233826117cc565b610e4a565b600954610e34908561209e565b610e3e90836120bd565b9150610e4a33856117cc565b505b80341015610e925760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161079c565b6108d43384611689565b6001600160a01b038216331415610ef55760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161079c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b03163314610f8b5760405162461bcd60e51b815260040161079c90611fea565b600c55565b610f9b84848461128b565b610fa7848484846117fd565b610fc35760405162461bcd60e51b815260040161079c9061201f565b50505050565b6007546001600160a01b03163314610ff35760405162461bcd60e51b815260040161079c90611fea565b600a54811061103d5760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b604482015260640161079c565b6000548110156110885760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b604482015260640161079c565b600a55565b606061109a826000541190565b6110fe5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161079c565b600061110861190b565b90508051600014156111295760405180602001604052806000815250611154565b806111338461191a565b604051602001611144929190611f5b565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146111855760405162461bcd60e51b815260040161079c90611fea565b6010805460ff19166001179055565b6007546001600160a01b031633146111be5760405162461bcd60e51b815260040161079c90611fea565b6001600160a01b0381166112235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079c565b61122c8161177a565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611296826116a3565b80519091506000906001600160a01b0316336001600160a01b031614806112cd5750336112c284610731565b6001600160a01b0316145b806112df575081516112df90336105e5565b9050806113495760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161079c565b846001600160a01b031682600001516001600160a01b0316146113bd5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161079c565b6001600160a01b0384166114215760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161079c565b611431600084846000015161122f565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611526576114d9816000541190565b15611526578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156115c05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161079c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461160d576040519150601f19603f3d011682016040523d82523d6000602084013e611612565b606091505b50509050806108d45760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161079c565b610b0b828260405180602001604052806000815250611a18565b60408051808201909152600080825260208201526116c2826000541190565b6117215760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161079c565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611770579392505050565b5060001901611723565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260116020526040812080548392906117f4908490612072565b90915550505050565b60006001600160a01b0384163b156118ff57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611841903390899088908890600401611f9a565b602060405180830381600087803b15801561185b57600080fd5b505af192505050801561188b575060408051601f3d908101601f1916820190925261188891810190611eb0565b60015b6118e5573d8080156118b9576040519150601f19603f3d011682016040523d82523d6000602084013e6118be565b606091505b5080516118dd5760405162461bcd60e51b815260040161079c9061201f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611903565b5060015b949350505050565b6060600b80546106ae90612100565b60608161193e5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561196857806119528161213b565b91506119619050600a8361208a565b9150611942565b60008167ffffffffffffffff811115611983576119836121ac565b6040519080825280601f01601f1916602001820160405280156119ad576020820181803683370190505b5090505b8415611903576119c26001836120bd565b91506119cf600a86612156565b6119da906030612072565b60f81b8183815181106119ef576119ef612196565b60200101906001600160f81b031916908160001a905350611a11600a8661208a565b94506119b1565b6108d483838360016000546001600160a01b038516611a835760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161079c565b83611ae15760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161079c565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611bda5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611bce57611bb260008884886117fd565b611bce5760405162461bcd60e51b815260040161079c9061201f565b60019182019101611b5f565b50600055611569565b828054611bef90612100565b90600052602060002090601f016020900481019282611c115760008555611c57565b82601f10611c2a57805160ff1916838001178555611c57565b82800160010185558215611c57579182015b82811115611c57578251825591602001919060010190611c3c565b50611c63929150611c67565b5090565b5b80821115611c635760008155600101611c68565b600067ffffffffffffffff80841115611c9757611c976121ac565b604051601f8501601f19908116603f01168101908282118183101715611cbf57611cbf6121ac565b81604052809350858152868686011115611cd857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d0957600080fd5b919050565b80358015158114611d0957600080fd5b600060208284031215611d3057600080fd5b61115482611cf2565b60008060408385031215611d4c57600080fd5b611d5583611cf2565b9150611d6360208401611cf2565b90509250929050565b600080600060608486031215611d8157600080fd5b611d8a84611cf2565b9250611d9860208501611cf2565b9150604084013590509250925092565b60008060008060808587031215611dbe57600080fd5b611dc785611cf2565b9350611dd560208601611cf2565b925060408501359150606085013567ffffffffffffffff811115611df857600080fd5b8501601f81018713611e0957600080fd5b611e1887823560208401611c7c565b91505092959194509250565b60008060408385031215611e3757600080fd5b611e4083611cf2565b9150611d6360208401611d0e565b60008060408385031215611e6157600080fd5b611e6a83611cf2565b946020939093013593505050565b600060208284031215611e8a57600080fd5b61115482611d0e565b600060208284031215611ea557600080fd5b8135611154816121c2565b600060208284031215611ec257600080fd5b8151611154816121c2565b600060208284031215611edf57600080fd5b813567ffffffffffffffff811115611ef657600080fd5b8201601f81018413611f0757600080fd5b61190384823560208401611c7c565b600060208284031215611f2857600080fd5b5035919050565b60008151808452611f478160208601602086016120d4565b601f01601f19169290920160200192915050565b60008351611f6d8184602088016120d4565b835190830190611f818183602088016120d4565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fcd90830184611f2f565b9695505050505050565b6020815260006111546020830184611f2f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156120855761208561216a565b500190565b60008261209957612099612180565b500490565b60008160001904831182151516156120b8576120b861216a565b500290565b6000828210156120cf576120cf61216a565b500390565b60005b838110156120ef5781810151838201526020016120d7565b83811115610fc35750506000910152565b600181811c9082168061211457607f821691505b6020821081141561213557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561214f5761214f61216a565b5060010190565b60008261216557612165612180565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461122c57600080fdfea264697066735822122072eb6faeddf394a91fa71c42417ed1c4e9099b9d0f374fd67dd787b59b51caff64736f6c63430008070033000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d564553766641585332556d335231695657326d765a4d6236694a53434341435131447163484c774b394368512f00000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610595578063d111515d146105b5578063e985e9c5146105ca578063f2fde38b14610613578063fdb4953a1461063357600080fd5b8063a22cb46514610515578063b0551ac414610535578063b88d4fde14610555578063c4e9374d1461057557600080fd5b80638d859f3e116100e75780638d859f3e146104995780638da5cb5b146104af57806391b7f5ed146104cd57806395d89b41146104ed578063a0712d681461050257600080fd5b8063715018a61461042a57806376d02b711461043f578063841718a6146104595780638b85e43d1461047957600080fd5b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461038a57806355f804b3146103aa578063616cdb1e146103ca5780636352211e146103ea57806370a082311461040a57600080fd5b806332cb6b0c146103295780633ccfd60b1461033f5780634065b85f14610354578063408cbf941461036a57600080fd5b806309ef6527116101d757806309ef6527146102ba57806310b0c052146102de57806318160ddd146102f457806323b872dd1461030957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611e93565b61064d565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025361069f565b6040516102359190611fd7565b34801561026c57600080fd5b5061028061027b366004611f16565b610731565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611e4e565b6107c1565b005b3480156102c657600080fd5b506102d0600d5481565b604051908152602001610235565b3480156102ea57600080fd5b506102d0600c5481565b34801561030057600080fd5b506000546102d0565b34801561031557600080fd5b506102b8610324366004611d6c565b6108d9565b34801561033557600080fd5b506102d0600a5481565b34801561034b57600080fd5b506102b86108e4565b34801561036057600080fd5b506102d0600f5481565b34801561037657600080fd5b506102b8610385366004611e4e565b61098d565b34801561039657600080fd5b506102b86103a5366004611d6c565b610a6d565b3480156103b657600080fd5b506102b86103c5366004611ecd565b610a88565b3480156103d657600080fd5b506102b86103e5366004611f16565b610b0f565b3480156103f657600080fd5b50610280610405366004611f16565b610b3e565b34801561041657600080fd5b506102d0610425366004611d1e565b610b50565b34801561043657600080fd5b506102b8610be1565b34801561044b57600080fd5b50600e546102299060ff1681565b34801561046557600080fd5b506102b8610474366004611e78565b610c17565b34801561048557600080fd5b506102b8610494366004611f16565b610c54565b3480156104a557600080fd5b506102d060095481565b3480156104bb57600080fd5b506007546001600160a01b0316610280565b3480156104d957600080fd5b506102b86104e8366004611f16565b610c83565b3480156104f957600080fd5b50610253610cb2565b6102b8610510366004611f16565b610cc1565b34801561052157600080fd5b506102b8610530366004611e24565b610e9c565b34801561054157600080fd5b506102b8610550366004611f16565b610f61565b34801561056157600080fd5b506102b8610570366004611da8565b610f90565b34801561058157600080fd5b506102b8610590366004611f16565b610fc9565b3480156105a157600080fd5b506102536105b0366004611f16565b61108d565b3480156105c157600080fd5b506102b861115b565b3480156105d657600080fd5b506102296105e5366004611d39565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561061f57600080fd5b506102b861062e366004611d1e565b611194565b34801561063f57600080fd5b506010546102299060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061067e57506001600160e01b03198216635b5e139f60e01b145b8061069957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106ae90612100565b80601f01602080910402602001604051908101604052809291908181526020018280546106da90612100565b80156107275780601f106106fc57610100808354040283529160200191610727565b820191906000526020600020905b81548152906001019060200180831161070a57829003601f168201915b5050505050905090565b600061073e826000541190565b6107a55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107cc82610b3e565b9050806001600160a01b0316836001600160a01b0316141561083b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161079c565b336001600160a01b0382161480610857575061085781336105e5565b6108c95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161079c565b6108d483838361122f565b505050565b6108d483838361128b565b6007546001600160a01b0316331461090e5760405162461bcd60e51b815260040161079c90611fea565b600260085414156109615760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161079c565b6002600855476109857345fbd2c83775a53d86e46ddac56e7adc7402233e82611570565b506001600855565b806000811180156109a05750600d548111155b6109e35760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161079c565b600a54816000546109f49190612072565b1115610a395760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161079c565b6007546001600160a01b03163314610a635760405162461bcd60e51b815260040161079c90611fea565b6108d48383611689565b6108d483838360405180602001604052806000815250610f90565b6007546001600160a01b03163314610ab25760405162461bcd60e51b815260040161079c90611fea565b60105460ff1615610af85760405162461bcd60e51b815260206004820152601060248201526f4d657461646174612066726f7a656e2160801b604482015260640161079c565b8051610b0b90600b906020840190611be3565b5050565b6007546001600160a01b03163314610b395760405162461bcd60e51b815260040161079c90611fea565b600d55565b6000610b49826116a3565b5192915050565b60006001600160a01b038216610bbc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161079c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610c0b5760405162461bcd60e51b815260040161079c90611fea565b610c15600061177a565b565b6007546001600160a01b03163314610c415760405162461bcd60e51b815260040161079c90611fea565b600e805460ff1916911515919091179055565b6007546001600160a01b03163314610c7e5760405162461bcd60e51b815260040161079c90611fea565b600f55565b6007546001600160a01b03163314610cad5760405162461bcd60e51b815260040161079c90611fea565b600955565b6060600280546106ae90612100565b80600081118015610cd45750600d548111155b610d175760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161079c565b600a5481600054610d289190612072565b1115610d6d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161079c565b600e5460ff16610db55760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b604482015260640161079c565b600082600954610dc5919061209e565b9050600f546000541015610e4c5733600090815260116020526040812054600c54610df091906120bd565b90508015610e4a57808410610e2757600954610e0c908261209e565b610e1690836120bd565b9150610e2233826117cc565b610e4a565b600954610e34908561209e565b610e3e90836120bd565b9150610e4a33856117cc565b505b80341015610e925760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161079c565b6108d43384611689565b6001600160a01b038216331415610ef55760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161079c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b03163314610f8b5760405162461bcd60e51b815260040161079c90611fea565b600c55565b610f9b84848461128b565b610fa7848484846117fd565b610fc35760405162461bcd60e51b815260040161079c9061201f565b50505050565b6007546001600160a01b03163314610ff35760405162461bcd60e51b815260040161079c90611fea565b600a54811061103d5760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b604482015260640161079c565b6000548110156110885760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b604482015260640161079c565b600a55565b606061109a826000541190565b6110fe5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161079c565b600061110861190b565b90508051600014156111295760405180602001604052806000815250611154565b806111338461191a565b604051602001611144929190611f5b565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146111855760405162461bcd60e51b815260040161079c90611fea565b6010805460ff19166001179055565b6007546001600160a01b031633146111be5760405162461bcd60e51b815260040161079c90611fea565b6001600160a01b0381166112235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079c565b61122c8161177a565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611296826116a3565b80519091506000906001600160a01b0316336001600160a01b031614806112cd5750336112c284610731565b6001600160a01b0316145b806112df575081516112df90336105e5565b9050806113495760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161079c565b846001600160a01b031682600001516001600160a01b0316146113bd5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161079c565b6001600160a01b0384166114215760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161079c565b611431600084846000015161122f565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611526576114d9816000541190565b15611526578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156115c05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161079c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461160d576040519150601f19603f3d011682016040523d82523d6000602084013e611612565b606091505b50509050806108d45760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161079c565b610b0b828260405180602001604052806000815250611a18565b60408051808201909152600080825260208201526116c2826000541190565b6117215760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161079c565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611770579392505050565b5060001901611723565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260116020526040812080548392906117f4908490612072565b90915550505050565b60006001600160a01b0384163b156118ff57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611841903390899088908890600401611f9a565b602060405180830381600087803b15801561185b57600080fd5b505af192505050801561188b575060408051601f3d908101601f1916820190925261188891810190611eb0565b60015b6118e5573d8080156118b9576040519150601f19603f3d011682016040523d82523d6000602084013e6118be565b606091505b5080516118dd5760405162461bcd60e51b815260040161079c9061201f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611903565b5060015b949350505050565b6060600b80546106ae90612100565b60608161193e5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561196857806119528161213b565b91506119619050600a8361208a565b9150611942565b60008167ffffffffffffffff811115611983576119836121ac565b6040519080825280601f01601f1916602001820160405280156119ad576020820181803683370190505b5090505b8415611903576119c26001836120bd565b91506119cf600a86612156565b6119da906030612072565b60f81b8183815181106119ef576119ef612196565b60200101906001600160f81b031916908160001a905350611a11600a8661208a565b94506119b1565b6108d483838360016000546001600160a01b038516611a835760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161079c565b83611ae15760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161079c565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611bda5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611bce57611bb260008884886117fd565b611bce5760405162461bcd60e51b815260040161079c9061201f565b60019182019101611b5f565b50600055611569565b828054611bef90612100565b90600052602060002090601f016020900481019282611c115760008555611c57565b82601f10611c2a57805160ff1916838001178555611c57565b82800160010185558215611c57579182015b82811115611c57578251825591602001919060010190611c3c565b50611c63929150611c67565b5090565b5b80821115611c635760008155600101611c68565b600067ffffffffffffffff80841115611c9757611c976121ac565b604051601f8501601f19908116603f01168101908282118183101715611cbf57611cbf6121ac565b81604052809350858152868686011115611cd857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d0957600080fd5b919050565b80358015158114611d0957600080fd5b600060208284031215611d3057600080fd5b61115482611cf2565b60008060408385031215611d4c57600080fd5b611d5583611cf2565b9150611d6360208401611cf2565b90509250929050565b600080600060608486031215611d8157600080fd5b611d8a84611cf2565b9250611d9860208501611cf2565b9150604084013590509250925092565b60008060008060808587031215611dbe57600080fd5b611dc785611cf2565b9350611dd560208601611cf2565b925060408501359150606085013567ffffffffffffffff811115611df857600080fd5b8501601f81018713611e0957600080fd5b611e1887823560208401611c7c565b91505092959194509250565b60008060408385031215611e3757600080fd5b611e4083611cf2565b9150611d6360208401611d0e565b60008060408385031215611e6157600080fd5b611e6a83611cf2565b946020939093013593505050565b600060208284031215611e8a57600080fd5b61115482611d0e565b600060208284031215611ea557600080fd5b8135611154816121c2565b600060208284031215611ec257600080fd5b8151611154816121c2565b600060208284031215611edf57600080fd5b813567ffffffffffffffff811115611ef657600080fd5b8201601f81018413611f0757600080fd5b61190384823560208401611c7c565b600060208284031215611f2857600080fd5b5035919050565b60008151808452611f478160208601602086016120d4565b601f01601f19169290920160200192915050565b60008351611f6d8184602088016120d4565b835190830190611f818183602088016120d4565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fcd90830184611f2f565b9695505050505050565b6020815260006111546020830184611f2f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156120855761208561216a565b500190565b60008261209957612099612180565b500490565b60008160001904831182151516156120b8576120b861216a565b500290565b6000828210156120cf576120cf61216a565b500390565b60005b838110156120ef5781810151838201526020016120d7565b83811115610fc35750506000910152565b600181811c9082168061211457607f821691505b6020821081141561213557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561214f5761214f61216a565b5060010190565b60008261216557612165612180565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461122c57600080fdfea264697066735822122072eb6faeddf394a91fa71c42417ed1c4e9099b9d0f374fd67dd787b59b51caff64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d564553766641585332556d335231695657326d765a4d6236694a53434341435131447163484c774b394368512f00000000000000000000
-----Decoded View---------------
Arg [0] : price (uint256): 10000000000000000
Arg [1] : maxSupply (uint256): 10000
Arg [2] : baseUri (string): ipfs://QmVESvfAXS2Um3R1iVW2mvZMb6iJSCCACQ1DqcHLwK9ChQ/
Arg [3] : freeMintAllowance (uint256): 10
Arg [4] : maxMintPerTx (uint256): 100
Arg [5] : isSaleActive (bool): True
Arg [6] : freeMintIsAllowedUntil (uint256): 1000
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d564553766641585332556d335231695657326d765a4d62
Arg [9] : 36694a53434341435131447163484c774b394368512f00000000000000000000
Deployed Bytecode Sourcemap
40090:4116:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27140:293;;;;;;;;;;-1:-1:-1;27140:293:0;;;;;:::i;:::-;;:::i;:::-;;;6280:14:1;;6273:22;6255:41;;6243:2;6228:18;27140:293:0;;;;;;;;28915:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30486:214::-;;;;;;;;;;-1:-1:-1;30486:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5578:32:1;;;5560:51;;5548:2;5533:18;30486:214:0;5414:203:1;30007:413:0;;;;;;;;;;-1:-1:-1;30007:413:0;;;;;:::i;:::-;;:::i;:::-;;40321:37;;;;;;;;;;;;;;;;;;;16396:25:1;;;16384:2;16369:18;40321:37:0;16250:177:1;40273:41:0;;;;;;;;;;;;;;;;26977:91;;;;;;;;;;-1:-1:-1;27021:7:0;27048:12;26977:91;;31362:162;;;;;;;;;;-1:-1:-1;31362:162:0;;;;;:::i;:::-;;:::i;40211:25::-;;;;;;;;;;;;;;;;44032:171;;;;;;;;;;;;;:::i;40398:41::-;;;;;;;;;;;;;;;;43761:144;;;;;;;;;;-1:-1:-1;43761:144:0;;;;;:::i;:::-;;:::i;31595:177::-;;;;;;;;;;-1:-1:-1;31595:177:0;;;;;:::i;:::-;;:::i;41768:169::-;;;;;;;;;;-1:-1:-1;41768:169:0;;;;;:::i;:::-;;:::i;42094:122::-;;;;;;;;;;-1:-1:-1;42094:122:0;;;;;:::i;:::-;;:::i;28724:124::-;;;;;;;;;;-1:-1:-1;28724:124:0;;;;;:::i;:::-;;:::i;27497:221::-;;;;;;;;;;-1:-1:-1;27497:221:0;;;;;:::i;:::-;;:::i;7648:103::-;;;;;;;;;;;;;:::i;40365:26::-;;;;;;;;;;-1:-1:-1;40365:26:0;;;;;;;;42224:109;;;;;;;;;;-1:-1:-1;42224:109:0;;;;;:::i;:::-;;:::i;42341:154::-;;;;;;;;;;-1:-1:-1;42341:154:0;;;;;:::i;:::-;;:::i;40184:20::-;;;;;;;;;;;;;;;;6997:87;;;;;;;;;;-1:-1:-1;7070:6:0;;-1:-1:-1;;;;;7070:6:0;6997:87;;41402:96;;;;;;;;;;-1:-1:-1;41402:96:0;;;;;:::i;:::-;;:::i;29084:104::-;;;;;;;;;;;;;:::i;42874:879::-;;;;;;:::i;:::-;;:::i;30772:288::-;;;;;;;;;;-1:-1:-1;30772:288:0;;;;;:::i;:::-;;:::i;41945:141::-;;;;;;;;;;-1:-1:-1;41945:141:0;;;;;:::i;:::-;;:::i;31843:355::-;;;;;;;;;;-1:-1:-1;31843:355:0;;;;;:::i;:::-;;:::i;41506:254::-;;;;;;;;;;-1:-1:-1;41506:254:0;;;;;:::i;:::-;;:::i;29259:344::-;;;;;;;;;;-1:-1:-1;29259:344:0;;;;;:::i;:::-;;:::i;42503:86::-;;;;;;;;;;;;;:::i;31131:164::-;;;;;;;;;;-1:-1:-1;31131:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31252:25:0;;;31228:4;31252:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31131:164;7906:201;;;;;;;;;;-1:-1:-1;7906:201:0;;;;;:::i;:::-;;:::i;40483:27::-;;;;;;;;;;-1:-1:-1;40483:27:0;;;;;;;;27140:293;27242:4;-1:-1:-1;;;;;;27275:40:0;;-1:-1:-1;;;27275:40:0;;:101;;-1:-1:-1;;;;;;;27328:48:0;;-1:-1:-1;;;27328:48:0;27275:101;:150;;;-1:-1:-1;;;;;;;;;;19538:40:0;;;27389:36;27259:166;27140:293;-1:-1:-1;;27140:293:0:o;28915:100::-;28969:13;29002:5;28995:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28915:100;:::o;30486:214::-;30554:7;30582:16;30590:7;32510:4;32544:12;-1:-1:-1;32534:22:0;32453:111;30582:16;30574:74;;;;-1:-1:-1;;;30574:74:0;;15690:2:1;30574:74:0;;;15672:21:1;15729:2;15709:18;;;15702:30;15768:34;15748:18;;;15741:62;-1:-1:-1;;;15819:18:1;;;15812:43;15872:19;;30574:74:0;;;;;;;;;-1:-1:-1;30668:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30668:24:0;;30486:214::o;30007:413::-;30080:13;30096:24;30112:7;30096:15;:24::i;:::-;30080:40;;30145:5;-1:-1:-1;;;;;30139:11:0;:2;-1:-1:-1;;;;;30139:11:0;;;30131:58;;;;-1:-1:-1;;;30131:58:0;;12931:2:1;30131:58:0;;;12913:21:1;12970:2;12950:18;;;12943:30;13009:34;12989:18;;;12982:62;-1:-1:-1;;;13060:18:1;;;13053:32;13102:19;;30131:58:0;12729:398:1;30131:58:0;5748:10;-1:-1:-1;;;;;30224:21:0;;;;:62;;-1:-1:-1;30249:37:0;30266:5;5748:10;31131:164;:::i;30249:37::-;30202:169;;;;-1:-1:-1;;;30202:169:0;;9091:2:1;30202:169:0;;;9073:21:1;9130:2;9110:18;;;9103:30;9169:34;9149:18;;;9142:62;9240:27;9220:18;;;9213:55;9285:19;;30202:169:0;8889:421:1;30202:169:0;30384:28;30393:2;30397:7;30406:5;30384:8;:28::i;:::-;30069:351;30007:413;;:::o;31362:162::-;31488:28;31498:4;31504:2;31508:7;31488:9;:28::i;44032:171::-;7070:6;;-1:-1:-1;;;;;7070:6:0;5748:10;7217:23;7209:68;;;;-1:-1:-1;;;7209:68:0;;;;;;;:::i;:::-;1865:1:::1;2463:7;;:19;;2455:63;;;::::0;-1:-1:-1;;;2455:63:0;;14914:2:1;2455:63:0::1;::::0;::::1;14896:21:1::0;14953:2;14933:18;;;14926:30;14992:33;14972:18;;;14965:61;15043:18;;2455:63:0::1;14712:355:1::0;2455:63:0::1;1865:1;2596:7;:18:::0;44111:21:::2;44145:50;43981:42;44111:21:::0;44145:17:::2;:50::i;:::-;-1:-1:-1::0;1821:1:0::1;2775:7;:22:::0;44032:171::o;43761:144::-;43836:11;42695:1;42681:11;:15;:56;;;;;42715:22;;42700:11;:37;;42681:56;42673:89;;;;-1:-1:-1;;;42673:89:0;;7551:2:1;42673:89:0;;;7533:21:1;7590:2;7570:18;;;7563:30;-1:-1:-1;;;7609:18:1;;;7602:50;7669:18;;42673:89:0;7349:344:1;42673:89:0;42811:10;;42796:11;42781:12;;:26;;;;:::i;:::-;:40;;42773:73;;;;-1:-1:-1;;;42773:73:0;;13334:2:1;42773:73:0;;;13316:21:1;13373:2;13353:18;;;13346:30;-1:-1:-1;;;13392:18:1;;;13385:50;13452:18;;42773:73:0;13132:344:1;42773:73:0;7070:6;;-1:-1:-1;;;;;7070:6:0;5748:10;7217:23:::1;7209:68;;;;-1:-1:-1::0;;;7209:68:0::1;;;;;;;:::i;:::-;43870:27:::2;43880:3;43885:11;43870:9;:27::i;31595:177::-:0;31725:39;31742:4;31748:2;31752:7;31725:39;;;;;;;;;;;;:16;:39::i;41768:169::-;7070:6;;-1:-1:-1;;;;;7070:6:0;5748:10;7217:23;7209:68;;;;-1:-1:-1;;;7209:68:0;;;;;;;:::i;:::-;41857:15:::1;::::0;::::1;;41856:16;41848:45;;;::::0;-1:-1:-1;;;41848:45:0;;12586:2:1;41848:45:0::1;::::0;::::1;12568:21:1::0;12625:2;12605:18;;;12598:30;-1:-1:-1;;;12644:18:1;;;12637:46;12700:18;;41848:45:0::1;12384:340:1::0;41848:45:0::1;41904:25:::0;;::::1;::::0;:8:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41768:169:::0;:::o;42094:122::-;7070:6;;-1:-1:-1;;;;;7070:6:0;5748:10;7217:23;7209:68;;;;-1:-1:-1;;;7209:68:0;;;;;;;:::i;:::-;42171:22:::1;:37:::0;42094:122::o;28724:124::-;28788:7;28815:20;28827:7;28815:11;:20::i;:::-;:25;;28724:124;-1:-1:-1;;28724:124:0:o;27497:221::-;27561:7;-1:-1:-1;;;;;27589:19:0;;27581:75;;;;-1:-1:-1;;;27581:75:0;;9517:2:1;27581:75:0;;;9499:21:1;9556:2;9536:18;;;9529:30;9595:34;9575:18;;;9568:62;-1:-1:-1;;;9646:18:1;;;9639:41;9697:19;;27581:75:0;9315:407:1;27581:75:0;-1:-1:-1;;;;;;27682:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27682:27:0;;27497:221::o;7648:103::-;7070:6;;-1:-1:-1;;;;;7070:6:0;5748:10;7217:23;7209:68;;;;-1:-1:-1;;;7209:68:0;;;;;;;:::i;:::-;7713:30:::1;7740:1;7713:18;:30::i;:::-;7648:103::o:0;42224:109::-;7070:6;;-1:-1:-1;;;;;7070:6:0;5748:10;7217:23;7209:68;;;;-1:-1:-1;;;7209:68:0;;;;;;;:::i;:::-;42296:14:::1;:29:::0;;-1:-1:-1;;42296:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42224:109::o;42341:154::-;7070:6;;-1:-1:-1;;;;;7070:6:0;5748:10;7217:23;7209:68;;;;-1:-1:-1;;;7209:68:0;;;;;;;:::i;:::-;42436:26:::1;:51:::0;42341:154::o;41402:96::-;7070:6;;-1:-1:-1;;;;;7070:6:0;5748:10;7217:23;7209:68;;;;-1:-1:-1;;;7209:68:0;;;;;;;:::i;:::-;41471:5:::1;:19:::0;41402:96::o;29084:104::-;29140:13;29173:7;29166:14;;;;;:::i;42874:879::-;42939:11;42695:1;42681:11;:15;:56;;;;;42715:22;;42700:11;:37;;42681:56;42673:89;;;;-1:-1:-1;;;42673:89:0;;7551:2:1;42673:89:0;;;7533:21:1;7590:2;7570:18;;;7563:30;-1:-1:-1;;;7609:18:1;;;7602:50;7669:18;;42673:89:0;7349:344:1;42673:89:0;42811:10;;42796:11;42781:12;;:26;;;;:::i;:::-;:40;;42773:73;;;;-1:-1:-1;;;42773:73:0;;13334:2:1;42773:73:0;;;13316:21:1;13373:2;13353:18;;;13346:30;-1:-1:-1;;;13392:18:1;;;13385:50;13452:18;;42773:73:0;13132:344:1;42773:73:0;42971:14:::1;::::0;::::1;;42963:46;;;::::0;-1:-1:-1;;;42963:46:0;;11887:2:1;42963:46:0::1;::::0;::::1;11869:21:1::0;11926:2;11906:18;;;11899:30;-1:-1:-1;;;11945:18:1;;;11938:49;12004:18;;42963:46:0::1;11685:343:1::0;42963:46:0::1;43022:13;43046:11;43038:5;;:19;;;;:::i;:::-;43022:35;;43089:26;;43074:12;;:41;43070:566;;;43206:10;43132:25;43189:28:::0;;;:16:::1;:28;::::0;;;;;43160:26:::1;::::0;:57:::1;::::0;43189:28;43160:57:::1;:::i;:::-;43132:85:::0;-1:-1:-1;43236:21:0;;43232:393:::1;;43297:17;43282:11;:32;43278:332;;43368:5;::::0;43348:25:::1;::::0;:17;:25:::1;:::i;:::-;43339:34;::::0;;::::1;:::i;:::-;;;43396:50;43416:10;43428:17;43396:19;:50::i;:::-;43278:332;;;43518:5;::::0;43504:19:::1;::::0;:11;:19:::1;:::i;:::-;43495:28;::::0;;::::1;:::i;:::-;;;43546:44;43566:10;43578:11;43546:19;:44::i;:::-;43117:519;43070:566;43669:5;43656:9;:18;;43648:50;;;::::0;-1:-1:-1;;;43648:50:0;;16104:2:1;43648:50:0::1;::::0;::::1;16086:21:1::0;16143:2;16123:18;;;16116:30;-1:-1:-1;;;16162:18:1;;;16155:49;16221:18;;43648:50:0::1;15902:343:1::0;43648:50:0::1;43711:34;43721:10;43733:11;43711:9;:34::i;30772:288::-:0;-1:-1:-1;;;;;30867:24:0;;5748:10;30867:24;;30859:63;;;;-1:-1:-1;;;30859:63:0;;11113:2:1;30859:63:0;;;11095:21:1;11152:2;11132:18;;;11125:30;11191:28;11171:18;;;11164:56;11237:18;;30859:63:0;10911:350:1;30859:63:0;5748:10;30935:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30935:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30935:53:0;;;;;;;;;;31004:48;;6255:41:1;;;30935:42:0;;5748:10;31004:48;;6228:18:1;31004:48:0;;;;;;;30772:288;;:::o;41945:141::-;7070:6;;-1:-1:-1;;;;;7070:6:0;5748:10;7217:23;7209:68;;;;-1:-1:-1;;;7209:68:0;;;;;;;:::i;:::-;42032:26:::1;:46:::0;41945:141::o;31843:355::-;32002:28;32012:4;32018:2;32022:7;32002:9;:28::i;:::-;32063:48;32086:4;32092:2;32096:7;32105:5;32063:22;:48::i;:::-;32041:149;;;;-1:-1:-1;;;32041:149:0;;;;;;;:::i;:::-;31843:355;;;;:::o;41506:254::-;7070:6;;-1:-1:-1;;;;;7070:6:0;5748:10;7217:23;7209:68;;;;-1:-1:-1;;;7209:68:0;;;;;;;:::i;:::-;41605:10:::1;;41590:12;:25;41582:60;;;::::0;-1:-1:-1;;;41582:60:0;;12235:2:1;41582:60:0::1;::::0;::::1;12217:21:1::0;12274:2;12254:18;;;12247:30;-1:-1:-1;;;12293:18:1;;;12286:52;12355:18;;41582:60:0::1;12033:346:1::0;41582:60:0::1;41677:12;;41661;:28;;41653:63;;;::::0;-1:-1:-1;;;41653:63:0;;12235:2:1;41653:63:0::1;::::0;::::1;12217:21:1::0;12274:2;12254:18;;;12247:30;-1:-1:-1;;;12293:18:1;;;12286:52;12355:18;;41653:63:0::1;12033:346:1::0;41653:63:0::1;41727:10;:25:::0;41506:254::o;29259:344::-;29332:13;29366:16;29374:7;32510:4;32544:12;-1:-1:-1;32534:22:0;32453:111;29366:16;29358:76;;;;-1:-1:-1;;;29358:76:0;;10697:2:1;29358:76:0;;;10679:21:1;10736:2;10716:18;;;10709:30;10775:34;10755:18;;;10748:62;-1:-1:-1;;;10826:18:1;;;10819:45;10881:19;;29358:76:0;10495:411:1;29358:76:0;29447:21;29471:10;:8;:10::i;:::-;29447:34;;29505:7;29499:21;29524:1;29499:26;;:96;;;;;;;;;;;;;;;;;29552:7;29561:18;:7;:16;:18::i;:::-;29535:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29499:96;29492:103;29259:344;-1:-1:-1;;;29259:344:0:o;42503:86::-;7070:6;;-1:-1:-1;;;;;7070:6:0;5748:10;7217:23;7209:68;;;;-1:-1:-1;;;7209:68:0;;;;;;;:::i;:::-;42559:15:::1;:22:::0;;-1:-1:-1;;42559:22:0::1;42577:4;42559:22;::::0;;42503:86::o;7906:201::-;7070:6;;-1:-1:-1;;;;;7070:6:0;5748:10;7217:23;7209:68;;;;-1:-1:-1;;;7209:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7995:22:0;::::1;7987:73;;;::::0;-1:-1:-1;;;7987:73:0;;6733:2:1;7987:73:0::1;::::0;::::1;6715:21:1::0;6772:2;6752:18;;;6745:30;6811:34;6791:18;;;6784:62;-1:-1:-1;;;6862:18:1;;;6855:36;6908:19;;7987:73:0::1;6531:402:1::0;7987:73:0::1;8071:28;8090:8;8071:18;:28::i;:::-;7906:201:::0;:::o;37233:196::-;37348:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37348:29:0;-1:-1:-1;;;;;37348:29:0;;;;;;;;;37393:28;;37348:24;;37393:28;;;;;;;37233:196;;;:::o;35181:1934::-;35296:35;35334:20;35346:7;35334:11;:20::i;:::-;35409:18;;35296:58;;-1:-1:-1;35367:22:0;;-1:-1:-1;;;;;35393:34:0;5748:10;-1:-1:-1;;;;;35393:34:0;;:83;;;-1:-1:-1;5748:10:0;35440:20;35452:7;35440:11;:20::i;:::-;-1:-1:-1;;;;;35440:36:0;;35393:83;:146;;;-1:-1:-1;35506:18:0;;35489:50;;5748:10;31131:164;:::i;35489:50::-;35367:173;;35561:17;35553:80;;;;-1:-1:-1;;;35553:80:0;;11468:2:1;35553:80:0;;;11450:21:1;11507:2;11487:18;;;11480:30;11546:34;11526:18;;;11519:62;-1:-1:-1;;;11597:18:1;;;11590:48;11655:19;;35553:80:0;11266:414:1;35553:80:0;35676:4;-1:-1:-1;;;;;35654:26:0;:13;:18;;;-1:-1:-1;;;;;35654:26:0;;35646:77;;;;-1:-1:-1;;;35646:77:0;;9929:2:1;35646:77:0;;;9911:21:1;9968:2;9948:18;;;9941:30;10007:34;9987:18;;;9980:62;-1:-1:-1;;;10058:18:1;;;10051:36;10104:19;;35646:77:0;9727:402:1;35646:77:0;-1:-1:-1;;;;;35742:16:0;;35734:66;;;;-1:-1:-1;;;35734:66:0;;7900:2:1;35734:66:0;;;7882:21:1;7939:2;7919:18;;;7912:30;7978:34;7958:18;;;7951:62;-1:-1:-1;;;8029:18:1;;;8022:35;8074:19;;35734:66:0;7698:401:1;35734:66:0;35921:49;35938:1;35942:7;35951:13;:18;;;35921:8;:49::i;:::-;-1:-1:-1;;;;;36258:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;36258:31:0;;;-1:-1:-1;;;;;36258:31:0;;;-1:-1:-1;;36258:31:0;;;;;;;36300:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36300:29:0;;;;;;;;;;;;;36342:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36383:61:0;;;;-1:-1:-1;;;36428:15:0;36383:61;;;;;;36706:11;;;36732:24;;;;;:29;36706:11;;36732:29;36728:275;;36796:20;36804:11;32510:4;32544:12;-1:-1:-1;32534:22:0;32453:111;36796:20;36792:200;;;36869:18;;;36837:24;;;:11;:24;;;;;;;;:50;;36948:28;;;;36906:70;;-1:-1:-1;;;36906:70:0;-1:-1:-1;;;;;;36906:70:0;;;-1:-1:-1;;;;;36837:50:0;;;36906:70;;;;;;;36792:200;36237:773;37046:7;37042:2;-1:-1:-1;;;;;37027:27:0;37036:4;-1:-1:-1;;;;;37027:27:0;;;;;;;;;;;37065:42;35285:1830;;35181:1934;;;:::o;10607:317::-;10722:6;10697:21;:31;;10689:73;;;;-1:-1:-1;;;10689:73:0;;8733:2:1;10689:73:0;;;8715:21:1;8772:2;8752:18;;;8745:30;8811:31;8791:18;;;8784:59;8860:18;;10689:73:0;8531:353:1;10689:73:0;10776:12;10794:9;-1:-1:-1;;;;;10794:14:0;10816:6;10794:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10775:52;;;10846:7;10838:78;;;;-1:-1:-1;;;10838:78:0;;8306:2:1;10838:78:0;;;8288:21:1;8345:2;8325:18;;;8318:30;8384:34;8364:18;;;8357:62;8455:28;8435:18;;;8428:56;8501:19;;10838:78:0;8104:422:1;32572:104:0;32641:27;32651:2;32655:8;32641:27;;;;;;;;;;;;:9;:27::i;28157:505::-;-1:-1:-1;;;;;;;;;;;;;;;;;28260:16:0;28268:7;32510:4;32544:12;-1:-1:-1;32534:22:0;32453:111;28260:16;28252:71;;;;-1:-1:-1;;;28252:71:0;;7140:2:1;28252:71:0;;;7122:21:1;7179:2;7159:18;;;7152:30;7218:34;7198:18;;;7191:62;-1:-1:-1;;;7269:18:1;;;7262:40;7319:19;;28252:71:0;6938:406:1;28252:71:0;28373:7;28353:225;28416:31;28450:17;;;:11;:17;;;;;;;;;28416:51;;;;;;;;;-1:-1:-1;;;;;28416:51:0;;;;;-1:-1:-1;;;28416:51:0;;;;;;;;;;;;28486:28;28482:85;;28542:9;28157:505;-1:-1:-1;;;28157:505:0:o;28482:85::-;-1:-1:-1;;;28393:6:0;28353:225;;8267:191;8360:6;;;-1:-1:-1;;;;;8377:17:0;;;-1:-1:-1;;;;;;8377:17:0;;;;;;;8410:40;;8360:6;;;8377:17;8360:6;;8410:40;;8341:16;;8410:40;8330:128;8267:191;:::o;41111:120::-;-1:-1:-1;;;;;41190:24:0;;;;;;:16;:24;;;;;:33;;41218:5;;41190:24;:33;;41218:5;;41190:33;:::i;:::-;;;;-1:-1:-1;;;;41111:120:0:o;37994:804::-;38149:4;-1:-1:-1;;;;;38170:13:0;;9608:20;9656:8;38166:625;;38206:72;;-1:-1:-1;;;38206:72:0;;-1:-1:-1;;;;;38206:36:0;;;;;:72;;5748:10;;38257:4;;38263:7;;38272:5;;38206:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38206:72:0;;;;;;;;-1:-1:-1;;38206:72:0;;;;;;;;;;;;:::i;:::-;;;38202:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38452:13:0;;38448:273;;38495:61;;-1:-1:-1;;;38495:61:0;;;;;;;:::i;38448:273::-;38671:6;38665:13;38656:6;38652:2;38648:15;38641:38;38202:534;-1:-1:-1;;;;;;38329:55:0;-1:-1:-1;;;38329:55:0;;-1:-1:-1;38322:62:0;;38166:625;-1:-1:-1;38775:4:0;38166:625;37994:804;;;;;;:::o;41262:109::-;41322:13;41355:8;41348:15;;;;;:::i;3177:723::-;3233:13;3454:10;3450:53;;-1:-1:-1;;3481:10:0;;;;;;;;;;;;-1:-1:-1;;;3481:10:0;;;;;3177:723::o;3450:53::-;3528:5;3513:12;3569:78;3576:9;;3569:78;;3602:8;;;;:::i;:::-;;-1:-1:-1;3625:10:0;;-1:-1:-1;3633:2:0;3625:10;;:::i;:::-;;;3569:78;;;3657:19;3689:6;3679:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3679:17:0;;3657:39;;3707:154;3714:10;;3707:154;;3741:11;3751:1;3741:11;;:::i;:::-;;-1:-1:-1;3810:10:0;3818:2;3810:5;:10;:::i;:::-;3797:24;;:2;:24;:::i;:::-;3784:39;;3767:6;3774;3767:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3767:56:0;;;;;;;;-1:-1:-1;3838:11:0;3847:2;3838:11;;:::i;:::-;;;3707:154;;33039:163;33162:32;33168:2;33172:8;33182:5;33189:4;33600:20;33623:12;-1:-1:-1;;;;;33654:16:0;;33646:62;;;;-1:-1:-1;;;33646:62:0;;14103:2:1;33646:62:0;;;14085:21:1;14142:2;14122:18;;;14115:30;14181:34;14161:18;;;14154:62;-1:-1:-1;;;14232:18:1;;;14225:31;14273:19;;33646:62:0;13901:397:1;33646:62:0;33727:13;33719:66;;;;-1:-1:-1;;;33719:66:0;;14505:2:1;33719:66:0;;;14487:21:1;14544:2;14524:18;;;14517:30;14583:34;14563:18;;;14556:62;-1:-1:-1;;;14634:18:1;;;14627:38;14682:19;;33719:66:0;14303:404:1;33719:66:0;-1:-1:-1;;;;;34129:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;34129:45:0;;-1:-1:-1;;;;;34129:45:0;;;;;;;;;;34185:50;;;;;;;;;;;;;;34248:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;34294:66:0;;;;-1:-1:-1;;;34344:15:0;34294:66;;;;;;;34248:25;;34421:379;34441:8;34437:1;:12;34421:379;;;34476:38;;34501:12;;-1:-1:-1;;;;;34476:38:0;;;34493:1;;34476:38;;34493:1;;34476:38;34533:4;34529:229;;;34588:59;34619:1;34623:2;34627:12;34641:5;34588:22;:59::i;:::-;34558:184;;;;-1:-1:-1;;;34558:184:0;;;;;;;:::i;:::-;34774:14;;;;;34451:3;34421:379;;;-1:-1:-1;34812:12:0;:27;34859:60;31843:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:637::-;4842:3;4880:6;4874:13;4896:53;4942:6;4937:3;4930:4;4922:6;4918:17;4896:53;:::i;:::-;5012:13;;4971:16;;;;5034:57;5012:13;4971:16;5068:4;5056:17;;5034:57;:::i;:::-;-1:-1:-1;;;5113:20:1;;5142:22;;;5191:1;5180:13;;4562:637;-1:-1:-1;;;;4562:637:1:o;5622:488::-;-1:-1:-1;;;;;5891:15:1;;;5873:34;;5943:15;;5938:2;5923:18;;5916:43;5990:2;5975:18;;5968:34;;;6038:3;6033:2;6018:18;;6011:31;;;5816:4;;6059:45;;6084:19;;6076:6;6059:45;:::i;:::-;6051:53;5622:488;-1:-1:-1;;;;;;5622:488:1:o;6307:219::-;6456:2;6445:9;6438:21;6419:4;6476:44;6516:2;6505:9;6501:18;6493:6;6476:44;:::i;10134:356::-;10336:2;10318:21;;;10355:18;;;10348:30;10414:34;10409:2;10394:18;;10387:62;10481:2;10466:18;;10134:356::o;13481:415::-;13683:2;13665:21;;;13722:2;13702:18;;;13695:30;13761:34;13756:2;13741:18;;13734:62;-1:-1:-1;;;13827:2:1;13812:18;;13805:49;13886:3;13871:19;;13481:415::o;16432:128::-;16472:3;16503:1;16499:6;16496:1;16493:13;16490:39;;;16509:18;;:::i;:::-;-1:-1:-1;16545:9:1;;16432:128::o;16565:120::-;16605:1;16631;16621:35;;16636:18;;:::i;:::-;-1:-1:-1;16670:9:1;;16565:120::o;16690:168::-;16730:7;16796:1;16792;16788:6;16784:14;16781:1;16778:21;16773:1;16766:9;16759:17;16755:45;16752:71;;;16803:18;;:::i;:::-;-1:-1:-1;16843:9:1;;16690:168::o;16863:125::-;16903:4;16931:1;16928;16925:8;16922:34;;;16936:18;;:::i;:::-;-1:-1:-1;16973:9:1;;16863:125::o;16993:258::-;17065:1;17075:113;17089:6;17086:1;17083:13;17075:113;;;17165:11;;;17159:18;17146:11;;;17139:39;17111:2;17104:10;17075:113;;;17206:6;17203:1;17200:13;17197:48;;;-1:-1:-1;;17241:1:1;17223:16;;17216:27;16993:258::o;17256:380::-;17335:1;17331:12;;;;17378;;;17399:61;;17453:4;17445:6;17441:17;17431:27;;17399:61;17506:2;17498:6;17495:14;17475:18;17472:38;17469:161;;;17552:10;17547:3;17543:20;17540:1;17533:31;17587:4;17584:1;17577:15;17615:4;17612:1;17605:15;17469:161;;17256:380;;;:::o;17641:135::-;17680:3;-1:-1:-1;;17701:17:1;;17698:43;;;17721:18;;:::i;:::-;-1:-1:-1;17768:1:1;17757:13;;17641:135::o;17781:112::-;17813:1;17839;17829:35;;17844:18;;:::i;:::-;-1:-1:-1;17878:9:1;;17781:112::o;17898:127::-;17959:10;17954:3;17950:20;17947:1;17940:31;17990:4;17987:1;17980:15;18014:4;18011:1;18004:15;18030:127;18091:10;18086:3;18082:20;18079:1;18072:31;18122:4;18119:1;18112:15;18146:4;18143:1;18136:15;18162:127;18223:10;18218:3;18214:20;18211:1;18204:31;18254:4;18251:1;18244:15;18278:4;18275:1;18268:15;18294:127;18355:10;18350:3;18346:20;18343:1;18336:31;18386:4;18383:1;18376:15;18410:4;18407:1;18400:15;18426:131;-1:-1:-1;;;;;;18500:32:1;;18490:43;;18480:71;;18547:1;18544;18537:12
Swarm Source
ipfs://72eb6faeddf394a91fa71c42417ed1c4e9099b9d0f374fd67dd787b59b51caff
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.