ETH Price: $3,274.47 (+0.63%)
Gas: 1 Gwei

Token

AiAbstractByAnon (ANON)
 

Overview

Max Total Supply

333 ANON

Holders

306

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 ANON
0xbda0b098157be8323c57d2e3c76ef411a8220e08
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AiAbstractByAnon

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : AiAbsctractByAnon.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.0 <0.9.0;

import './ERC721A.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/introspection/IERC165.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';


contract AiAbstractByAnon is ERC721A, Ownable { 

  using Strings for uint256;

  string private uriPrefix = "ipfs://bafybeibf7xm7h7kqcjroh4vbgmrwlscub5d35wyghi76oa7xm66mr2dxji/00000000000000000000000000000000000000000000000000000000000000";
  string public uriSuffix = ".json"; 
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.005 ether; 

  uint256 public maxSupply = 333;
  uint256 public maxMintAmountPerTx = 5;
  uint256 public totalMaxMintAmount = 5;

  uint256 public freeMaxMintAmount = 0; 

  bool public paused = false;
  bool public publicSale = true;
  bool public revealed = true;

  mapping(address => uint256) public addressMintedBalance; 

  constructor() ERC721A("AiAbstractByAnon", "ANON") { 
         setHiddenMetadataUri("ipfs://bafybeibf7xm7h7kqcjroh4vbgmrwlscub5d35wyghi76oa7xm66mr2dxji/00000000000000000000000000000000000000000000000000000000000000/hidden.json"); 
            ownerMint(5); 
    } 

  modifier mintCompliance(uint256 _mintAmount) {
    if (msg.sender != owner()) { 
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    }
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  } 

  modifier mintPriceCompliance(uint256 _mintAmount) {
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
   if (ownerMintedCount >= freeMaxMintAmount) {
        require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
   }
        _;
  }

   function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!'); 
    require(publicSale, "Not open to public yet!");
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];

    if (ownerMintedCount < freeMaxMintAmount) {  
            require(ownerMintedCount + _mintAmount <= freeMaxMintAmount, "Exceeded Free Mint Limit");
        } else if (ownerMintedCount >= freeMaxMintAmount) { 
            require(ownerMintedCount + _mintAmount <= totalMaxMintAmount, "Exceeded Mint Limit");
        }

    _safeMint(_msgSender(), _mintAmount);
    for (uint256 i = 1; i <=_mintAmount; i++){
        addressMintedBalance[msg.sender]++;
    }
  }

  function ownerMint(uint256 _mintAmount) public payable onlyOwner {
     require(_mintAmount > 0, 'Invalid mint amount!');
     require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _safeMint(_msgSender(), _mintAmount);
  }

function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }
  
  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned && ownership.addr != address(0)) {
        latestOwnerAddress = ownership.addr;
      }

      if (latestOwnerAddress == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost; 
  }

   function setFreeMaxMintAmount(uint256 _freeMaxMintAmount) public onlyOwner {
    freeMaxMintAmount = _freeMaxMintAmount; 
  }

  function setTotalMaxMintAmount(uint _amount) public onlyOwner {
      require(_amount <= maxSupply, "Exceed total amount");
      totalMaxMintAmount = _amount;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setPublicSale(bool _state) public onlyOwner {
    publicSale = _state;
  }

  // WITHDRAW
    function withdraw() public payable onlyOwner {
  
    (bool os, ) = payable(owner()).call{value: address(this).balance}(""); 
    require(os);
   
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

File 2 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 3 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// 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 4 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// 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 5 of 12 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 6 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 7 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 8 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 9 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// 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 10 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// 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 11 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 12 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

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 {}
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMaxMintAmount","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","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":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMaxMintAmount","type":"uint256"}],"name":"setFreeMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTotalMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"totalMaxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060c0016040528060818152602001620058a560819139600990805190602001906200003592919062000b20565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200008392919062000b20565b506611c37937e08000600c5561014d600d556005600e556005600f5560006010556000601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055503480156200010257600080fd5b506040518060400160405280601081526020017f416941627374726163744279416e6f6e000000000000000000000000000000008152506040518060400160405280600481526020017f414e4f4e0000000000000000000000000000000000000000000000000000000081525081600290805190602001906200018792919062000b20565b508060039080519060200190620001a092919062000b20565b50620001b16200021b60201b60201c565b6000819055505050620001d9620001cd6200022460201b60201c565b6200022c60201b60201c565b620002036040518060c00160405280608d815260200162005926608d9139620002f260201b60201c565b6200021560056200039d60201b60201c565b62001014565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003026200022460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000328620004fa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000381576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003789062000d67565b60405180910390fd5b80600b90805190602001906200039992919062000b20565b5050565b620003ad6200022460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003d3620004fa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200042c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004239062000d67565b60405180910390fd5b6000811162000472576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004699062000d45565b60405180910390fd5b600d5481620004866200052460201b60201c565b62000492919062000dd8565b1115620004d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004cd9062000d89565b60405180910390fd5b620004f7620004ea6200022460201b60201c565b826200054360201b60201c565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000620005366200021b60201b60201c565b6001546000540303905090565b620005658282604051806020016040528060008152506200056960201b60201c565b5050565b6200057e83838360016200058360201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620005f1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156200062d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200064260008683876200097f60201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156200081a5750620008198773ffffffffffffffffffffffffffffffffffffffff166200098560201b620024ce1760201c565b5b15620008ed575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620008986000888480600101955088620009a860201b60201c565b620008cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141562000821578260005414620008e757600080fd5b6200095a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415620008ee575b81600081905550505062000978600086838762000b1a60201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620009d66200022460201b60201c565b8786866040518563ffffffff1660e01b8152600401620009fa949392919062000cf1565b602060405180830381600087803b15801562000a1557600080fd5b505af192505050801562000a4957506040513d601f19601f8201168201806040525081019062000a46919062000be7565b60015b62000ac7573d806000811462000a7c576040519150601f19603f3d011682016040523d82523d6000602084013e62000a81565b606091505b5060008151141562000abf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b82805462000b2e9062000ed5565b90600052602060002090601f01602090048101928262000b52576000855562000b9e565b82601f1062000b6d57805160ff191683800117855562000b9e565b8280016001018555821562000b9e579182015b8281111562000b9d57825182559160200191906001019062000b80565b5b50905062000bad919062000bb1565b5090565b5b8082111562000bcc57600081600090555060010162000bb2565b5090565b60008151905062000be18162000ffa565b92915050565b60006020828403121562000c005762000bff62000f69565b5b600062000c108482850162000bd0565b91505092915050565b62000c248162000e35565b82525050565b600062000c378262000dab565b62000c43818562000db6565b935062000c5581856020860162000e9f565b62000c608162000f6e565b840191505092915050565b600062000c7a60148362000dc7565b915062000c878262000f7f565b602082019050919050565b600062000ca160208362000dc7565b915062000cae8262000fa8565b602082019050919050565b600062000cc860148362000dc7565b915062000cd58262000fd1565b602082019050919050565b62000ceb8162000e95565b82525050565b600060808201905062000d08600083018762000c19565b62000d17602083018662000c19565b62000d26604083018562000ce0565b818103606083015262000d3a818462000c2a565b905095945050505050565b6000602082019050818103600083015262000d608162000c6b565b9050919050565b6000602082019050818103600083015262000d828162000c92565b9050919050565b6000602082019050818103600083015262000da48162000cb9565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000de58262000e95565b915062000df28362000e95565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e2a5762000e2962000f0b565b5b828201905092915050565b600062000e428262000e75565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000ebf57808201518184015260208101905062000ea2565b8381111562000ecf576000848401525b50505050565b6000600282049050600182168062000eee57607f821691505b6020821081141562000f055762000f0462000f3a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b620010058162000e49565b81146200101157600080fd5b50565b61488180620010246000396000f3fe60806040526004361061025c5760003560e01c80635c975abb11610144578063b071401b116100b6578063e0a808531161007a578063e0a80853146108b6578063e4386d26146108df578063e985e9c51461090a578063efbd73f414610947578063f19e75d414610970578063f2fde38b1461098c5761025c565b8063b071401b146107d3578063b88d4fde146107fc578063c87b56dd14610825578063d4fcb2ae14610862578063d5abeb011461088b5761025c565b80638da5cb5b116101085780638da5cb5b146106e257806394354fd01461070d57806395d89b4114610738578063a0712d6814610763578063a22cb4651461077f578063a45ba8e7146107a85761025c565b80635c975abb146105fd5780636352211e1461062857806370a0823114610665578063715018a6146106a25780637ec4a659146106b95761025c565b806318cae269116101dd578063438b6300116101a1578063438b6300146104ef57806344a0d68a1461052c5780634fdd43cb14610555578063518302271461057e5780635503a0e8146105a95780635aca1bb6146105d45761025c565b806318cae2691461042b57806323b872dd1461046857806333bc1c5c146104915780633ccfd60b146104bc57806342842e0e146104c65761025c565b80631159aca4116102245780631159aca41461035857806313faede61461038357806316ba10e0146103ae57806316c38b3c146103d757806318160ddd146104005761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b3146103065780631042779c1461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906139f3565b6109b5565b6040516102959190613f4a565b60405180910390f35b3480156102aa57600080fd5b506102b3610a97565b6040516102c09190613f65565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613a96565b610b29565b6040516102fd9190613ec1565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613986565b610ba5565b005b34801561033b57600080fd5b5061035660048036038101906103519190613a96565b610cb0565b005b34801561036457600080fd5b5061036d610d7b565b60405161037a91906140e7565b60405180910390f35b34801561038f57600080fd5b50610398610d81565b6040516103a591906140e7565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190613a4d565b610d87565b005b3480156103e357600080fd5b506103fe60048036038101906103f991906139c6565b610e1d565b005b34801561040c57600080fd5b50610415610eb6565b60405161042291906140e7565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190613803565b610ecd565b60405161045f91906140e7565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a9190613870565b610ee5565b005b34801561049d57600080fd5b506104a6610ef5565b6040516104b39190613f4a565b60405180910390f35b6104c4610f08565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190613870565b611004565b005b3480156104fb57600080fd5b5061051660048036038101906105119190613803565b611024565b6040516105239190613f28565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190613a96565b61123f565b005b34801561056157600080fd5b5061057c60048036038101906105779190613a4d565b6112c5565b005b34801561058a57600080fd5b5061059361135b565b6040516105a09190613f4a565b60405180910390f35b3480156105b557600080fd5b506105be61136e565b6040516105cb9190613f65565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f691906139c6565b6113fc565b005b34801561060957600080fd5b50610612611495565b60405161061f9190613f4a565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190613a96565b6114a8565b60405161065c9190613ec1565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190613803565b6114be565b60405161069991906140e7565b60405180910390f35b3480156106ae57600080fd5b506106b761158e565b005b3480156106c557600080fd5b506106e060048036038101906106db9190613a4d565b611616565b005b3480156106ee57600080fd5b506106f76116ac565b6040516107049190613ec1565b60405180910390f35b34801561071957600080fd5b506107226116d6565b60405161072f91906140e7565b60405180910390f35b34801561074457600080fd5b5061074d6116dc565b60405161075a9190613f65565b60405180910390f35b61077d60048036038101906107789190613a96565b61176e565b005b34801561078b57600080fd5b506107a660048036038101906107a19190613946565b611b1d565b005b3480156107b457600080fd5b506107bd611c95565b6040516107ca9190613f65565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f59190613a96565b611d23565b005b34801561080857600080fd5b50610823600480360381019061081e91906138c3565b611da9565b005b34801561083157600080fd5b5061084c60048036038101906108479190613a96565b611e25565b6040516108599190613f65565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190613a96565b611f7e565b005b34801561089757600080fd5b506108a0612004565b6040516108ad91906140e7565b60405180910390f35b3480156108c257600080fd5b506108dd60048036038101906108d891906139c6565b61200a565b005b3480156108eb57600080fd5b506108f46120a3565b60405161090191906140e7565b60405180910390f35b34801561091657600080fd5b50610931600480360381019061092c9190613830565b6120a9565b60405161093e9190613f4a565b60405180910390f35b34801561095357600080fd5b5061096e60048036038101906109699190613ac3565b61213d565b005b61098a60048036038101906109859190613a96565b6122ac565b005b34801561099857600080fd5b506109b360048036038101906109ae9190613803565b6123d6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a905750610a8f826124f1565b5b9050919050565b606060028054610aa6906143f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad2906143f0565b8015610b1f5780601f10610af457610100808354040283529160200191610b1f565b820191906000526020600020905b815481529060010190602001808311610b0257829003601f168201915b5050505050905090565b6000610b348261255b565b610b6a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb0826114a8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c18576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c376125a9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c695750610c6781610c626125a9565b6120a9565b155b15610ca0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cab8383836125b1565b505050565b610cb86125a9565b73ffffffffffffffffffffffffffffffffffffffff16610cd66116ac565b73ffffffffffffffffffffffffffffffffffffffff1614610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390614027565b60405180910390fd5b600d54811115610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890613fe7565b60405180910390fd5b80600f8190555050565b60105481565b600c5481565b610d8f6125a9565b73ffffffffffffffffffffffffffffffffffffffff16610dad6116ac565b73ffffffffffffffffffffffffffffffffffffffff1614610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90614027565b60405180910390fd5b80600a9080519060200190610e199291906135d4565b5050565b610e256125a9565b73ffffffffffffffffffffffffffffffffffffffff16610e436116ac565b73ffffffffffffffffffffffffffffffffffffffff1614610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090614027565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610ec0612663565b6001546000540303905090565b60126020528060005260406000206000915090505481565b610ef083838361266c565b505050565b601160019054906101000a900460ff1681565b610f106125a9565b73ffffffffffffffffffffffffffffffffffffffff16610f2e6116ac565b73ffffffffffffffffffffffffffffffffffffffff1614610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b90614027565b60405180910390fd5b6000610f8e6116ac565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fb190613eac565b60006040518083038185875af1925050503d8060008114610fee576040519150601f19603f3d011682016040523d82523d6000602084013e610ff3565b606091505b505090508061100157600080fd5b50565b61101f83838360405180602001604052806000815250611da9565b505050565b60606000611031836114be565b905060008167ffffffffffffffff81111561104f5761104e614589565b5b60405190808252806020026020018201604052801561107d5781602001602082028036833780820191505090505b509050600061108a612663565b90506000805b84821080156110a15750600d548311155b15611232576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156111ae5750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b156111bb57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121e57838584815181106112035761120261455a565b5b602002602001018181525050828061121a90614453565b9350505b838061122990614453565b94505050611090565b8395505050505050919050565b6112476125a9565b73ffffffffffffffffffffffffffffffffffffffff166112656116ac565b73ffffffffffffffffffffffffffffffffffffffff16146112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b290614027565b60405180910390fd5b80600c8190555050565b6112cd6125a9565b73ffffffffffffffffffffffffffffffffffffffff166112eb6116ac565b73ffffffffffffffffffffffffffffffffffffffff1614611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890614027565b60405180910390fd5b80600b90805190602001906113579291906135d4565b5050565b601160029054906101000a900460ff1681565b600a805461137b906143f0565b80601f01602080910402602001604051908101604052809291908181526020018280546113a7906143f0565b80156113f45780601f106113c9576101008083540402835291602001916113f4565b820191906000526020600020905b8154815290600101906020018083116113d757829003601f168201915b505050505081565b6114046125a9565b73ffffffffffffffffffffffffffffffffffffffff166114226116ac565b73ffffffffffffffffffffffffffffffffffffffff1614611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90614027565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b601160009054906101000a900460ff1681565b60006114b382612b22565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611526576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115966125a9565b73ffffffffffffffffffffffffffffffffffffffff166115b46116ac565b73ffffffffffffffffffffffffffffffffffffffff161461160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190614027565b60405180910390fd5b6116146000612db1565b565b61161e6125a9565b73ffffffffffffffffffffffffffffffffffffffff1661163c6116ac565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990614027565b60405180910390fd5b80600990805190602001906116a89291906135d4565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600380546116eb906143f0565b80601f0160208091040260200160405190810160405280929190818152602001828054611717906143f0565b80156117645780601f1061173957610100808354040283529160200191611764565b820191906000526020600020905b81548152906001019060200180831161174757829003601f168201915b5050505050905090565b806117776116ac565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117fb576000811180156117bb5750600e548111155b6117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190613fc7565b60405180910390fd5b5b600d5481611807610eb6565b6118119190614225565b1115611852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184990614087565b60405180910390fd5b816000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060105481106118f15781600c546118ae91906142ac565b3410156118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e7906140c7565b60405180910390fd5b5b601160009054906101000a900460ff1615611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890614047565b60405180910390fd5b601160019054906101000a900460ff16611990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611987906140a7565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601054811015611a335760105485826119ed9190614225565b1115611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2590614007565b60405180910390fd5b611a8e565b6010548110611a8d57600f548582611a4b9190614225565b1115611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390613f87565b60405180910390fd5b5b5b611a9f611a996125a9565b86612e77565b6000600190505b858111611b1557601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611afd90614453565b91905055508080611b0d90614453565b915050611aa6565b505050505050565b611b256125a9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b8a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b976125a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c446125a9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c899190613f4a565b60405180910390a35050565b600b8054611ca2906143f0565b80601f0160208091040260200160405190810160405280929190818152602001828054611cce906143f0565b8015611d1b5780601f10611cf057610100808354040283529160200191611d1b565b820191906000526020600020905b815481529060010190602001808311611cfe57829003601f168201915b505050505081565b611d2b6125a9565b73ffffffffffffffffffffffffffffffffffffffff16611d496116ac565b73ffffffffffffffffffffffffffffffffffffffff1614611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9690614027565b60405180910390fd5b80600e8190555050565b611db484848461266c565b611dd38373ffffffffffffffffffffffffffffffffffffffff166124ce565b8015611de85750611de684848484612e95565b155b15611e1f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611e308261255b565b611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690614067565b60405180910390fd5b60001515601160029054906101000a900460ff1615151415611f1d57600b8054611e98906143f0565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec4906143f0565b8015611f115780601f10611ee657610100808354040283529160200191611f11565b820191906000526020600020905b815481529060010190602001808311611ef457829003601f168201915b50505050509050611f79565b6000611f27612ff5565b90506000815111611f475760405180602001604052806000815250611f75565b80611f5184613087565b600a604051602001611f6593929190613e7b565b6040516020818303038152906040525b9150505b919050565b611f866125a9565b73ffffffffffffffffffffffffffffffffffffffff16611fa46116ac565b73ffffffffffffffffffffffffffffffffffffffff1614611ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff190614027565b60405180910390fd5b8060108190555050565b600d5481565b6120126125a9565b73ffffffffffffffffffffffffffffffffffffffff166120306116ac565b73ffffffffffffffffffffffffffffffffffffffff1614612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d90614027565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816121466116ac565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146121ca5760008111801561218a5750600e548111155b6121c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c090613fc7565b60405180910390fd5b5b600d54816121d6610eb6565b6121e09190614225565b1115612221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221890614087565b60405180910390fd5b6122296125a9565b73ffffffffffffffffffffffffffffffffffffffff166122476116ac565b73ffffffffffffffffffffffffffffffffffffffff161461229d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229490614027565b60405180910390fd5b6122a78284612e77565b505050565b6122b46125a9565b73ffffffffffffffffffffffffffffffffffffffff166122d26116ac565b73ffffffffffffffffffffffffffffffffffffffff1614612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f90614027565b60405180910390fd5b6000811161236b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236290613fc7565b60405180910390fd5b600d5481612377610eb6565b6123819190614225565b11156123c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b990614087565b60405180910390fd5b6123d36123cd6125a9565b82612e77565b50565b6123de6125a9565b73ffffffffffffffffffffffffffffffffffffffff166123fc6116ac565b73ffffffffffffffffffffffffffffffffffffffff1614612452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244990614027565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b990613fa7565b60405180910390fd5b6124cb81612db1565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612566612663565b11158015612575575060005482105b80156125a2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061267782612b22565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126e2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127036125a9565b73ffffffffffffffffffffffffffffffffffffffff16148061273257506127318561272c6125a9565b6120a9565b5b8061277757506127406125a9565b73ffffffffffffffffffffffffffffffffffffffff1661275f84610b29565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806127b0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612817576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61282485858560016131e8565b612830600084876125b1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612ab0576000548214612aaf57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b1b85858560016131ee565b5050505050565b612b2a61365a565b600082905080612b38612663565b11158015612b47575060005481105b15612d7a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612d7857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c5c578092505050612dac565b5b600115612d7757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d72578092505050612dac565b612c5d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e918282604051806020016040528060008152506131f4565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ebb6125a9565b8786866040518563ffffffff1660e01b8152600401612edd9493929190613edc565b602060405180830381600087803b158015612ef757600080fd5b505af1925050508015612f2857506040513d601f19601f82011682018060405250810190612f259190613a20565b60015b612fa2573d8060008114612f58576040519150601f19603f3d011682016040523d82523d6000602084013e612f5d565b606091505b50600081511415612f9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054613004906143f0565b80601f0160208091040260200160405190810160405280929190818152602001828054613030906143f0565b801561307d5780601f106130525761010080835404028352916020019161307d565b820191906000526020600020905b81548152906001019060200180831161306057829003601f168201915b5050505050905090565b606060008214156130cf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131e3565b600082905060005b600082146131015780806130ea90614453565b915050600a826130fa919061427b565b91506130d7565b60008167ffffffffffffffff81111561311d5761311c614589565b5b6040519080825280601f01601f19166020018201604052801561314f5781602001600182028036833780820191505090505b5090505b600085146131dc576001826131689190614306565b9150600a85613177919061449c565b60306131839190614225565b60f81b8183815181106131995761319861455a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131d5919061427b565b9450613153565b8093505050505b919050565b50505050565b50505050565b6132018383836001613206565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613273576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156132ae576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132bb60008683876131e8565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561348557506134848773ffffffffffffffffffffffffffffffffffffffff166124ce565b5b1561354b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134fa6000888480600101955088612e95565b613530576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561348b57826000541461354657600080fd5b6135b7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561354c575b8160008190555050506135cd60008683876131ee565b5050505050565b8280546135e0906143f0565b90600052602060002090601f0160209004810192826136025760008555613649565b82601f1061361b57805160ff1916838001178555613649565b82800160010185558215613649579182015b8281111561364857825182559160200191906001019061362d565b5b509050613656919061369d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156136b657600081600090555060010161369e565b5090565b60006136cd6136c884614127565b614102565b9050828152602081018484840111156136e9576136e86145bd565b5b6136f48482856143ae565b509392505050565b600061370f61370a84614158565b614102565b90508281526020810184848401111561372b5761372a6145bd565b5b6137368482856143ae565b509392505050565b60008135905061374d816147ef565b92915050565b60008135905061376281614806565b92915050565b6000813590506137778161481d565b92915050565b60008151905061378c8161481d565b92915050565b600082601f8301126137a7576137a66145b8565b5b81356137b78482602086016136ba565b91505092915050565b600082601f8301126137d5576137d46145b8565b5b81356137e58482602086016136fc565b91505092915050565b6000813590506137fd81614834565b92915050565b600060208284031215613819576138186145c7565b5b60006138278482850161373e565b91505092915050565b60008060408385031215613847576138466145c7565b5b60006138558582860161373e565b92505060206138668582860161373e565b9150509250929050565b600080600060608486031215613889576138886145c7565b5b60006138978682870161373e565b93505060206138a88682870161373e565b92505060406138b9868287016137ee565b9150509250925092565b600080600080608085870312156138dd576138dc6145c7565b5b60006138eb8782880161373e565b94505060206138fc8782880161373e565b935050604061390d878288016137ee565b925050606085013567ffffffffffffffff81111561392e5761392d6145c2565b5b61393a87828801613792565b91505092959194509250565b6000806040838503121561395d5761395c6145c7565b5b600061396b8582860161373e565b925050602061397c85828601613753565b9150509250929050565b6000806040838503121561399d5761399c6145c7565b5b60006139ab8582860161373e565b92505060206139bc858286016137ee565b9150509250929050565b6000602082840312156139dc576139db6145c7565b5b60006139ea84828501613753565b91505092915050565b600060208284031215613a0957613a086145c7565b5b6000613a1784828501613768565b91505092915050565b600060208284031215613a3657613a356145c7565b5b6000613a448482850161377d565b91505092915050565b600060208284031215613a6357613a626145c7565b5b600082013567ffffffffffffffff811115613a8157613a806145c2565b5b613a8d848285016137c0565b91505092915050565b600060208284031215613aac57613aab6145c7565b5b6000613aba848285016137ee565b91505092915050565b60008060408385031215613ada57613ad96145c7565b5b6000613ae8858286016137ee565b9250506020613af98582860161373e565b9150509250929050565b6000613b0f8383613e5d565b60208301905092915050565b613b248161433a565b82525050565b6000613b35826141ae565b613b3f81856141dc565b9350613b4a83614189565b8060005b83811015613b7b578151613b628882613b03565b9750613b6d836141cf565b925050600181019050613b4e565b5085935050505092915050565b613b918161434c565b82525050565b6000613ba2826141b9565b613bac81856141ed565b9350613bbc8185602086016143bd565b613bc5816145cc565b840191505092915050565b6000613bdb826141c4565b613be58185614209565b9350613bf58185602086016143bd565b613bfe816145cc565b840191505092915050565b6000613c14826141c4565b613c1e818561421a565b9350613c2e8185602086016143bd565b80840191505092915050565b60008154613c47816143f0565b613c51818661421a565b94506001821660008114613c6c5760018114613c7d57613cb0565b60ff19831686528186019350613cb0565b613c8685614199565b60005b83811015613ca857815481890152600182019150602081019050613c89565b838801955050505b50505092915050565b6000613cc6601383614209565b9150613cd1826145dd565b602082019050919050565b6000613ce9602683614209565b9150613cf482614606565b604082019050919050565b6000613d0c601483614209565b9150613d1782614655565b602082019050919050565b6000613d2f601383614209565b9150613d3a8261467e565b602082019050919050565b6000613d52601883614209565b9150613d5d826146a7565b602082019050919050565b6000613d75602083614209565b9150613d80826146d0565b602082019050919050565b6000613d98601783614209565b9150613da3826146f9565b602082019050919050565b6000613dbb602f83614209565b9150613dc682614722565b604082019050919050565b6000613dde6000836141fe565b9150613de982614771565b600082019050919050565b6000613e01601483614209565b9150613e0c82614774565b602082019050919050565b6000613e24601783614209565b9150613e2f8261479d565b602082019050919050565b6000613e47601383614209565b9150613e52826147c6565b602082019050919050565b613e66816143a4565b82525050565b613e75816143a4565b82525050565b6000613e878286613c09565b9150613e938285613c09565b9150613e9f8284613c3a565b9150819050949350505050565b6000613eb782613dd1565b9150819050919050565b6000602082019050613ed66000830184613b1b565b92915050565b6000608082019050613ef16000830187613b1b565b613efe6020830186613b1b565b613f0b6040830185613e6c565b8181036060830152613f1d8184613b97565b905095945050505050565b60006020820190508181036000830152613f428184613b2a565b905092915050565b6000602082019050613f5f6000830184613b88565b92915050565b60006020820190508181036000830152613f7f8184613bd0565b905092915050565b60006020820190508181036000830152613fa081613cb9565b9050919050565b60006020820190508181036000830152613fc081613cdc565b9050919050565b60006020820190508181036000830152613fe081613cff565b9050919050565b6000602082019050818103600083015261400081613d22565b9050919050565b6000602082019050818103600083015261402081613d45565b9050919050565b6000602082019050818103600083015261404081613d68565b9050919050565b6000602082019050818103600083015261406081613d8b565b9050919050565b6000602082019050818103600083015261408081613dae565b9050919050565b600060208201905081810360008301526140a081613df4565b9050919050565b600060208201905081810360008301526140c081613e17565b9050919050565b600060208201905081810360008301526140e081613e3a565b9050919050565b60006020820190506140fc6000830184613e6c565b92915050565b600061410c61411d565b90506141188282614422565b919050565b6000604051905090565b600067ffffffffffffffff82111561414257614141614589565b5b61414b826145cc565b9050602081019050919050565b600067ffffffffffffffff82111561417357614172614589565b5b61417c826145cc565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614230826143a4565b915061423b836143a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142705761426f6144cd565b5b828201905092915050565b6000614286826143a4565b9150614291836143a4565b9250826142a1576142a06144fc565b5b828204905092915050565b60006142b7826143a4565b91506142c2836143a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142fb576142fa6144cd565b5b828202905092915050565b6000614311826143a4565b915061431c836143a4565b92508282101561432f5761432e6144cd565b5b828203905092915050565b600061434582614384565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143db5780820151818401526020810190506143c0565b838111156143ea576000848401525b50505050565b6000600282049050600182168061440857607f821691505b6020821081141561441c5761441b61452b565b5b50919050565b61442b826145cc565b810181811067ffffffffffffffff8211171561444a57614449614589565b5b80604052505050565b600061445e826143a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614491576144906144cd565b5b600182019050919050565b60006144a7826143a4565b91506144b2836143a4565b9250826144c2576144c16144fc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4578636565646564204d696e74204c696d697400000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f45786365656420746f74616c20616d6f756e7400000000000000000000000000600082015250565b7f45786365656465642046726565204d696e74204c696d69740000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4e6f74206f70656e20746f207075626c69632079657421000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6147f88161433a565b811461480357600080fd5b50565b61480f8161434c565b811461481a57600080fd5b50565b61482681614358565b811461483157600080fd5b50565b61483d816143a4565b811461484857600080fd5b5056fea26469706673582212208bcd8661b227c06e1e6e56f7f536d8746a2ee78fccda96b8582f5672b60d036e64736f6c63430008070033697066733a2f2f62616679626569626637786d3768376b71636a726f68347662676d72776c7363756235643335777967686937366f6137786d36366d723264786a692f3030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030697066733a2f2f62616679626569626637786d3768376b71636a726f68347662676d72776c7363756235643335777967686937366f6137786d36366d723264786a692f30303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030302f68696464656e2e6a736f6e

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80635c975abb11610144578063b071401b116100b6578063e0a808531161007a578063e0a80853146108b6578063e4386d26146108df578063e985e9c51461090a578063efbd73f414610947578063f19e75d414610970578063f2fde38b1461098c5761025c565b8063b071401b146107d3578063b88d4fde146107fc578063c87b56dd14610825578063d4fcb2ae14610862578063d5abeb011461088b5761025c565b80638da5cb5b116101085780638da5cb5b146106e257806394354fd01461070d57806395d89b4114610738578063a0712d6814610763578063a22cb4651461077f578063a45ba8e7146107a85761025c565b80635c975abb146105fd5780636352211e1461062857806370a0823114610665578063715018a6146106a25780637ec4a659146106b95761025c565b806318cae269116101dd578063438b6300116101a1578063438b6300146104ef57806344a0d68a1461052c5780634fdd43cb14610555578063518302271461057e5780635503a0e8146105a95780635aca1bb6146105d45761025c565b806318cae2691461042b57806323b872dd1461046857806333bc1c5c146104915780633ccfd60b146104bc57806342842e0e146104c65761025c565b80631159aca4116102245780631159aca41461035857806313faede61461038357806316ba10e0146103ae57806316c38b3c146103d757806318160ddd146104005761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b3146103065780631042779c1461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906139f3565b6109b5565b6040516102959190613f4a565b60405180910390f35b3480156102aa57600080fd5b506102b3610a97565b6040516102c09190613f65565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613a96565b610b29565b6040516102fd9190613ec1565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613986565b610ba5565b005b34801561033b57600080fd5b5061035660048036038101906103519190613a96565b610cb0565b005b34801561036457600080fd5b5061036d610d7b565b60405161037a91906140e7565b60405180910390f35b34801561038f57600080fd5b50610398610d81565b6040516103a591906140e7565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190613a4d565b610d87565b005b3480156103e357600080fd5b506103fe60048036038101906103f991906139c6565b610e1d565b005b34801561040c57600080fd5b50610415610eb6565b60405161042291906140e7565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190613803565b610ecd565b60405161045f91906140e7565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a9190613870565b610ee5565b005b34801561049d57600080fd5b506104a6610ef5565b6040516104b39190613f4a565b60405180910390f35b6104c4610f08565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190613870565b611004565b005b3480156104fb57600080fd5b5061051660048036038101906105119190613803565b611024565b6040516105239190613f28565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190613a96565b61123f565b005b34801561056157600080fd5b5061057c60048036038101906105779190613a4d565b6112c5565b005b34801561058a57600080fd5b5061059361135b565b6040516105a09190613f4a565b60405180910390f35b3480156105b557600080fd5b506105be61136e565b6040516105cb9190613f65565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f691906139c6565b6113fc565b005b34801561060957600080fd5b50610612611495565b60405161061f9190613f4a565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190613a96565b6114a8565b60405161065c9190613ec1565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190613803565b6114be565b60405161069991906140e7565b60405180910390f35b3480156106ae57600080fd5b506106b761158e565b005b3480156106c557600080fd5b506106e060048036038101906106db9190613a4d565b611616565b005b3480156106ee57600080fd5b506106f76116ac565b6040516107049190613ec1565b60405180910390f35b34801561071957600080fd5b506107226116d6565b60405161072f91906140e7565b60405180910390f35b34801561074457600080fd5b5061074d6116dc565b60405161075a9190613f65565b60405180910390f35b61077d60048036038101906107789190613a96565b61176e565b005b34801561078b57600080fd5b506107a660048036038101906107a19190613946565b611b1d565b005b3480156107b457600080fd5b506107bd611c95565b6040516107ca9190613f65565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f59190613a96565b611d23565b005b34801561080857600080fd5b50610823600480360381019061081e91906138c3565b611da9565b005b34801561083157600080fd5b5061084c60048036038101906108479190613a96565b611e25565b6040516108599190613f65565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190613a96565b611f7e565b005b34801561089757600080fd5b506108a0612004565b6040516108ad91906140e7565b60405180910390f35b3480156108c257600080fd5b506108dd60048036038101906108d891906139c6565b61200a565b005b3480156108eb57600080fd5b506108f46120a3565b60405161090191906140e7565b60405180910390f35b34801561091657600080fd5b50610931600480360381019061092c9190613830565b6120a9565b60405161093e9190613f4a565b60405180910390f35b34801561095357600080fd5b5061096e60048036038101906109699190613ac3565b61213d565b005b61098a60048036038101906109859190613a96565b6122ac565b005b34801561099857600080fd5b506109b360048036038101906109ae9190613803565b6123d6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a905750610a8f826124f1565b5b9050919050565b606060028054610aa6906143f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad2906143f0565b8015610b1f5780601f10610af457610100808354040283529160200191610b1f565b820191906000526020600020905b815481529060010190602001808311610b0257829003601f168201915b5050505050905090565b6000610b348261255b565b610b6a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb0826114a8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c18576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c376125a9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c695750610c6781610c626125a9565b6120a9565b155b15610ca0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cab8383836125b1565b505050565b610cb86125a9565b73ffffffffffffffffffffffffffffffffffffffff16610cd66116ac565b73ffffffffffffffffffffffffffffffffffffffff1614610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390614027565b60405180910390fd5b600d54811115610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890613fe7565b60405180910390fd5b80600f8190555050565b60105481565b600c5481565b610d8f6125a9565b73ffffffffffffffffffffffffffffffffffffffff16610dad6116ac565b73ffffffffffffffffffffffffffffffffffffffff1614610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90614027565b60405180910390fd5b80600a9080519060200190610e199291906135d4565b5050565b610e256125a9565b73ffffffffffffffffffffffffffffffffffffffff16610e436116ac565b73ffffffffffffffffffffffffffffffffffffffff1614610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090614027565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610ec0612663565b6001546000540303905090565b60126020528060005260406000206000915090505481565b610ef083838361266c565b505050565b601160019054906101000a900460ff1681565b610f106125a9565b73ffffffffffffffffffffffffffffffffffffffff16610f2e6116ac565b73ffffffffffffffffffffffffffffffffffffffff1614610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b90614027565b60405180910390fd5b6000610f8e6116ac565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fb190613eac565b60006040518083038185875af1925050503d8060008114610fee576040519150601f19603f3d011682016040523d82523d6000602084013e610ff3565b606091505b505090508061100157600080fd5b50565b61101f83838360405180602001604052806000815250611da9565b505050565b60606000611031836114be565b905060008167ffffffffffffffff81111561104f5761104e614589565b5b60405190808252806020026020018201604052801561107d5781602001602082028036833780820191505090505b509050600061108a612663565b90506000805b84821080156110a15750600d548311155b15611232576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156111ae5750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b156111bb57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121e57838584815181106112035761120261455a565b5b602002602001018181525050828061121a90614453565b9350505b838061122990614453565b94505050611090565b8395505050505050919050565b6112476125a9565b73ffffffffffffffffffffffffffffffffffffffff166112656116ac565b73ffffffffffffffffffffffffffffffffffffffff16146112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b290614027565b60405180910390fd5b80600c8190555050565b6112cd6125a9565b73ffffffffffffffffffffffffffffffffffffffff166112eb6116ac565b73ffffffffffffffffffffffffffffffffffffffff1614611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890614027565b60405180910390fd5b80600b90805190602001906113579291906135d4565b5050565b601160029054906101000a900460ff1681565b600a805461137b906143f0565b80601f01602080910402602001604051908101604052809291908181526020018280546113a7906143f0565b80156113f45780601f106113c9576101008083540402835291602001916113f4565b820191906000526020600020905b8154815290600101906020018083116113d757829003601f168201915b505050505081565b6114046125a9565b73ffffffffffffffffffffffffffffffffffffffff166114226116ac565b73ffffffffffffffffffffffffffffffffffffffff1614611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90614027565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b601160009054906101000a900460ff1681565b60006114b382612b22565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611526576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115966125a9565b73ffffffffffffffffffffffffffffffffffffffff166115b46116ac565b73ffffffffffffffffffffffffffffffffffffffff161461160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190614027565b60405180910390fd5b6116146000612db1565b565b61161e6125a9565b73ffffffffffffffffffffffffffffffffffffffff1661163c6116ac565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990614027565b60405180910390fd5b80600990805190602001906116a89291906135d4565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600380546116eb906143f0565b80601f0160208091040260200160405190810160405280929190818152602001828054611717906143f0565b80156117645780601f1061173957610100808354040283529160200191611764565b820191906000526020600020905b81548152906001019060200180831161174757829003601f168201915b5050505050905090565b806117776116ac565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117fb576000811180156117bb5750600e548111155b6117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190613fc7565b60405180910390fd5b5b600d5481611807610eb6565b6118119190614225565b1115611852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184990614087565b60405180910390fd5b816000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060105481106118f15781600c546118ae91906142ac565b3410156118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e7906140c7565b60405180910390fd5b5b601160009054906101000a900460ff1615611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890614047565b60405180910390fd5b601160019054906101000a900460ff16611990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611987906140a7565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601054811015611a335760105485826119ed9190614225565b1115611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2590614007565b60405180910390fd5b611a8e565b6010548110611a8d57600f548582611a4b9190614225565b1115611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390613f87565b60405180910390fd5b5b5b611a9f611a996125a9565b86612e77565b6000600190505b858111611b1557601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611afd90614453565b91905055508080611b0d90614453565b915050611aa6565b505050505050565b611b256125a9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b8a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b976125a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c446125a9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c899190613f4a565b60405180910390a35050565b600b8054611ca2906143f0565b80601f0160208091040260200160405190810160405280929190818152602001828054611cce906143f0565b8015611d1b5780601f10611cf057610100808354040283529160200191611d1b565b820191906000526020600020905b815481529060010190602001808311611cfe57829003601f168201915b505050505081565b611d2b6125a9565b73ffffffffffffffffffffffffffffffffffffffff16611d496116ac565b73ffffffffffffffffffffffffffffffffffffffff1614611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9690614027565b60405180910390fd5b80600e8190555050565b611db484848461266c565b611dd38373ffffffffffffffffffffffffffffffffffffffff166124ce565b8015611de85750611de684848484612e95565b155b15611e1f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611e308261255b565b611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690614067565b60405180910390fd5b60001515601160029054906101000a900460ff1615151415611f1d57600b8054611e98906143f0565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec4906143f0565b8015611f115780601f10611ee657610100808354040283529160200191611f11565b820191906000526020600020905b815481529060010190602001808311611ef457829003601f168201915b50505050509050611f79565b6000611f27612ff5565b90506000815111611f475760405180602001604052806000815250611f75565b80611f5184613087565b600a604051602001611f6593929190613e7b565b6040516020818303038152906040525b9150505b919050565b611f866125a9565b73ffffffffffffffffffffffffffffffffffffffff16611fa46116ac565b73ffffffffffffffffffffffffffffffffffffffff1614611ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff190614027565b60405180910390fd5b8060108190555050565b600d5481565b6120126125a9565b73ffffffffffffffffffffffffffffffffffffffff166120306116ac565b73ffffffffffffffffffffffffffffffffffffffff1614612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d90614027565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816121466116ac565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146121ca5760008111801561218a5750600e548111155b6121c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c090613fc7565b60405180910390fd5b5b600d54816121d6610eb6565b6121e09190614225565b1115612221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221890614087565b60405180910390fd5b6122296125a9565b73ffffffffffffffffffffffffffffffffffffffff166122476116ac565b73ffffffffffffffffffffffffffffffffffffffff161461229d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229490614027565b60405180910390fd5b6122a78284612e77565b505050565b6122b46125a9565b73ffffffffffffffffffffffffffffffffffffffff166122d26116ac565b73ffffffffffffffffffffffffffffffffffffffff1614612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f90614027565b60405180910390fd5b6000811161236b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236290613fc7565b60405180910390fd5b600d5481612377610eb6565b6123819190614225565b11156123c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b990614087565b60405180910390fd5b6123d36123cd6125a9565b82612e77565b50565b6123de6125a9565b73ffffffffffffffffffffffffffffffffffffffff166123fc6116ac565b73ffffffffffffffffffffffffffffffffffffffff1614612452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244990614027565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b990613fa7565b60405180910390fd5b6124cb81612db1565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612566612663565b11158015612575575060005482105b80156125a2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061267782612b22565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126e2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127036125a9565b73ffffffffffffffffffffffffffffffffffffffff16148061273257506127318561272c6125a9565b6120a9565b5b8061277757506127406125a9565b73ffffffffffffffffffffffffffffffffffffffff1661275f84610b29565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806127b0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612817576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61282485858560016131e8565b612830600084876125b1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612ab0576000548214612aaf57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b1b85858560016131ee565b5050505050565b612b2a61365a565b600082905080612b38612663565b11158015612b47575060005481105b15612d7a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612d7857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c5c578092505050612dac565b5b600115612d7757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d72578092505050612dac565b612c5d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e918282604051806020016040528060008152506131f4565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ebb6125a9565b8786866040518563ffffffff1660e01b8152600401612edd9493929190613edc565b602060405180830381600087803b158015612ef757600080fd5b505af1925050508015612f2857506040513d601f19601f82011682018060405250810190612f259190613a20565b60015b612fa2573d8060008114612f58576040519150601f19603f3d011682016040523d82523d6000602084013e612f5d565b606091505b50600081511415612f9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054613004906143f0565b80601f0160208091040260200160405190810160405280929190818152602001828054613030906143f0565b801561307d5780601f106130525761010080835404028352916020019161307d565b820191906000526020600020905b81548152906001019060200180831161306057829003601f168201915b5050505050905090565b606060008214156130cf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131e3565b600082905060005b600082146131015780806130ea90614453565b915050600a826130fa919061427b565b91506130d7565b60008167ffffffffffffffff81111561311d5761311c614589565b5b6040519080825280601f01601f19166020018201604052801561314f5781602001600182028036833780820191505090505b5090505b600085146131dc576001826131689190614306565b9150600a85613177919061449c565b60306131839190614225565b60f81b8183815181106131995761319861455a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131d5919061427b565b9450613153565b8093505050505b919050565b50505050565b50505050565b6132018383836001613206565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613273576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156132ae576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132bb60008683876131e8565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561348557506134848773ffffffffffffffffffffffffffffffffffffffff166124ce565b5b1561354b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134fa6000888480600101955088612e95565b613530576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561348b57826000541461354657600080fd5b6135b7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561354c575b8160008190555050506135cd60008683876131ee565b5050505050565b8280546135e0906143f0565b90600052602060002090601f0160209004810192826136025760008555613649565b82601f1061361b57805160ff1916838001178555613649565b82800160010185558215613649579182015b8281111561364857825182559160200191906001019061362d565b5b509050613656919061369d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156136b657600081600090555060010161369e565b5090565b60006136cd6136c884614127565b614102565b9050828152602081018484840111156136e9576136e86145bd565b5b6136f48482856143ae565b509392505050565b600061370f61370a84614158565b614102565b90508281526020810184848401111561372b5761372a6145bd565b5b6137368482856143ae565b509392505050565b60008135905061374d816147ef565b92915050565b60008135905061376281614806565b92915050565b6000813590506137778161481d565b92915050565b60008151905061378c8161481d565b92915050565b600082601f8301126137a7576137a66145b8565b5b81356137b78482602086016136ba565b91505092915050565b600082601f8301126137d5576137d46145b8565b5b81356137e58482602086016136fc565b91505092915050565b6000813590506137fd81614834565b92915050565b600060208284031215613819576138186145c7565b5b60006138278482850161373e565b91505092915050565b60008060408385031215613847576138466145c7565b5b60006138558582860161373e565b92505060206138668582860161373e565b9150509250929050565b600080600060608486031215613889576138886145c7565b5b60006138978682870161373e565b93505060206138a88682870161373e565b92505060406138b9868287016137ee565b9150509250925092565b600080600080608085870312156138dd576138dc6145c7565b5b60006138eb8782880161373e565b94505060206138fc8782880161373e565b935050604061390d878288016137ee565b925050606085013567ffffffffffffffff81111561392e5761392d6145c2565b5b61393a87828801613792565b91505092959194509250565b6000806040838503121561395d5761395c6145c7565b5b600061396b8582860161373e565b925050602061397c85828601613753565b9150509250929050565b6000806040838503121561399d5761399c6145c7565b5b60006139ab8582860161373e565b92505060206139bc858286016137ee565b9150509250929050565b6000602082840312156139dc576139db6145c7565b5b60006139ea84828501613753565b91505092915050565b600060208284031215613a0957613a086145c7565b5b6000613a1784828501613768565b91505092915050565b600060208284031215613a3657613a356145c7565b5b6000613a448482850161377d565b91505092915050565b600060208284031215613a6357613a626145c7565b5b600082013567ffffffffffffffff811115613a8157613a806145c2565b5b613a8d848285016137c0565b91505092915050565b600060208284031215613aac57613aab6145c7565b5b6000613aba848285016137ee565b91505092915050565b60008060408385031215613ada57613ad96145c7565b5b6000613ae8858286016137ee565b9250506020613af98582860161373e565b9150509250929050565b6000613b0f8383613e5d565b60208301905092915050565b613b248161433a565b82525050565b6000613b35826141ae565b613b3f81856141dc565b9350613b4a83614189565b8060005b83811015613b7b578151613b628882613b03565b9750613b6d836141cf565b925050600181019050613b4e565b5085935050505092915050565b613b918161434c565b82525050565b6000613ba2826141b9565b613bac81856141ed565b9350613bbc8185602086016143bd565b613bc5816145cc565b840191505092915050565b6000613bdb826141c4565b613be58185614209565b9350613bf58185602086016143bd565b613bfe816145cc565b840191505092915050565b6000613c14826141c4565b613c1e818561421a565b9350613c2e8185602086016143bd565b80840191505092915050565b60008154613c47816143f0565b613c51818661421a565b94506001821660008114613c6c5760018114613c7d57613cb0565b60ff19831686528186019350613cb0565b613c8685614199565b60005b83811015613ca857815481890152600182019150602081019050613c89565b838801955050505b50505092915050565b6000613cc6601383614209565b9150613cd1826145dd565b602082019050919050565b6000613ce9602683614209565b9150613cf482614606565b604082019050919050565b6000613d0c601483614209565b9150613d1782614655565b602082019050919050565b6000613d2f601383614209565b9150613d3a8261467e565b602082019050919050565b6000613d52601883614209565b9150613d5d826146a7565b602082019050919050565b6000613d75602083614209565b9150613d80826146d0565b602082019050919050565b6000613d98601783614209565b9150613da3826146f9565b602082019050919050565b6000613dbb602f83614209565b9150613dc682614722565b604082019050919050565b6000613dde6000836141fe565b9150613de982614771565b600082019050919050565b6000613e01601483614209565b9150613e0c82614774565b602082019050919050565b6000613e24601783614209565b9150613e2f8261479d565b602082019050919050565b6000613e47601383614209565b9150613e52826147c6565b602082019050919050565b613e66816143a4565b82525050565b613e75816143a4565b82525050565b6000613e878286613c09565b9150613e938285613c09565b9150613e9f8284613c3a565b9150819050949350505050565b6000613eb782613dd1565b9150819050919050565b6000602082019050613ed66000830184613b1b565b92915050565b6000608082019050613ef16000830187613b1b565b613efe6020830186613b1b565b613f0b6040830185613e6c565b8181036060830152613f1d8184613b97565b905095945050505050565b60006020820190508181036000830152613f428184613b2a565b905092915050565b6000602082019050613f5f6000830184613b88565b92915050565b60006020820190508181036000830152613f7f8184613bd0565b905092915050565b60006020820190508181036000830152613fa081613cb9565b9050919050565b60006020820190508181036000830152613fc081613cdc565b9050919050565b60006020820190508181036000830152613fe081613cff565b9050919050565b6000602082019050818103600083015261400081613d22565b9050919050565b6000602082019050818103600083015261402081613d45565b9050919050565b6000602082019050818103600083015261404081613d68565b9050919050565b6000602082019050818103600083015261406081613d8b565b9050919050565b6000602082019050818103600083015261408081613dae565b9050919050565b600060208201905081810360008301526140a081613df4565b9050919050565b600060208201905081810360008301526140c081613e17565b9050919050565b600060208201905081810360008301526140e081613e3a565b9050919050565b60006020820190506140fc6000830184613e6c565b92915050565b600061410c61411d565b90506141188282614422565b919050565b6000604051905090565b600067ffffffffffffffff82111561414257614141614589565b5b61414b826145cc565b9050602081019050919050565b600067ffffffffffffffff82111561417357614172614589565b5b61417c826145cc565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614230826143a4565b915061423b836143a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142705761426f6144cd565b5b828201905092915050565b6000614286826143a4565b9150614291836143a4565b9250826142a1576142a06144fc565b5b828204905092915050565b60006142b7826143a4565b91506142c2836143a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142fb576142fa6144cd565b5b828202905092915050565b6000614311826143a4565b915061431c836143a4565b92508282101561432f5761432e6144cd565b5b828203905092915050565b600061434582614384565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143db5780820151818401526020810190506143c0565b838111156143ea576000848401525b50505050565b6000600282049050600182168061440857607f821691505b6020821081141561441c5761441b61452b565b5b50919050565b61442b826145cc565b810181811067ffffffffffffffff8211171561444a57614449614589565b5b80604052505050565b600061445e826143a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614491576144906144cd565b5b600182019050919050565b60006144a7826143a4565b91506144b2836143a4565b9250826144c2576144c16144fc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4578636565646564204d696e74204c696d697400000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f45786365656420746f74616c20616d6f756e7400000000000000000000000000600082015250565b7f45786365656465642046726565204d696e74204c696d69740000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4e6f74206f70656e20746f207075626c69632079657421000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6147f88161433a565b811461480357600080fd5b50565b61480f8161434c565b811461481a57600080fd5b50565b61482681614358565b811461483157600080fd5b50565b61483d816143a4565b811461484857600080fd5b5056fea26469706673582212208bcd8661b227c06e1e6e56f7f536d8746a2ee78fccda96b8582f5672b60d036e64736f6c63430008070033

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.