ERC-721
Overview
Max Total Supply
4,000 AKEMI
Holders
720
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 AKEMILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TalesOfAkemi
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-26 */ // SPDX-License-Identifier: MIT // 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: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/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: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @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 _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // 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_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * 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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } 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; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _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); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @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 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { 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 TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * 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`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ 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. * And also called after one token has been burned. * * 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` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.4; contract TalesOfAkemi is ERC721A, Ownable{ 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_PER_TX; bool public IS_SALE_ACTIVE; uint256 public FREE_MINT_SUPPLY; bool public METADATA_FROZEN; mapping(address => uint256) private freeMintAdressData; constructor(uint256 price, uint256 maxSupply, string memory baseUri, uint256 freeMintLimitPerWallet, uint256 maxMintPerTX, bool isSaleActive, uint256 freeMintSupply) ERC721A("Tales of Akemi", "AKEMI"){ PRICE = price; MAX_SUPPLY = maxSupply; BASE_URI = baseUri; FREE_MINT_LIMIT_PER_WALLET = freeMintLimitPerWallet; MAX_MINT_PER_TX = maxMintPerTX; IS_SALE_ACTIVE = isSaleActive; FREE_MINT_SUPPLY = freeMintSupply; mintOwner(msg.sender, 10); } function updateFreeMintsAdresses(address minter, uint256 count) private{ freeMintAdressData[minter] += count; } function returnCurrentMinterFreeMint(address minter) public view returns (uint256){ return freeMintAdressData[minter]; } function _baseURI() internal view virtual override returns (string memory){ return BASE_URI; } function setPrice(uint256 price) external onlyOwner(){ PRICE = price; } function lowerMaxSupply(uint256 newMaxSupply) external onlyOwner{ require (newMaxSupply < MAX_SUPPLY, "MAX SUPPLY MORE THAN NEW MAX SUPPLY"); require (newMaxSupply >= _currentIndex, "NEW MAX SUPPLY IS BIGGER OR EQUAL TO CURRENT INDEX"); MAX_SUPPLY = newMaxSupply; } function setBaseURI(string memory baseUri) external onlyOwner { require(!METADATA_FROZEN, "METADATA FROZEN"); BASE_URI = baseUri; } function setFreeMintLimitPerWallet(uint256 freeMintLimitPerWallet) external onlyOwner{ FREE_MINT_LIMIT_PER_WALLET = freeMintLimitPerWallet; } function setSalesActive(bool isSaleActive) external onlyOwner{ IS_SALE_ACTIVE = isSaleActive; } function setFreeMintSupply(uint256 freeMintSupply) external onlyOwner{ FREE_MINT_SUPPLY = freeMintSupply; } function FreezeMetaData() external onlyOwner{ METADATA_FROZEN = true; } // ---------- MINT modifier mintRegulation(uint256 _mintAmount){ require(_mintAmount > 0 && _mintAmount <= MAX_MINT_PER_TX, "MINT AMOUNT IS LESS THAN 0 OR MINT AMOUNT EXCEEDS MINT AMOUNT PER TX"); require(_currentIndex + _mintAmount <= MAX_SUPPLY, "ALL SOLD. NO SUPPLY."); _; } function mint(uint256 _mintAmount) public payable mintRegulation(_mintAmount) { require(IS_SALE_ACTIVE, "Sale is not active!"); uint256 totalPayable = _mintAmount * PRICE ; if (_currentIndex < FREE_MINT_SUPPLY) { uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET - freeMintAdressData[msg.sender]; if (remainingFreeMint > 0) { if (_mintAmount >= remainingFreeMint) { totalPayable -= remainingFreeMint * PRICE; updateFreeMintsAdresses(msg.sender, remainingFreeMint); } else { totalPayable -= _mintAmount * PRICE; updateFreeMintsAdresses(msg.sender, _mintAmount); } } } require(msg.value >= totalPayable, "Insufficient funds!"); _safeMint(msg.sender, _mintAmount); } function mintOwner(address _to, uint256 _mintAmount) public mintRegulation(_mintAmount) onlyOwner { _safeMint(_to, _mintAmount); } function withdraw() public onlyOwner{ require(address(this).balance > 0, "You have zero balance"); payable(owner()).transfer(address(this).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":"freeMintLimitPerWallet","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTX","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"},{"internalType":"uint256","name":"freeMintSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreezeMetaData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_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":[{"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":"minter","type":"address"}],"name":"returnCurrentMinterFreeMint","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintLimitPerWallet","type":"uint256"}],"name":"setFreeMintLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintSupply","type":"uint256"}],"name":"setFreeMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isSaleActive","type":"bool"}],"name":"setSalesActive","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
60806040523480156200001157600080fd5b50604051620027c8380380620027c88339810160408190526200003491620006b9565b604080518082018252600e81526d54616c6573206f6620416b656d6960901b602080830191825283518085019094526005845264414b454d4960d81b9084015281519192916200008791600291620005ca565b5080516200009d906003906020840190620005ca565b50506000805550620000af3362000106565b6009879055600a8690558451620000ce90600b906020880190620005ca565b50600c849055600d839055600e805460ff1916831515179055600f819055620000f933600a62000158565b50505050505050620008b6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b806000811180156200016c5750600d548111155b620001f25760405162461bcd60e51b8152602060048201526044602482018190527f4d494e5420414d4f554e54204953204c455353205448414e2030204f52204d49908201527f4e5420414d4f554e542045584345454453204d494e5420414d4f554e542050456064820152630a440a8b60e31b608482015260a4015b60405180910390fd5b600a54816000546200020591906200080d565b1115620002555760405162461bcd60e51b815260206004820152601460248201527f414c4c20534f4c442e204e4f20535550504c592e0000000000000000000000006044820152606401620001e9565b6008546001600160a01b03163314620002b15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001e9565b620002bd8383620002c2565b505050565b620002e4828260405180602001604052806000815250620002e860201b60201c565b5050565b620002bd83838360016000546001600160a01b0385166200031b57604051622e076360e81b815260040160405180910390fd5b836200033a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015620003f35750620003f3876001600160a01b0316620004ba60201b620010931760201c565b1562000473575b60405182906001600160a01b03891690600090600080516020620027a8833981519152908290a460018201916200043790600090899088620004c9565b62000455576040516368d2bf6b60e11b815260040160405180910390fd5b80821415620003fa5782600054146200046d57600080fd5b620004a9565b5b6040516001830192906001600160a01b03891690600090600080516020620027a8833981519152908290a48082141562000474575b506000555050505050565b50505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029062000500903390899088908890600401620007b7565b602060405180830381600087803b1580156200051b57600080fd5b505af19250505080156200054e575060408051601f3d908101601f191682019092526200054b9181019062000686565b60015b620005ad573d8080156200057f576040519150601f19603f3d011682016040523d82523d6000602084013e62000584565b606091505b508051620005a5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620005d89062000863565b90600052602060002090601f016020900481019282620005fc576000855562000647565b82601f106200061757805160ff191683800117855562000647565b8280016001018555821562000647579182015b82811115620006475782518255916020019190600101906200062a565b506200065592915062000659565b5090565b5b808211156200065557600081556001016200065a565b805180151581146200068157600080fd5b919050565b6000602082840312156200069957600080fd5b81516001600160e01b031981168114620006b257600080fd5b9392505050565b600080600080600080600060e0888a031215620006d557600080fd5b8751602089015160408a015191985096506001600160401b0380821115620006fc57600080fd5b818a0191508a601f8301126200071157600080fd5b815181811115620007265762000726620008a0565b604051601f8201601f19908116603f01168101908382118183101715620007515762000751620008a0565b816040528281528d60208487010111156200076b57600080fd5b6200077e83602083016020880162000834565b80995050505050506060880151935060808801519250620007a260a0890162000670565b915060c0880151905092959891949750929550565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620007f68160a085016020870162000834565b601f01601f19169190910160a00195945050505050565b600082198211156200082f57634e487b7160e01b600052601160045260246000fd5b500190565b60005b838110156200085157818101518382015260200162000837565b83811115620004b45750506000910152565b600181811c908216806200087857607f821691505b602082108114156200089a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611ee280620008c66000396000f3fe6080604052600436106102045760003560e01c806376d02b7111610118578063a82fe0ac116100a0578063c87b56dd1161006f578063c87b56dd146105af578063e64369d9146105cf578063e985e9c5146105e4578063f2fde38b1461062d578063fdb4953a1461064d57600080fd5b8063a82fe0ac1461052f578063b88d4fde1461054f578063c4c39ed51461056f578063c4e9374d1461058f57600080fd5b80638f7a715f116100e75780638f7a715f146104a757806391b7f5ed146104c757806395d89b41146104e7578063a0712d68146104fc578063a22cb4651461050f57600080fd5b806376d02b71146104435780638d859f3e1461045d5780638da5cb5b146104735780638ecad7211461049157600080fd5b8063343b7b8a1161019b57806355f804b31161016a57806355f804b3146103b85780636352211e146103d857806363eb8bb6146103f857806370a082311461040e578063715018a61461042e57600080fd5b8063343b7b8a1461032d5780633ccfd60b14610363578063408cbf941461037857806342842e0e1461039857600080fd5b806310b0c052116101d757806310b0c052146102ba57806318160ddd146102de57806323b872dd146102f757806332cb6b0c1461031757600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611b60565b610667565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106b9565b6040516102359190611c94565b34801561026c57600080fd5b5061028061027b366004611be3565b61074b565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611b1b565b61078f565b005b3480156102c657600080fd5b506102d0600c5481565b604051908152602001610235565b3480156102ea57600080fd5b50600154600054036102d0565b34801561030357600080fd5b506102b8610312366004611a39565b61081d565b34801561032357600080fd5b506102d0600a5481565b34801561033957600080fd5b506102d06103483660046119eb565b6001600160a01b031660009081526011602052604090205490565b34801561036f57600080fd5b506102b8610828565b34801561038457600080fd5b506102b8610393366004611b1b565b6108df565b3480156103a457600080fd5b506102b86103b3366004611a39565b610998565b3480156103c457600080fd5b506102b86103d3366004611b9a565b6109b3565b3480156103e457600080fd5b506102806103f3366004611be3565b610a39565b34801561040457600080fd5b506102d0600f5481565b34801561041a57600080fd5b506102d06104293660046119eb565b610a4b565b34801561043a57600080fd5b506102b8610a9a565b34801561044f57600080fd5b50600e546102299060ff1681565b34801561046957600080fd5b506102d060095481565b34801561047f57600080fd5b506008546001600160a01b0316610280565b34801561049d57600080fd5b506102d0600d5481565b3480156104b357600080fd5b506102b86104c2366004611be3565b610ad0565b3480156104d357600080fd5b506102b86104e2366004611be3565b610aff565b3480156104f357600080fd5b50610253610b2e565b6102b861050a366004611be3565b610b3d565b34801561051b57600080fd5b506102b861052a366004611af1565b610cf1565b34801561053b57600080fd5b506102b861054a366004611b45565b610d87565b34801561055b57600080fd5b506102b861056a366004611a75565b610dc4565b34801561057b57600080fd5b506102b861058a366004611be3565b610e15565b34801561059b57600080fd5b506102b86105aa366004611be3565b610e44565b3480156105bb57600080fd5b506102536105ca366004611be3565b610f3d565b3480156105db57600080fd5b506102b8610fc2565b3480156105f057600080fd5b506102296105ff366004611a06565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063957600080fd5b506102b86106483660046119eb565b610ffb565b34801561065957600080fd5b506010546102299060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061069857506001600160e01b03198216635b5e139f60e01b145b806106b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106c890611dd4565b80601f01602080910402602001604051908101604052809291908181526020018280546106f490611dd4565b80156107415780601f1061071657610100808354040283529160200191610741565b820191906000526020600020905b81548152906001019060200180831161072457829003601f168201915b5050505050905090565b6000610756826110a2565b610773576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079a82610a39565b9050806001600160a01b0316836001600160a01b031614156107cf5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107ef57506107ed81336105ff565b155b1561080d576040516367d9dca160e11b815260040160405180910390fd5b6108188383836110cd565b505050565b610818838383611129565b6008546001600160a01b0316331461085b5760405162461bcd60e51b815260040161085290611d11565b60405180910390fd5b600047116108a35760405162461bcd60e51b8152602060048201526015602482015274596f752068617665207a65726f2062616c616e636560581b6044820152606401610852565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108dc573d6000803e3d6000fd5b50565b806000811180156108f25750600d548111155b61090e5760405162461bcd60e51b815260040161085290611ca7565b600a548160005461091f9190611d46565b11156109645760405162461bcd60e51b815260206004820152601460248201527320a6261029a7a622171027279029aaa828262c9760611b6044820152606401610852565b6008546001600160a01b0316331461098e5760405162461bcd60e51b815260040161085290611d11565b6108188383611319565b61081883838360405180602001604052806000815250610dc4565b6008546001600160a01b031633146109dd5760405162461bcd60e51b815260040161085290611d11565b60105460ff1615610a225760405162461bcd60e51b815260206004820152600f60248201526e26a2aa20a220aa2090232927ad22a760891b6044820152606401610852565b8051610a3590600b9060208401906118b0565b5050565b6000610a4482611333565b5192915050565b60006001600160a01b038216610a74576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ac45760405162461bcd60e51b815260040161085290611d11565b610ace600061144f565b565b6008546001600160a01b03163314610afa5760405162461bcd60e51b815260040161085290611d11565b600c55565b6008546001600160a01b03163314610b295760405162461bcd60e51b815260040161085290611d11565b600955565b6060600380546106c890611dd4565b80600081118015610b505750600d548111155b610b6c5760405162461bcd60e51b815260040161085290611ca7565b600a5481600054610b7d9190611d46565b1115610bc25760405162461bcd60e51b815260206004820152601460248201527320a6261029a7a622171027279029aaa828262c9760611b6044820152606401610852565b600e5460ff16610c0a5760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610852565b600060095483610c1a9190611d72565b9050600f546000541015610ca15733600090815260116020526040812054600c54610c459190611d91565b90508015610c9f57808410610c7c57600954610c619082611d72565b610c6b9083611d91565b9150610c7733826114a1565b610c9f565b600954610c899085611d72565b610c939083611d91565b9150610c9f33856114a1565b505b80341015610ce75760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610852565b6108183384611319565b6001600160a01b038216331415610d1b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610db15760405162461bcd60e51b815260040161085290611d11565b600e805460ff1916911515919091179055565b610dcf848484611129565b6001600160a01b0383163b15158015610df15750610def848484846114d2565b155b15610e0f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161085290611d11565b600f55565b6008546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161085290611d11565b600a548110610ecb5760405162461bcd60e51b815260206004820152602360248201527f4d415820535550504c59204d4f5245205448414e204e4557204d415820535550604482015262504c5960e81b6064820152608401610852565b600054811015610f385760405162461bcd60e51b815260206004820152603260248201527f4e4557204d415820535550504c5920495320424947474552204f52204551554160448201527109840a89e4086aaa4a48a9ca840929c888ab60731b6064820152608401610852565b600a55565b6060610f48826110a2565b610f6557604051630a14c4b560e41b815260040160405180910390fd5b6000610f6f6115ca565b9050805160001415610f905760405180602001604052806000815250610fbb565b80610f9a846115d9565b604051602001610fab929190611c28565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610fec5760405162461bcd60e51b815260040161085290611d11565b6010805460ff19166001179055565b6008546001600160a01b031633146110255760405162461bcd60e51b815260040161085290611d11565b6001600160a01b03811661108a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610852565b6108dc8161144f565b6001600160a01b03163b151590565b60008054821080156106b3575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061113482611333565b9050836001600160a01b031681600001516001600160a01b03161461116b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611189575061118985336105ff565b806111a45750336111998461074b565b6001600160a01b0316145b9050806111c457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111eb57604051633a954ecd60e21b815260040160405180910390fd5b6111f7600084876110cd565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112cd5760005482146112cd578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a358282604051806020016040528060008152506116d7565b60408051606081018252600080825260208201819052918101919091528160005481101561143657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114345780516001600160a01b0316156113ca579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561142f579392505050565b6113ca565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260116020526040812080548392906114c9908490611d46565b90915550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611507903390899088908890600401611c57565b602060405180830381600087803b15801561152157600080fd5b505af1925050508015611551575060408051601f3d908101601f1916820190925261154e91810190611b7d565b60015b6115ac573d80801561157f576040519150601f19603f3d011682016040523d82523d6000602084013e611584565b606091505b5080516115a4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546106c890611dd4565b6060816115fd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611627578061161181611e0f565b91506116209050600a83611d5e565b9150611601565b60008167ffffffffffffffff81111561164257611642611e80565b6040519080825280601f01601f19166020018201604052801561166c576020820181803683370190505b5090505b84156115c257611681600183611d91565b915061168e600a86611e2a565b611699906030611d46565b60f81b8183815181106116ae576116ae611e6a565b60200101906001600160f81b031916908160001a9053506116d0600a86611d5e565b9450611670565b61081883838360016000546001600160a01b03851661170857604051622e076360e81b815260040160405180910390fd5b836117265760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156117d857506001600160a01b0387163b15155b15611861575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461182960008884806001019550886114d2565b611846576040516368d2bf6b60e11b815260040160405180910390fd5b808214156117de57826000541461185c57600080fd5b6118a7565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611862575b50600055611312565b8280546118bc90611dd4565b90600052602060002090601f0160209004810192826118de5760008555611924565b82601f106118f757805160ff1916838001178555611924565b82800160010185558215611924579182015b82811115611924578251825591602001919060010190611909565b50611930929150611934565b5090565b5b808211156119305760008155600101611935565b600067ffffffffffffffff8084111561196457611964611e80565b604051601f8501601f19908116603f0116810190828211818310171561198c5761198c611e80565b816040528093508581528686860111156119a557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146119d657600080fd5b919050565b803580151581146119d657600080fd5b6000602082840312156119fd57600080fd5b610fbb826119bf565b60008060408385031215611a1957600080fd5b611a22836119bf565b9150611a30602084016119bf565b90509250929050565b600080600060608486031215611a4e57600080fd5b611a57846119bf565b9250611a65602085016119bf565b9150604084013590509250925092565b60008060008060808587031215611a8b57600080fd5b611a94856119bf565b9350611aa2602086016119bf565b925060408501359150606085013567ffffffffffffffff811115611ac557600080fd5b8501601f81018713611ad657600080fd5b611ae587823560208401611949565b91505092959194509250565b60008060408385031215611b0457600080fd5b611b0d836119bf565b9150611a30602084016119db565b60008060408385031215611b2e57600080fd5b611b37836119bf565b946020939093013593505050565b600060208284031215611b5757600080fd5b610fbb826119db565b600060208284031215611b7257600080fd5b8135610fbb81611e96565b600060208284031215611b8f57600080fd5b8151610fbb81611e96565b600060208284031215611bac57600080fd5b813567ffffffffffffffff811115611bc357600080fd5b8201601f81018413611bd457600080fd5b6115c284823560208401611949565b600060208284031215611bf557600080fd5b5035919050565b60008151808452611c14816020860160208601611da8565b601f01601f19169290920160200192915050565b60008351611c3a818460208801611da8565b835190830190611c4e818360208801611da8565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8a90830184611bfc565b9695505050505050565b602081526000610fbb6020830184611bfc565b60208082526044908201527f4d494e5420414d4f554e54204953204c455353205448414e2030204f52204d4960408201527f4e5420414d4f554e542045584345454453204d494e5420414d4f554e542050456060820152630a440a8b60e31b608082015260a00190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611d5957611d59611e3e565b500190565b600082611d6d57611d6d611e54565b500490565b6000816000190483118215151615611d8c57611d8c611e3e565b500290565b600082821015611da357611da3611e3e565b500390565b60005b83811015611dc3578181015183820152602001611dab565b83811115610e0f5750506000910152565b600181811c90821680611de857607f821691505b60208210811415611e0957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e2357611e23611e3e565b5060010190565b600082611e3957611e39611e54565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108dc57600080fdfea264697066735822122043c3d6575fb920797e7871e83869d3d71c270720e9c91fa0455230f6db62b3fa64736f6c63430008070033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000000000000000000000000000001ff973cafa80000000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003f20000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5861553675575451424d4738786e394a62474457636a4d6433623644647779517941655576393351464c506a2f00000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c806376d02b7111610118578063a82fe0ac116100a0578063c87b56dd1161006f578063c87b56dd146105af578063e64369d9146105cf578063e985e9c5146105e4578063f2fde38b1461062d578063fdb4953a1461064d57600080fd5b8063a82fe0ac1461052f578063b88d4fde1461054f578063c4c39ed51461056f578063c4e9374d1461058f57600080fd5b80638f7a715f116100e75780638f7a715f146104a757806391b7f5ed146104c757806395d89b41146104e7578063a0712d68146104fc578063a22cb4651461050f57600080fd5b806376d02b71146104435780638d859f3e1461045d5780638da5cb5b146104735780638ecad7211461049157600080fd5b8063343b7b8a1161019b57806355f804b31161016a57806355f804b3146103b85780636352211e146103d857806363eb8bb6146103f857806370a082311461040e578063715018a61461042e57600080fd5b8063343b7b8a1461032d5780633ccfd60b14610363578063408cbf941461037857806342842e0e1461039857600080fd5b806310b0c052116101d757806310b0c052146102ba57806318160ddd146102de57806323b872dd146102f757806332cb6b0c1461031757600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611b60565b610667565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106b9565b6040516102359190611c94565b34801561026c57600080fd5b5061028061027b366004611be3565b61074b565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611b1b565b61078f565b005b3480156102c657600080fd5b506102d0600c5481565b604051908152602001610235565b3480156102ea57600080fd5b50600154600054036102d0565b34801561030357600080fd5b506102b8610312366004611a39565b61081d565b34801561032357600080fd5b506102d0600a5481565b34801561033957600080fd5b506102d06103483660046119eb565b6001600160a01b031660009081526011602052604090205490565b34801561036f57600080fd5b506102b8610828565b34801561038457600080fd5b506102b8610393366004611b1b565b6108df565b3480156103a457600080fd5b506102b86103b3366004611a39565b610998565b3480156103c457600080fd5b506102b86103d3366004611b9a565b6109b3565b3480156103e457600080fd5b506102806103f3366004611be3565b610a39565b34801561040457600080fd5b506102d0600f5481565b34801561041a57600080fd5b506102d06104293660046119eb565b610a4b565b34801561043a57600080fd5b506102b8610a9a565b34801561044f57600080fd5b50600e546102299060ff1681565b34801561046957600080fd5b506102d060095481565b34801561047f57600080fd5b506008546001600160a01b0316610280565b34801561049d57600080fd5b506102d0600d5481565b3480156104b357600080fd5b506102b86104c2366004611be3565b610ad0565b3480156104d357600080fd5b506102b86104e2366004611be3565b610aff565b3480156104f357600080fd5b50610253610b2e565b6102b861050a366004611be3565b610b3d565b34801561051b57600080fd5b506102b861052a366004611af1565b610cf1565b34801561053b57600080fd5b506102b861054a366004611b45565b610d87565b34801561055b57600080fd5b506102b861056a366004611a75565b610dc4565b34801561057b57600080fd5b506102b861058a366004611be3565b610e15565b34801561059b57600080fd5b506102b86105aa366004611be3565b610e44565b3480156105bb57600080fd5b506102536105ca366004611be3565b610f3d565b3480156105db57600080fd5b506102b8610fc2565b3480156105f057600080fd5b506102296105ff366004611a06565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063957600080fd5b506102b86106483660046119eb565b610ffb565b34801561065957600080fd5b506010546102299060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061069857506001600160e01b03198216635b5e139f60e01b145b806106b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106c890611dd4565b80601f01602080910402602001604051908101604052809291908181526020018280546106f490611dd4565b80156107415780601f1061071657610100808354040283529160200191610741565b820191906000526020600020905b81548152906001019060200180831161072457829003601f168201915b5050505050905090565b6000610756826110a2565b610773576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079a82610a39565b9050806001600160a01b0316836001600160a01b031614156107cf5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107ef57506107ed81336105ff565b155b1561080d576040516367d9dca160e11b815260040160405180910390fd5b6108188383836110cd565b505050565b610818838383611129565b6008546001600160a01b0316331461085b5760405162461bcd60e51b815260040161085290611d11565b60405180910390fd5b600047116108a35760405162461bcd60e51b8152602060048201526015602482015274596f752068617665207a65726f2062616c616e636560581b6044820152606401610852565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108dc573d6000803e3d6000fd5b50565b806000811180156108f25750600d548111155b61090e5760405162461bcd60e51b815260040161085290611ca7565b600a548160005461091f9190611d46565b11156109645760405162461bcd60e51b815260206004820152601460248201527320a6261029a7a622171027279029aaa828262c9760611b6044820152606401610852565b6008546001600160a01b0316331461098e5760405162461bcd60e51b815260040161085290611d11565b6108188383611319565b61081883838360405180602001604052806000815250610dc4565b6008546001600160a01b031633146109dd5760405162461bcd60e51b815260040161085290611d11565b60105460ff1615610a225760405162461bcd60e51b815260206004820152600f60248201526e26a2aa20a220aa2090232927ad22a760891b6044820152606401610852565b8051610a3590600b9060208401906118b0565b5050565b6000610a4482611333565b5192915050565b60006001600160a01b038216610a74576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ac45760405162461bcd60e51b815260040161085290611d11565b610ace600061144f565b565b6008546001600160a01b03163314610afa5760405162461bcd60e51b815260040161085290611d11565b600c55565b6008546001600160a01b03163314610b295760405162461bcd60e51b815260040161085290611d11565b600955565b6060600380546106c890611dd4565b80600081118015610b505750600d548111155b610b6c5760405162461bcd60e51b815260040161085290611ca7565b600a5481600054610b7d9190611d46565b1115610bc25760405162461bcd60e51b815260206004820152601460248201527320a6261029a7a622171027279029aaa828262c9760611b6044820152606401610852565b600e5460ff16610c0a5760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610852565b600060095483610c1a9190611d72565b9050600f546000541015610ca15733600090815260116020526040812054600c54610c459190611d91565b90508015610c9f57808410610c7c57600954610c619082611d72565b610c6b9083611d91565b9150610c7733826114a1565b610c9f565b600954610c899085611d72565b610c939083611d91565b9150610c9f33856114a1565b505b80341015610ce75760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610852565b6108183384611319565b6001600160a01b038216331415610d1b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610db15760405162461bcd60e51b815260040161085290611d11565b600e805460ff1916911515919091179055565b610dcf848484611129565b6001600160a01b0383163b15158015610df15750610def848484846114d2565b155b15610e0f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161085290611d11565b600f55565b6008546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161085290611d11565b600a548110610ecb5760405162461bcd60e51b815260206004820152602360248201527f4d415820535550504c59204d4f5245205448414e204e4557204d415820535550604482015262504c5960e81b6064820152608401610852565b600054811015610f385760405162461bcd60e51b815260206004820152603260248201527f4e4557204d415820535550504c5920495320424947474552204f52204551554160448201527109840a89e4086aaa4a48a9ca840929c888ab60731b6064820152608401610852565b600a55565b6060610f48826110a2565b610f6557604051630a14c4b560e41b815260040160405180910390fd5b6000610f6f6115ca565b9050805160001415610f905760405180602001604052806000815250610fbb565b80610f9a846115d9565b604051602001610fab929190611c28565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610fec5760405162461bcd60e51b815260040161085290611d11565b6010805460ff19166001179055565b6008546001600160a01b031633146110255760405162461bcd60e51b815260040161085290611d11565b6001600160a01b03811661108a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610852565b6108dc8161144f565b6001600160a01b03163b151590565b60008054821080156106b3575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061113482611333565b9050836001600160a01b031681600001516001600160a01b03161461116b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611189575061118985336105ff565b806111a45750336111998461074b565b6001600160a01b0316145b9050806111c457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111eb57604051633a954ecd60e21b815260040160405180910390fd5b6111f7600084876110cd565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112cd5760005482146112cd578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a358282604051806020016040528060008152506116d7565b60408051606081018252600080825260208201819052918101919091528160005481101561143657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114345780516001600160a01b0316156113ca579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561142f579392505050565b6113ca565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260116020526040812080548392906114c9908490611d46565b90915550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611507903390899088908890600401611c57565b602060405180830381600087803b15801561152157600080fd5b505af1925050508015611551575060408051601f3d908101601f1916820190925261154e91810190611b7d565b60015b6115ac573d80801561157f576040519150601f19603f3d011682016040523d82523d6000602084013e611584565b606091505b5080516115a4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546106c890611dd4565b6060816115fd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611627578061161181611e0f565b91506116209050600a83611d5e565b9150611601565b60008167ffffffffffffffff81111561164257611642611e80565b6040519080825280601f01601f19166020018201604052801561166c576020820181803683370190505b5090505b84156115c257611681600183611d91565b915061168e600a86611e2a565b611699906030611d46565b60f81b8183815181106116ae576116ae611e6a565b60200101906001600160f81b031916908160001a9053506116d0600a86611d5e565b9450611670565b61081883838360016000546001600160a01b03851661170857604051622e076360e81b815260040160405180910390fd5b836117265760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156117d857506001600160a01b0387163b15155b15611861575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461182960008884806001019550886114d2565b611846576040516368d2bf6b60e11b815260040160405180910390fd5b808214156117de57826000541461185c57600080fd5b6118a7565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611862575b50600055611312565b8280546118bc90611dd4565b90600052602060002090601f0160209004810192826118de5760008555611924565b82601f106118f757805160ff1916838001178555611924565b82800160010185558215611924579182015b82811115611924578251825591602001919060010190611909565b50611930929150611934565b5090565b5b808211156119305760008155600101611935565b600067ffffffffffffffff8084111561196457611964611e80565b604051601f8501601f19908116603f0116810190828211818310171561198c5761198c611e80565b816040528093508581528686860111156119a557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146119d657600080fd5b919050565b803580151581146119d657600080fd5b6000602082840312156119fd57600080fd5b610fbb826119bf565b60008060408385031215611a1957600080fd5b611a22836119bf565b9150611a30602084016119bf565b90509250929050565b600080600060608486031215611a4e57600080fd5b611a57846119bf565b9250611a65602085016119bf565b9150604084013590509250925092565b60008060008060808587031215611a8b57600080fd5b611a94856119bf565b9350611aa2602086016119bf565b925060408501359150606085013567ffffffffffffffff811115611ac557600080fd5b8501601f81018713611ad657600080fd5b611ae587823560208401611949565b91505092959194509250565b60008060408385031215611b0457600080fd5b611b0d836119bf565b9150611a30602084016119db565b60008060408385031215611b2e57600080fd5b611b37836119bf565b946020939093013593505050565b600060208284031215611b5757600080fd5b610fbb826119db565b600060208284031215611b7257600080fd5b8135610fbb81611e96565b600060208284031215611b8f57600080fd5b8151610fbb81611e96565b600060208284031215611bac57600080fd5b813567ffffffffffffffff811115611bc357600080fd5b8201601f81018413611bd457600080fd5b6115c284823560208401611949565b600060208284031215611bf557600080fd5b5035919050565b60008151808452611c14816020860160208601611da8565b601f01601f19169290920160200192915050565b60008351611c3a818460208801611da8565b835190830190611c4e818360208801611da8565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8a90830184611bfc565b9695505050505050565b602081526000610fbb6020830184611bfc565b60208082526044908201527f4d494e5420414d4f554e54204953204c455353205448414e2030204f52204d4960408201527f4e5420414d4f554e542045584345454453204d494e5420414d4f554e542050456060820152630a440a8b60e31b608082015260a00190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611d5957611d59611e3e565b500190565b600082611d6d57611d6d611e54565b500490565b6000816000190483118215151615611d8c57611d8c611e3e565b500290565b600082821015611da357611da3611e3e565b500390565b60005b83811015611dc3578181015183820152602001611dab565b83811115610e0f5750506000910152565b600181811c90821680611de857607f821691505b60208210811415611e0957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e2357611e23611e3e565b5060010190565b600082611e3957611e39611e54565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108dc57600080fdfea264697066735822122043c3d6575fb920797e7871e83869d3d71c270720e9c91fa0455230f6db62b3fa64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000001ff973cafa80000000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003f20000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5861553675575451424d4738786e394a62474457636a4d6433623644647779517941655576393351464c506a2f00000000000000000000
-----Decoded View---------------
Arg [0] : price (uint256): 9000000000000000
Arg [1] : maxSupply (uint256): 4000
Arg [2] : baseUri (string): ipfs://QmXaU6uWTQBMG8xn9JbGDWcjMd3b6DdwyQyAeUv93QFLPj/
Arg [3] : freeMintLimitPerWallet (uint256): 2
Arg [4] : maxMintPerTX (uint256): 10
Arg [5] : isSaleActive (bool): True
Arg [6] : freeMintSupply (uint256): 1010
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000001ff973cafa8000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000fa0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 00000000000000000000000000000000000000000000000000000000000003f2
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5861553675575451424d4738786e394a62474457636a4d
Arg [9] : 6433623644647779517941655576393351464c506a2f00000000000000000000
Deployed Bytecode Sourcemap
44781:3999:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27005:305;;;;;;;;;;-1:-1:-1;27005:305:0;;;;;:::i;:::-;;:::i;:::-;;;5903:14:1;;5896:22;5878:41;;5866:2;5851:18;27005:305:0;;;;;;;;30118:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31621:204::-;;;;;;;;;;-1:-1:-1;31621:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5201:32:1;;;5183:51;;5171:2;5156:18;31621:204:0;5037:203:1;31184:371:0;;;;;;;;;;-1:-1:-1;31184:371:0;;;;;:::i;:::-;;:::i;:::-;;44953:41;;;;;;;;;;;;;;;;;;;10107:25:1;;;10095:2;10080:18;44953:41:0;9961:177:1;26254:303:0;;;;;;;;;;-1:-1:-1;26508:12:0;;26298:7;26492:13;:28;26254:303;;32486:170;;;;;;;;;;-1:-1:-1;32486:170:0;;;;;:::i;:::-;;:::i;44891:25::-;;;;;;;;;;;;;;;;45869:134;;;;;;;;;;-1:-1:-1;45869:134:0;;;;;:::i;:::-;-1:-1:-1;;;;;45969:26:0;45943:7;45969:26;;;:18;:26;;;;;;;45869:134;48594:173;;;;;;;;;;;;;:::i;48438:144::-;;;;;;;;;;-1:-1:-1;48438:144:0;;;;;:::i;:::-;;:::i;32727:185::-;;;;;;;;;;-1:-1:-1;32727:185:0;;;;;:::i;:::-;;:::i;46528:154::-;;;;;;;;;;-1:-1:-1;46528:154:0;;;;;:::i;:::-;;:::i;29926:125::-;;;;;;;;;;-1:-1:-1;29926:125:0;;;;;:::i;:::-;;:::i;45071:31::-;;;;;;;;;;;;;;;;27374:206;;;;;;;;;;-1:-1:-1;27374:206:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;45038:26::-;;;;;;;;;;-1:-1:-1;45038:26:0;;;;;;;;44864:20;;;;;;;;;;;;;;;;4112:87;;;;;;;;;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;4112:87;;45001:30;;;;;;;;;;;;;;;;46690:155;;;;;;;;;;-1:-1:-1;46690:155:0;;;;;:::i;:::-;;:::i;46130:85::-;;;;;;;;;;-1:-1:-1;46130:85:0;;;;;:::i;:::-;;:::i;30287:104::-;;;;;;;;;;;;;:::i;47514:912::-;;;;;;:::i;:::-;;:::i;31897:287::-;;;;;;;;;;-1:-1:-1;31897:287:0;;;;;:::i;:::-;;:::i;46853:109::-;;;;;;;;;;-1:-1:-1;46853:109:0;;;;;:::i;:::-;;:::i;32983:369::-;;;;;;;;;;-1:-1:-1;32983:369:0;;;;;:::i;:::-;;:::i;46970:121::-;;;;;;;;;;-1:-1:-1;46970:121:0;;;;;:::i;:::-;;:::i;46223:297::-;;;;;;;;;;-1:-1:-1;46223:297:0;;;;;:::i;:::-;;:::i;30462:318::-;;;;;;;;;;-1:-1:-1;30462:318:0;;;;;:::i;:::-;;:::i;47099:85::-;;;;;;;;;;;;;:::i;32255:164::-;;;;;;;;;;-1:-1:-1;32255:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32376:25:0;;;32352:4;32376:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32255:164;5021:201;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;45110:27::-;;;;;;;;;;-1:-1:-1;45110:27:0;;;;;;;;27005:305;27107:4;-1:-1:-1;;;;;;27144:40:0;;-1:-1:-1;;;27144:40:0;;:105;;-1:-1:-1;;;;;;;27201:48:0;;-1:-1:-1;;;27201:48:0;27144:105;:158;;;-1:-1:-1;;;;;;;;;;17005:40:0;;;27266:36;27124:178;27005:305;-1:-1:-1;;27005:305:0:o;30118:100::-;30172:13;30205:5;30198:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30118:100;:::o;31621:204::-;31689:7;31714:16;31722:7;31714;:16::i;:::-;31709:64;;31739:34;;-1:-1:-1;;;31739:34:0;;;;;;;;;;;31709:64;-1:-1:-1;31793:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31793:24:0;;31621:204::o;31184:371::-;31257:13;31273:24;31289:7;31273:15;:24::i;:::-;31257:40;;31318:5;-1:-1:-1;;;;;31312:11:0;:2;-1:-1:-1;;;;;31312:11:0;;31308:48;;;31332:24;;-1:-1:-1;;;31332:24:0;;;;;;;;;;;31308:48;2916:10;-1:-1:-1;;;;;31373:21:0;;;;;;:63;;-1:-1:-1;31399:37:0;31416:5;2916:10;32255:164;:::i;31399:37::-;31398:38;31373:63;31369:138;;;31460:35;;-1:-1:-1;;;31460:35:0;;;;;;;;;;;31369:138;31519:28;31528:2;31532:7;31541:5;31519:8;:28::i;:::-;31246:309;31184:371;;:::o;32486:170::-;32620:28;32630:4;32636:2;32640:7;32620:9;:28::i;48594:173::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;;;;;;;;;48673:1:::1;48649:21;:25;48641:59;;;::::0;-1:-1:-1;;;48641:59:0;;7516:2:1;48641:59:0::1;::::0;::::1;7498:21:1::0;7555:2;7535:18;;;7528:30;-1:-1:-1;;;7574:18:1;;;7567:51;7635:18;;48641:59:0::1;7314:345:1::0;48641:59:0::1;4185:6:::0;;48711:48:::1;::::0;-1:-1:-1;;;;;4185:6:0;;;;48737:21:::1;48711:48:::0;::::1;;;::::0;::::1;::::0;;;48737:21;4185:6;48711:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48594:173::o:0;48438:144::-;48513:11;47293:1;47279:11;:15;:49;;;;;47313:15;;47298:11;:30;;47279:49;47271:130;;;;-1:-1:-1;;;47271:130:0;;;;;;;:::i;:::-;47451:10;;47436:11;47420:13;;:27;;;;:::i;:::-;:41;;47412:74;;;;-1:-1:-1;;;47412:74:0;;6356:2:1;47412:74:0;;;6338:21:1;6395:2;6375:18;;;6368:30;-1:-1:-1;;;6414:18:1;;;6407:50;6474:18;;47412:74:0;6154:344:1;47412:74:0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23:::1;4324:68;;;;-1:-1:-1::0;;;4324:68:0::1;;;;;;;:::i;:::-;48547:27:::2;48557:3;48562:11;48547:9;:27::i;32727:185::-:0;32865:39;32882:4;32888:2;32892:7;32865:39;;;;;;;;;;;;:16;:39::i;46528:154::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46610:15:::1;::::0;::::1;;46609:16;46601:44;;;::::0;-1:-1:-1;;;46601:44:0;;9052:2:1;46601:44:0::1;::::0;::::1;9034:21:1::0;9091:2;9071:18;;;9064:30;-1:-1:-1;;;9110:18:1;;;9103:45;9165:18;;46601:44:0::1;8850:339:1::0;46601:44:0::1;46656:18:::0;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46528:154:::0;:::o;29926:125::-;29990:7;30017:21;30030:7;30017:12;:21::i;:::-;:26;;29926:125;-1:-1:-1;;29926:125:0:o;27374:206::-;27438:7;-1:-1:-1;;;;;27462:19:0;;27458:60;;27490:28;;-1:-1:-1;;;27490:28:0;;;;;;;;;;;27458:60;-1:-1:-1;;;;;;27544:19:0;;;;;:12;:19;;;;;:27;;;;27374:206::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;46690:155::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46786:26:::1;:51:::0;46690:155::o;46130:85::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46194:5:::1;:13:::0;46130:85::o;30287:104::-;30343:13;30376:7;30369:14;;;;;:::i;47514:912::-;47579:11;47293:1;47279:11;:15;:49;;;;;47313:15;;47298:11;:30;;47279:49;47271:130;;;;-1:-1:-1;;;47271:130:0;;;;;;;:::i;:::-;47451:10;;47436:11;47420:13;;:27;;;;:::i;:::-;:41;;47412:74;;;;-1:-1:-1;;;47412:74:0;;6356:2:1;47412:74:0;;;6338:21:1;6395:2;6375:18;;;6368:30;-1:-1:-1;;;6414:18:1;;;6407:50;6474:18;;47412:74:0;6154:344:1;47412:74:0;47611:14:::1;::::0;::::1;;47603:46;;;::::0;-1:-1:-1;;;47603:46:0;;8704:2:1;47603:46:0::1;::::0;::::1;8686:21:1::0;8743:2;8723:18;;;8716:30;-1:-1:-1;;;8762:18:1;;;8755:49;8821:18;;47603:46:0::1;8502:343:1::0;47603:46:0::1;47662:20;47699:5;;47685:11;:19;;;;:::i;:::-;47662:42;;47738:16;;47722:13;;:32;47718:584;;;47847:10;47771:25;47828:30:::0;;;:18:::1;:30;::::0;;;;;47799:26:::1;::::0;:59:::1;::::0;47828:30;47799:59:::1;:::i;:::-;47771:87:::0;-1:-1:-1;47877:21:0;;47873:417:::1;;47940:17;47925:11;:32;47921:354;;48018:5;::::0;47998:25:::1;::::0;:17;:25:::1;:::i;:::-;47982:41;::::0;;::::1;:::i;:::-;;;48046:54;48070:10;48082:17;48046:23;:54::i;:::-;47921:354;;;48179:5;::::0;48165:19:::1;::::0;:11;:19:::1;:::i;:::-;48149:35;::::0;;::::1;:::i;:::-;;;48207:48;48231:10;48243:11;48207:23;:48::i;:::-;47756:546;47718:584;48335:12;48322:9;:25;;48314:57;;;::::0;-1:-1:-1;;;48314:57:0;;9815:2:1;48314:57:0::1;::::0;::::1;9797:21:1::0;9854:2;9834:18;;;9827:30;-1:-1:-1;;;9873:18:1;;;9866:49;9932:18;;48314:57:0::1;9613:343:1::0;48314:57:0::1;48384:34;48394:10;48406:11;48384:9;:34::i;31897:287::-:0;-1:-1:-1;;;;;31996:24:0;;2916:10;31996:24;31992:54;;;32029:17;;-1:-1:-1;;;32029:17:0;;;;;;;;;;;31992:54;2916:10;32059:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32059:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32059:53:0;;;;;;;;;;32128:48;;5878:41:1;;;32059:42:0;;2916:10;32128:48;;5851:18:1;32128:48:0;;;;;;;31897:287;;:::o;46853:109::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46925:14:::1;:29:::0;;-1:-1:-1;;46925:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46853:109::o;32983:369::-;33150:28;33160:4;33166:2;33170:7;33150:9;:28::i;:::-;-1:-1:-1;;;;;33193:13:0;;7108:19;:23;;33193:76;;;;;33213:56;33244:4;33250:2;33254:7;33263:5;33213:30;:56::i;:::-;33212:57;33193:76;33189:156;;;33293:40;;-1:-1:-1;;;33293:40:0;;;;;;;;;;;33189:156;32983:369;;;;:::o;46970:121::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47050:16:::1;:33:::0;46970:121::o;46223:297::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46322:10:::1;;46307:12;:25;46298:74;;;::::0;-1:-1:-1;;;46298:74:0;;7112:2:1;46298:74:0::1;::::0;::::1;7094:21:1::0;7151:2;7131:18;;;7124:30;7190:34;7170:18;;;7163:62;-1:-1:-1;;;7241:18:1;;;7234:33;7284:19;;46298:74:0::1;6910:399:1::0;46298:74:0::1;46408:13;;46392:12;:29;;46383:93;;;::::0;-1:-1:-1;;;46383:93:0;;9396:2:1;46383:93:0::1;::::0;::::1;9378:21:1::0;9435:2;9415:18;;;9408:30;9474:34;9454:18;;;9447:62;-1:-1:-1;;;9525:18:1;;;9518:48;9583:19;;46383:93:0::1;9194:414:1::0;46383:93:0::1;46487:10;:25:::0;46223:297::o;30462:318::-;30535:13;30566:16;30574:7;30566;:16::i;:::-;30561:59;;30591:29;;-1:-1:-1;;;30591:29:0;;;;;;;;;;;30561:59;30633:21;30657:10;:8;:10::i;:::-;30633:34;;30691:7;30685:21;30710:1;30685:26;;:87;;;;;;;;;;;;;;;;;30738:7;30747:18;:7;:16;:18::i;:::-;30721:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30685:87;30678:94;30462:318;-1:-1:-1;;;30462:318:0:o;47099:85::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47154:15:::1;:22:::0;;-1:-1:-1;;47154:22:0::1;47172:4;47154:22;::::0;;47099:85::o;5021:201::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;6705:2:1;5102:73:0::1;::::0;::::1;6687:21:1::0;6744:2;6724:18;;;6717:30;6783:34;6763:18;;;6756:62;-1:-1:-1;;;6834:18:1;;;6827:36;6880:19;;5102:73:0::1;6503:402:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;6813:326::-:0;-1:-1:-1;;;;;7108:19:0;;:23;;;6813:326::o;33607:174::-;33664:4;33728:13;;33718:7;:23;33688:85;;;;-1:-1:-1;;33746:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33746:27:0;;;;33745:28;;33607:174::o;41764:196::-;41879:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41879:29:0;-1:-1:-1;;;;;41879:29:0;;;;;;;;;41924:28;;41879:24;;41924:28;;;;;;;41764:196;;;:::o;36707:2130::-;36822:35;36860:21;36873:7;36860:12;:21::i;:::-;36822:59;;36920:4;-1:-1:-1;;;;;36898:26:0;:13;:18;;;-1:-1:-1;;;;;36898:26:0;;36894:67;;36933:28;;-1:-1:-1;;;36933:28:0;;;;;;;;;;;36894:67;36974:22;2916:10;-1:-1:-1;;;;;37000:20:0;;;;:73;;-1:-1:-1;37037:36:0;37054:4;2916:10;32255:164;:::i;37037:36::-;37000:126;;;-1:-1:-1;2916:10:0;37090:20;37102:7;37090:11;:20::i;:::-;-1:-1:-1;;;;;37090:36:0;;37000:126;36974:153;;37145:17;37140:66;;37171:35;;-1:-1:-1;;;37171:35:0;;;;;;;;;;;37140:66;-1:-1:-1;;;;;37221:16:0;;37217:52;;37246:23;;-1:-1:-1;;;37246:23:0;;;;;;;;;;;37217:52;37390:35;37407:1;37411:7;37420:4;37390:8;:35::i;:::-;-1:-1:-1;;;;;37721:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37721:31:0;;;;;;;-1:-1:-1;;37721:31:0;;;;;;;37767:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37767:29:0;;;;;;;;;;;37847:20;;;:11;:20;;;;;;37882:18;;-1:-1:-1;;;;;;37915:49:0;;;;-1:-1:-1;;;37948:15:0;37915:49;;;;;;;;;;38238:11;;38298:24;;;;;38341:13;;37847:20;;38298:24;;38341:13;38337:384;;38551:13;;38536:11;:28;38532:174;;38589:20;;38658:28;;;;38632:54;;-1:-1:-1;;;38632:54:0;-1:-1:-1;;;;;;38632:54:0;;;-1:-1:-1;;;;;38589:20:0;;38632:54;;;;38532:174;37696:1036;;;38768:7;38764:2;-1:-1:-1;;;;;38749:27:0;38758:4;-1:-1:-1;;;;;38749:27:0;;;;;;;;;;;38787:42;36811:2026;;36707:2130;;;:::o;33789:104::-;33858:27;33868:2;33872:8;33858:27;;;;;;;;;;;;:9;:27::i;28755:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28866:7:0;28949:13;;28942:4;:20;28911:886;;;28983:31;29017:17;;;:11;:17;;;;;;;;;28983:51;;;;;;;;;-1:-1:-1;;;;;28983:51:0;;;;-1:-1:-1;;;28983:51:0;;;;;;;;;;;-1:-1:-1;;;28983:51:0;;;;;;;;;;;;;;29053:729;;29103:14;;-1:-1:-1;;;;;29103:28:0;;29099:101;;29167:9;28755:1109;-1:-1:-1;;;28755:1109:0:o;29099:101::-;-1:-1:-1;;;29542:6:0;29587:17;;;;:11;:17;;;;;;;;;29575:29;;;;;;;;;-1:-1:-1;;;;;29575:29:0;;;;;-1:-1:-1;;;29575:29:0;;;;;;;;;;;-1:-1:-1;;;29575:29:0;;;;;;;;;;;;;29635:28;29631:109;;29703:9;28755:1109;-1:-1:-1;;;28755:1109:0:o;29631:109::-;29502:261;;;28964:833;28911:886;29825:31;;-1:-1:-1;;;29825:31:0;;;;;;;;;;;5382:191;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5445:128;5382:191;:::o;45736:125::-;-1:-1:-1;;;;;45818:26:0;;;;;;:18;:26;;;;;:35;;45848:5;;45818:26;:35;;45848:5;;45818:35;:::i;:::-;;;;-1:-1:-1;;;;45736:125:0:o;42452:667::-;42636:72;;-1:-1:-1;;;42636:72:0;;42615:4;;-1:-1:-1;;;;;42636:36:0;;;;;:72;;2916:10;;42687:4;;42693:7;;42702:5;;42636:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42636:72:0;;;;;;;;-1:-1:-1;;42636:72:0;;;;;;;;;;;;:::i;:::-;;;42632:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42870:13:0;;42866:235;;42916:40;;-1:-1:-1;;;42916:40:0;;;;;;;;;;;42866:235;43059:6;43053:13;43044:6;43040:2;43036:15;43029:38;42632:480;-1:-1:-1;;;;;;42755:55:0;-1:-1:-1;;;42755:55:0;;-1:-1:-1;42632:480:0;42452:667;;;;;;:::o;46013:108::-;46073:13;46105:8;46098:15;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;34256:163;34379:32;34385:2;34389:8;34399:5;34406:4;34817:20;34840:13;-1:-1:-1;;;;;34868:16:0;;34864:48;;34893:19;;-1:-1:-1;;;34893:19:0;;;;;;;;;;;34864:48;34927:13;34923:44;;34949:18;;-1:-1:-1;;;34949:18:0;;;;;;;;;;;34923:44;-1:-1:-1;;;;;35318:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35377:49:0;;35318:44;;;;;;;;35377:49;;;;-1:-1:-1;;35318:44:0;;;;;;35377:49;;;;;;;;;;;;;;;;35443:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35493:66:0;;;;-1:-1:-1;;;35543:15:0;35493:66;;;;;;;;;;35443:25;35640:23;;;35684:4;:23;;;;-1:-1:-1;;;;;;35692:13:0;;7108:19;:23;;35692:15;35680:641;;;35728:314;35759:38;;35784:12;;-1:-1:-1;;;;;35759:38:0;;;35776:1;;35759:38;;35776:1;;35759:38;35825:69;35864:1;35868:2;35872:14;;;;;;35888:5;35825:30;:69::i;:::-;35820:174;;35930:40;;-1:-1:-1;;;35930:40:0;;;;;;;;;;;35820:174;36037:3;36021:12;:19;;35728:314;;36123:12;36106:13;;:29;36102:43;;36137:8;;;36102:43;35680:641;;;36186:120;36217:40;;36242:14;;;;;-1:-1:-1;;;;;36217:40:0;;;36234:1;;36217:40;;36234:1;;36217:40;36301:3;36285:12;:19;;36186:120;;35680:641;-1:-1:-1;36335:13:0;:28;36385:60;32983:369;-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:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5245:488::-;-1:-1:-1;;;;;5514:15:1;;;5496:34;;5566:15;;5561:2;5546:18;;5539:43;5613:2;5598:18;;5591:34;;;5661:3;5656:2;5641:18;;5634:31;;;5439:4;;5682:45;;5707:19;;5699:6;5682:45;:::i;:::-;5674:53;5245:488;-1:-1:-1;;;;;;5245:488:1:o;5930:219::-;6079:2;6068:9;6061:21;6042:4;6099:44;6139:2;6128:9;6124:18;6116:6;6099:44;:::i;7664:472::-;7866:2;7848:21;;;7905:2;7885:18;;;7878:30;7944:34;7939:2;7924:18;;7917:62;8015:34;8010:2;7995:18;;7988:62;-1:-1:-1;;;8081:3:1;8066:19;;8059:35;8126:3;8111:19;;7664:472::o;8141:356::-;8343:2;8325:21;;;8362:18;;;8355:30;8421:34;8416:2;8401:18;;8394:62;8488:2;8473:18;;8141:356::o;10143:128::-;10183:3;10214:1;10210:6;10207:1;10204:13;10201:39;;;10220:18;;:::i;:::-;-1:-1:-1;10256:9:1;;10143:128::o;10276:120::-;10316:1;10342;10332:35;;10347:18;;:::i;:::-;-1:-1:-1;10381:9:1;;10276:120::o;10401:168::-;10441:7;10507:1;10503;10499:6;10495:14;10492:1;10489:21;10484:1;10477:9;10470:17;10466:45;10463:71;;;10514:18;;:::i;:::-;-1:-1:-1;10554:9:1;;10401:168::o;10574:125::-;10614:4;10642:1;10639;10636:8;10633:34;;;10647:18;;:::i;:::-;-1:-1:-1;10684:9:1;;10574:125::o;10704:258::-;10776:1;10786:113;10800:6;10797:1;10794:13;10786:113;;;10876:11;;;10870:18;10857:11;;;10850:39;10822:2;10815:10;10786:113;;;10917:6;10914:1;10911:13;10908:48;;;-1:-1:-1;;10952:1:1;10934:16;;10927:27;10704:258::o;10967:380::-;11046:1;11042:12;;;;11089;;;11110:61;;11164:4;11156:6;11152:17;11142:27;;11110:61;11217:2;11209:6;11206:14;11186:18;11183:38;11180:161;;;11263:10;11258:3;11254:20;11251:1;11244:31;11298:4;11295:1;11288:15;11326:4;11323:1;11316:15;11180:161;;10967:380;;;:::o;11352:135::-;11391:3;-1:-1:-1;;11412:17:1;;11409:43;;;11432:18;;:::i;:::-;-1:-1:-1;11479:1:1;11468:13;;11352:135::o;11492:112::-;11524:1;11550;11540:35;;11555:18;;:::i;:::-;-1:-1:-1;11589:9:1;;11492:112::o;11609:127::-;11670:10;11665:3;11661:20;11658:1;11651:31;11701:4;11698:1;11691:15;11725:4;11722:1;11715:15;11741:127;11802:10;11797:3;11793:20;11790:1;11783:31;11833:4;11830:1;11823:15;11857:4;11854:1;11847:15;11873:127;11934:10;11929:3;11925:20;11922:1;11915:31;11965:4;11962:1;11955:15;11989:4;11986:1;11979:15;12005:127;12066:10;12061:3;12057:20;12054:1;12047:31;12097:4;12094:1;12087:15;12121:4;12118:1;12111:15;12137:131;-1:-1:-1;;;;;;12211:32:1;;12201:43;;12191:71;;12258:1;12255;12248:12
Swarm Source
ipfs://43c3d6575fb920797e7871e83869d3d71c270720e9c91fa0455230f6db62b3fa
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.