ETH Price: $2,957.44 (+0.89%)
Gas: 3 Gwei

Token

liquidmetals (LMT)
 

Overview

Max Total Supply

6,666 LMT

Holders

2,160

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
sellmeallyoursol.eth
Balance
3 LMT
0x8aF83A59185777575d669c9642C330c94095203E
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Liquid Metal by TRIPLE SIX. Holders will have exclusive access to events, giveaways and more.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LiquidMetal

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 10 of 12: liquidMetal.sol
///////////////////////////////////////////////////////////////////////////
//                                                                       //
//▄▄▄█████▓ ██▀███   ██▓ ██▓███   ██▓    ▓█████      ██████  ██▓▒██   ██▒//
//▓  ██▒ ▓▒▓██ ▒ ██▒▓██▒▓██░  ██▒▓██▒    ▓█   ▀    ▒██    ▒ ▓██▒▒▒ █ █ ▒░//
//▒ ▓██░ ▒░▓██ ░▄█ ▒▒██▒▓██░ ██▓▒▒██░    ▒███      ░ ▓██▄   ▒██▒░░  █   ░//
//░ ▓██▓ ░ ▒██▀▀█▄  ░██░▒██▄█▓▒ ▒▒██░    ▒▓█  ▄      ▒   ██▒░██░ ░ █ █ ▒ //
//  ▒██▒ ░ ░██▓ ▒██▒░██░▒██▒ ░  ░░██████▒░▒████▒   ▒██████▒▒░██░▒██▒ ▒██▒//
//  ▒ ░░   ░ ▒▓ ░▒▓░░▓  ▒▓▒░ ░  ░░ ▒░▓  ░░░ ▒░ ░   ▒ ▒▓▒ ▒ ░░▓  ▒▒ ░ ░▓ ░//
//    ░      ░▒ ░ ▒░ ▒ ░░▒ ░     ░ ░ ▒  ░ ░ ░  ░   ░ ░▒  ░ ░ ▒ ░░░   ░▒ ░//
//  ░        ░░   ░  ▒ ░░░         ░ ░      ░      ░  ░  ░   ▒ ░ ░    ░  //
//            ░      ░               ░  ░   ░  ░         ░   ░   ░    ░  //
///////////////////////////////////////////////////////////////////////////
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721A.sol";
import "./Ownable.sol";

contract LiquidMetal is ERC721A, Ownable {
  using Strings for uint256;

  string baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.02 ether;
  uint256 public maxSupply = 6666;
  uint256 public maxMintAmount = 5;
  uint256 public nftPerAddressLimit = 15;

  bool public paused = true;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  bool public pausedBurn = true;
  mapping(address => bool) public whitelist;
  mapping(address => uint256) public addressMintedBalance;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721A(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "ERROR: mintAmount must be higher than 0");
    require(supply + _mintAmount <= maxSupply, "ERROR: Too many tokens. Reduce mintAmount so that the totalSupply doesnt exceed maxSupply.");

    if (msg.sender != owner()) {
        require(!paused, "ERROR: Public sale is paused.");
        require(_mintAmount <= maxMintAmount, "ERROR: You are exceeding the maximum allowed tokens to mint per transaction.");
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "ERROR: User is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "ERROR: Max NFT per address exceeded");
        }
        require(msg.value >= cost * _mintAmount, "ERROR: Cost doesn't match");
    }

    _safeMint(msg.sender, _mintAmount);
    addressMintedBalance[msg.sender] += _mintAmount;
  }

  function isWhitelisted(address _user) public view returns (bool) {
    return whitelist[_user];
  }

  function burnToken(uint256 tokenId) public {
    require(!pausedBurn,"ERROR: Burn is paused");
    _burn(tokenId);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

  function reveal() public onlyOwner {
    revealed = true;
  }

  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

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

  function pauseBurn(bool _state) public onlyOwner {
    pausedBurn = _state;
  }

  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }

  function whitelistUsers(address[] calldata addresses) external onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      whitelist[addresses[i]] = true;
    }
  }

  function removeUsersFromWhitelist(address[] calldata addresses) external onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      whitelist[addresses[i]] = false;
    }
  }
 
  function withdraw() public payable onlyOwner {
    uint256 balance = address(this).balance;
    uint256 dev_share = (balance * 13) / 100;
    payable(0x553963D4f8a92FdAfE28B1828bc0dc137732ee3F).transfer(dev_share);
    payable(owner()).transfer(address(this).balance);
  }
}

File 1 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 2 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 3 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 4 of 12: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721.sol';
import './IERC721Receiver.sol';
import './IERC721Metadata.sol';
import './IERC721Enumerable.sol';
import './Address.sol';
import './Context.sol';
import './Strings.sol';
import './ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    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;
    }

    // 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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 (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 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 (!_checkOnERC721Received(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 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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(updatedIndex);
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * 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 {}
}

File 5 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 6 of 12: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

File 7 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 8 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 9 of 12: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 11 of 12: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./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: 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pauseBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausedBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeUsersFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a91906200020b565b5066470de4df820000600c55611a0a600d556005600e55600f80556010805463ffffffff191663010100011790553480156200006357600080fd5b5060405162002e1b38038062002e1b833981016040819052620000869162000368565b8351849084906200009f9060029060208501906200020b565b508051620000b59060039060208401906200020b565b505050620000d2620000cc620000f260201b60201c565b620000f6565b620000dd8262000148565b620000e881620001b0565b5050505062000474565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001975760405162461bcd60e51b8152602060048201819052602482015260008051602062002dfb83398151915260448201526064015b60405180910390fd5b8051620001ac9060099060208401906200020b565b5050565b6008546001600160a01b03163314620001fb5760405162461bcd60e51b8152602060048201819052602482015260008051602062002dfb83398151915260448201526064016200018e565b8051620001ac90600b9060208401905b828054620002199062000421565b90600052602060002090601f0160209004810192826200023d576000855562000288565b82601f106200025857805160ff191683800117855562000288565b8280016001018555821562000288579182015b82811115620002885782518255916020019190600101906200026b565b50620002969291506200029a565b5090565b5b808211156200029657600081556001016200029b565b600082601f830112620002c357600080fd5b81516001600160401b0380821115620002e057620002e06200045e565b604051601f8301601f19908116603f011681019082821181831017156200030b576200030b6200045e565b816040528381526020925086838588010111156200032857600080fd5b600091505b838210156200034c57858201830151818301840152908201906200032d565b838211156200035e5760008385830101525b9695505050505050565b600080600080608085870312156200037f57600080fd5b84516001600160401b03808211156200039757600080fd5b620003a588838901620002b1565b95506020870151915080821115620003bc57600080fd5b620003ca88838901620002b1565b94506040870151915080821115620003e157600080fd5b620003ef88838901620002b1565b935060608701519150808211156200040657600080fd5b506200041587828801620002b1565b91505092959194509250565b600181811c908216806200043657607f821691505b602082108114156200045857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61297780620004846000396000f3fe6080604052600436106102935760003560e01c80636352211e1161015a578063a475b5dd116100c1578063d5abeb011161007a578063d5abeb01146107d1578063da3ef23f146107e7578063e985e9c514610807578063edec5f2714610850578063f2c4ce1e14610870578063f2fde38b1461089057600080fd5b8063a475b5dd14610731578063b88d4fde14610746578063ba7d2c7614610766578063c66828621461077c578063c87b56dd14610791578063d0eb26b0146107b157600080fd5b80638da5cb5b116101135780638da5cb5b1461067b57806395d89b41146106995780639b19251a146106ae5780639c70b512146106de578063a0712d68146106fe578063a22cb4651461071157600080fd5b80636352211e146105c657806370a08231146105e6578063715018a6146106065780637b47ec1a1461061b5780637f00c7a61461063b5780638d21c7701461065b57600080fd5b80632f745c59116101fe57806344a0d68a116101b757806344a0d68a1461050c5780634f6ccce71461052c578063518302271461054c57806355f804b31461056b57806357cef3db1461058b5780635c975abb146105ac57600080fd5b80632f745c591461043e5780633af32abf1461045e5780633c952764146104975780633ccfd60b146104b757806342842e0e146104bf578063438b6300146104df57600080fd5b806313faede61161025057806313faede61461037e57806318160ddd146103a257806318cae269146103bb5780631be8db96146103e8578063239c70ae1461040857806323b872dd1461041e57600080fd5b806301ffc9a71461029857806302329a29146102cd57806306fdde03146102ef578063081812fc14610311578063081c8c4414610349578063095ea7b31461035e575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612587565b6108b0565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e836600461256c565b61091d565b005b3480156102fb57600080fd5b50610304610963565b6040516102c49190612793565b34801561031d57600080fd5b5061033161032c366004612609565b6109f5565b6040516001600160a01b0390911681526020016102c4565b34801561035557600080fd5b50610304610a39565b34801561036a57600080fd5b506102ed6103793660046124ce565b610ac7565b34801561038a57600080fd5b50610394600c5481565b6040519081526020016102c4565b3480156103ae57600080fd5b5060015460005403610394565b3480156103c757600080fd5b506103946103d636600461239f565b60126020526000908152604090205481565b3480156103f457600080fd5b506102ed61040336600461256c565b610b55565b34801561041457600080fd5b50610394600e5481565b34801561042a57600080fd5b506102ed6104393660046123ed565b610b9d565b34801561044a57600080fd5b506103946104593660046124ce565b610ba8565b34801561046a57600080fd5b506102b861047936600461239f565b6001600160a01b031660009081526011602052604090205460ff1690565b3480156104a357600080fd5b506102ed6104b236600461256c565b610c9b565b6102ed610ce1565b3480156104cb57600080fd5b506102ed6104da3660046123ed565b610da3565b3480156104eb57600080fd5b506104ff6104fa36600461239f565b610dbe565b6040516102c4919061274f565b34801561051857600080fd5b506102ed610527366004612609565b610e5f565b34801561053857600080fd5b50610394610547366004612609565b610e8e565b34801561055857600080fd5b506010546102b890610100900460ff1681565b34801561057757600080fd5b506102ed6105863660046125c1565b610f2f565b34801561059757600080fd5b506010546102b8906301000000900460ff1681565b3480156105b857600080fd5b506010546102b89060ff1681565b3480156105d257600080fd5b506103316105e1366004612609565b610f70565b3480156105f257600080fd5b5061039461060136600461239f565b610f82565b34801561061257600080fd5b506102ed610fd0565b34801561062757600080fd5b506102ed610636366004612609565b611006565b34801561064757600080fd5b506102ed610656366004612609565b611064565b34801561066757600080fd5b506102ed6106763660046124f8565b611093565b34801561068757600080fd5b506008546001600160a01b0316610331565b3480156106a557600080fd5b5061030461112f565b3480156106ba57600080fd5b506102b86106c936600461239f565b60116020526000908152604090205460ff1681565b3480156106ea57600080fd5b506010546102b89062010000900460ff1681565b6102ed61070c366004612609565b61113e565b34801561071d57600080fd5b506102ed61072c3660046124a4565b6114c5565b34801561073d57600080fd5b506102ed61155b565b34801561075257600080fd5b506102ed610761366004612429565b611596565b34801561077257600080fd5b50610394600f5481565b34801561078857600080fd5b506103046115d0565b34801561079d57600080fd5b506103046107ac366004612609565b6115dd565b3480156107bd57600080fd5b506102ed6107cc366004612609565b61174c565b3480156107dd57600080fd5b50610394600d5481565b3480156107f357600080fd5b506102ed6108023660046125c1565b61177b565b34801561081357600080fd5b506102b86108223660046123ba565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561085c57600080fd5b506102ed61086b3660046124f8565b6117b8565b34801561087c57600080fd5b506102ed61088b3660046125c1565b611854565b34801561089c57600080fd5b506102ed6108ab36600461239f565b611891565b60006001600160e01b031982166380ac58cd60e01b14806108e157506001600160e01b03198216635b5e139f60e01b145b806108fc57506001600160e01b0319821663780e9d6360e01b145b8061091757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109505760405162461bcd60e51b8152600401610947906127a6565b60405180910390fd5b6010805460ff1916911515919091179055565b60606002805461097290612869565b80601f016020809104026020016040519081016040528092919081815260200182805461099e90612869565b80156109eb5780601f106109c0576101008083540402835291602001916109eb565b820191906000526020600020905b8154815290600101906020018083116109ce57829003601f168201915b5050505050905090565b6000610a0082611929565b610a1d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b8054610a4690612869565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7290612869565b8015610abf5780601f10610a9457610100808354040283529160200191610abf565b820191906000526020600020905b815481529060010190602001808311610aa257829003601f168201915b505050505081565b6000610ad282610f70565b9050806001600160a01b0316836001600160a01b03161415610b075760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b275750610b258133610822565b155b15610b45576040516367d9dca160e11b815260040160405180910390fd5b610b50838383611954565b505050565b6008546001600160a01b03163314610b7f5760405162461bcd60e51b8152600401610947906127a6565b6010805491151563010000000263ff00000019909216919091179055565b610b508383836119b0565b6000610bb383610f82565b8210610bd2576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610c9557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610c415750610c8d565b80516001600160a01b031615610c5657805192505b876001600160a01b0316836001600160a01b03161415610c8b5786841415610c845750935061091792505050565b6001909301925b505b600101610bda565b50600080fd5b6008546001600160a01b03163314610cc55760405162461bcd60e51b8152600401610947906127a6565b60108054911515620100000262ff000019909216919091179055565b6008546001600160a01b03163314610d0b5760405162461bcd60e51b8152600401610947906127a6565b4760006064610d1b83600d612807565b610d2591906127f3565b60405190915073553963d4f8a92fdafe28b1828bc0dc137732ee3f9082156108fc029083906000818181858888f19350505050158015610d69573d6000803e3d6000fd5b506008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b50573d6000803e3d6000fd5b610b5083838360405180602001604052806000815250611596565b60606000610dcb83610f82565b90506000816001600160401b03811115610de757610de7612915565b604051908082528060200260200182016040528015610e10578160200160208202803683370190505b50905060005b82811015610e5757610e288582610ba8565b828281518110610e3a57610e3a6128ff565b602090810291909101015280610e4f816128a4565b915050610e16565b509392505050565b6008546001600160a01b03163314610e895760405162461bcd60e51b8152600401610947906127a6565b600c55565b6000805481805b82811015610f1557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610f0c5785831415610f055750949350505050565b6001909201915b50600101610e95565b506040516329c8c00760e21b815260040160405180910390fd5b6008546001600160a01b03163314610f595760405162461bcd60e51b8152600401610947906127a6565b8051610f6c906009906020840190612265565b5050565b6000610f7b82611bc4565b5192915050565b60006001600160a01b038216610fab576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ffa5760405162461bcd60e51b8152600401610947906127a6565b6110046000611cdd565b565b6010546301000000900460ff16156110585760405162461bcd60e51b815260206004820152601560248201527411549493d48e88109d5c9b881a5cc81c185d5cd959605a1b6044820152606401610947565b61106181611d2f565b50565b6008546001600160a01b0316331461108e5760405162461bcd60e51b8152600401610947906127a6565b600e55565b6008546001600160a01b031633146110bd5760405162461bcd60e51b8152600401610947906127a6565b60005b81811015610b50576000601160008585858181106110e0576110e06128ff565b90506020020160208101906110f5919061239f565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611127816128a4565b9150506110c0565b60606003805461097290612869565b600061114d6001546000540390565b9050600082116111af5760405162461bcd60e51b815260206004820152602760248201527f4552524f523a206d696e74416d6f756e74206d757374206265206869676865726044820152660207468616e20360cc1b6064820152608401610947565b600d546111bc83836127db565b11156112565760405162461bcd60e51b815260206004820152605a60248201527f4552524f523a20546f6f206d616e7920746f6b656e732e20526564756365206d60448201527f696e74416d6f756e7420736f20746861742074686520746f74616c537570706c60648201527f7920646f65736e7420657863656564206d6178537570706c792e000000000000608482015260a401610947565b6008546001600160a01b031633146114935760105460ff16156112bb5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a205075626c69632073616c65206973207061757365642e0000006044820152606401610947565b600e548211156113485760405162461bcd60e51b815260206004820152604c60248201527f4552524f523a20596f752061726520657863656564696e6720746865206d617860448201527f696d756d20616c6c6f77656420746f6b656e7320746f206d696e74207065722060648201526b3a3930b739b0b1ba34b7b71760a11b608482015260a401610947565b60105462010000900460ff16151560011415611436573360009081526011602052604090205460ff166113bd5760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a2055736572206973206e6f742077686974656c697374656400006044820152606401610947565b33600090815260126020526040902054600f546113da84836127db565b11156114345760405162461bcd60e51b815260206004820152602360248201527f4552524f523a204d6178204e465420706572206164647265737320657863656560448201526219195960ea1b6064820152608401610947565b505b81600c546114449190612807565b3410156114935760405162461bcd60e51b815260206004820152601960248201527f4552524f523a20436f737420646f65736e2774206d61746368000000000000006044820152606401610947565b61149d3383611eab565b33600090815260126020526040812080548492906114bc9084906127db565b90915550505050565b6001600160a01b0382163314156114ef5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146115855760405162461bcd60e51b8152600401610947906127a6565b6010805461ff001916610100179055565b6115a18484846119b0565b6115ad84848484611ec5565b6115ca576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600a8054610a4690612869565b60606115e882611929565b61164c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610947565b601054610100900460ff166116ed57600b805461166890612869565b80601f016020809104026020016040519081016040528092919081815260200182805461169490612869565b80156116e15780601f106116b6576101008083540402835291602001916116e1565b820191906000526020600020905b8154815290600101906020018083116116c457829003601f168201915b50505050509050919050565b60006116f7611fd4565b905060008151116117175760405180602001604052806000815250611745565b8061172184611fe3565b600a6040516020016117359392919061264e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117765760405162461bcd60e51b8152600401610947906127a6565b600f55565b6008546001600160a01b031633146117a55760405162461bcd60e51b8152600401610947906127a6565b8051610f6c90600a906020840190612265565b6008546001600160a01b031633146117e25760405162461bcd60e51b8152600401610947906127a6565b60005b81811015610b5057600160116000858585818110611805576118056128ff565b905060200201602081019061181a919061239f565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061184c816128a4565b9150506117e5565b6008546001600160a01b0316331461187e5760405162461bcd60e51b8152600401610947906127a6565b8051610f6c90600b906020840190612265565b6008546001600160a01b031633146118bb5760405162461bcd60e51b8152600401610947906127a6565b6001600160a01b0381166119205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610947565b61106181611cdd565b6000805482108015610917575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006119bb82611bc4565b80519091506000906001600160a01b0316336001600160a01b031614806119e9575081516119e99033610822565b80611a045750336119f9846109f5565b6001600160a01b0316145b905080611a2457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611a595760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611a8057604051633a954ecd60e21b815260040160405180910390fd5b611a906000848460000151611954565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611b7a57600054811015611b7a57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810182905290548290811015611cc457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611cc25780516001600160a01b031615611c59579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611cbd579392505050565b611c59565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611d3a82611bc4565b9050611d4c6000838360000151611954565b80516001600160a01b039081166000908152600560209081526040808320805467ffffffffffffffff1981166001600160401b0391821660001901821617909155855185168452818420805467ffffffffffffffff60801b198116600160801b9182900484166001908101851690920217909155865188865260049094528285208054600160e01b9588166001600160e01b031990911617600160a01b42909416939093029290921760ff60e01b1916939093179055908501808352912054909116611e6357600054811015611e6357815160008281526004602090815260409091208054918501516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b50805160405183916000916001600160a01b03909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506001805481019055565b610f6c8282604051806020016040528060008152506120e0565b60006001600160a01b0384163b15611fc857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f09903390899088908890600401612712565b602060405180830381600087803b158015611f2357600080fd5b505af1925050508015611f53575060408051601f3d908101601f19168201909252611f50918101906125a4565b60015b611fae573d808015611f81576040519150601f19603f3d011682016040523d82523d6000602084013e611f86565b606091505b508051611fa6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fcc565b5060015b949350505050565b60606009805461097290612869565b6060816120075750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612031578061201b816128a4565b915061202a9050600a836127f3565b915061200b565b6000816001600160401b0381111561204b5761204b612915565b6040519080825280601f01601f191660200182016040528015612075576020820181803683370190505b5090505b8415611fcc5761208a600183612826565b9150612097600a866128bf565b6120a29060306127db565b60f81b8183815181106120b7576120b76128ff565b60200101906001600160f81b031916908160001a9053506120d9600a866127f3565b9450612079565b610b5083838360016000546001600160a01b03851661211157604051622e076360e81b815260040160405180910390fd5b8361212f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561224a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015612220575061221e6000888488611ec5565b155b1561223e576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016121c9565b506fffffffffffffffffffffffffffffffff16600055611bbd565b82805461227190612869565b90600052602060002090601f01602090048101928261229357600085556122d9565b82601f106122ac57805160ff19168380011785556122d9565b828001600101855582156122d9579182015b828111156122d95782518255916020019190600101906122be565b506122e59291506122e9565b5090565b5b808211156122e557600081556001016122ea565b60006001600160401b038084111561231857612318612915565b604051601f8501601f19908116603f0116810190828211818310171561234057612340612915565b8160405280935085815286868601111561235957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461238a57600080fd5b919050565b8035801515811461238a57600080fd5b6000602082840312156123b157600080fd5b61174582612373565b600080604083850312156123cd57600080fd5b6123d683612373565b91506123e460208401612373565b90509250929050565b60008060006060848603121561240257600080fd5b61240b84612373565b925061241960208501612373565b9150604084013590509250925092565b6000806000806080858703121561243f57600080fd5b61244885612373565b935061245660208601612373565b92506040850135915060608501356001600160401b0381111561247857600080fd5b8501601f8101871361248957600080fd5b612498878235602084016122fe565b91505092959194509250565b600080604083850312156124b757600080fd5b6124c083612373565b91506123e46020840161238f565b600080604083850312156124e157600080fd5b6124ea83612373565b946020939093013593505050565b6000806020838503121561250b57600080fd5b82356001600160401b038082111561252257600080fd5b818501915085601f83011261253657600080fd5b81358181111561254557600080fd5b8660208260051b850101111561255a57600080fd5b60209290920196919550909350505050565b60006020828403121561257e57600080fd5b6117458261238f565b60006020828403121561259957600080fd5b81356117458161292b565b6000602082840312156125b657600080fd5b81516117458161292b565b6000602082840312156125d357600080fd5b81356001600160401b038111156125e957600080fd5b8201601f810184136125fa57600080fd5b611fcc848235602084016122fe565b60006020828403121561261b57600080fd5b5035919050565b6000815180845261263a81602086016020860161283d565b601f01601f19169290920160200192915050565b6000845160206126618285838a0161283d565b8551918401916126748184848a0161283d565b8554920191600090600181811c908083168061269157607f831692505b8583108114156126af57634e487b7160e01b85526022600452602485fd5b8080156126c357600181146126d457612701565b60ff19851688528388019550612701565b60008b81526020902060005b858110156126f95781548a8201529084019088016126e0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061274590830184612622565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127875783518352928401929184019160010161276b565b50909695505050505050565b6020815260006117456020830184612622565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156127ee576127ee6128d3565b500190565b600082612802576128026128e9565b500490565b6000816000190483118215151615612821576128216128d3565b500290565b600082821015612838576128386128d3565b500390565b60005b83811015612858578181015183820152602001612840565b838111156115ca5750506000910152565b600181811c9082168061287d57607f821691505b6020821081141561289e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128b8576128b86128d3565b5060010190565b6000826128ce576128ce6128e9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461106157600080fdfea2646970667358221220d531c8e1ceab7d5879f2bd9260d4306304bf58183fc32cdca9940fe32349d08564736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000c6c69717569646d6574616c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c4d5400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e67577a72356d7748594c424d777234396a457736614a613954677269355835414148676834364448616b682f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d58637362544c46636e57524b726b3235556e3845654b58373550674c5555436734684a7341677a4e6b4164792f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102935760003560e01c80636352211e1161015a578063a475b5dd116100c1578063d5abeb011161007a578063d5abeb01146107d1578063da3ef23f146107e7578063e985e9c514610807578063edec5f2714610850578063f2c4ce1e14610870578063f2fde38b1461089057600080fd5b8063a475b5dd14610731578063b88d4fde14610746578063ba7d2c7614610766578063c66828621461077c578063c87b56dd14610791578063d0eb26b0146107b157600080fd5b80638da5cb5b116101135780638da5cb5b1461067b57806395d89b41146106995780639b19251a146106ae5780639c70b512146106de578063a0712d68146106fe578063a22cb4651461071157600080fd5b80636352211e146105c657806370a08231146105e6578063715018a6146106065780637b47ec1a1461061b5780637f00c7a61461063b5780638d21c7701461065b57600080fd5b80632f745c59116101fe57806344a0d68a116101b757806344a0d68a1461050c5780634f6ccce71461052c578063518302271461054c57806355f804b31461056b57806357cef3db1461058b5780635c975abb146105ac57600080fd5b80632f745c591461043e5780633af32abf1461045e5780633c952764146104975780633ccfd60b146104b757806342842e0e146104bf578063438b6300146104df57600080fd5b806313faede61161025057806313faede61461037e57806318160ddd146103a257806318cae269146103bb5780631be8db96146103e8578063239c70ae1461040857806323b872dd1461041e57600080fd5b806301ffc9a71461029857806302329a29146102cd57806306fdde03146102ef578063081812fc14610311578063081c8c4414610349578063095ea7b31461035e575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612587565b6108b0565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e836600461256c565b61091d565b005b3480156102fb57600080fd5b50610304610963565b6040516102c49190612793565b34801561031d57600080fd5b5061033161032c366004612609565b6109f5565b6040516001600160a01b0390911681526020016102c4565b34801561035557600080fd5b50610304610a39565b34801561036a57600080fd5b506102ed6103793660046124ce565b610ac7565b34801561038a57600080fd5b50610394600c5481565b6040519081526020016102c4565b3480156103ae57600080fd5b5060015460005403610394565b3480156103c757600080fd5b506103946103d636600461239f565b60126020526000908152604090205481565b3480156103f457600080fd5b506102ed61040336600461256c565b610b55565b34801561041457600080fd5b50610394600e5481565b34801561042a57600080fd5b506102ed6104393660046123ed565b610b9d565b34801561044a57600080fd5b506103946104593660046124ce565b610ba8565b34801561046a57600080fd5b506102b861047936600461239f565b6001600160a01b031660009081526011602052604090205460ff1690565b3480156104a357600080fd5b506102ed6104b236600461256c565b610c9b565b6102ed610ce1565b3480156104cb57600080fd5b506102ed6104da3660046123ed565b610da3565b3480156104eb57600080fd5b506104ff6104fa36600461239f565b610dbe565b6040516102c4919061274f565b34801561051857600080fd5b506102ed610527366004612609565b610e5f565b34801561053857600080fd5b50610394610547366004612609565b610e8e565b34801561055857600080fd5b506010546102b890610100900460ff1681565b34801561057757600080fd5b506102ed6105863660046125c1565b610f2f565b34801561059757600080fd5b506010546102b8906301000000900460ff1681565b3480156105b857600080fd5b506010546102b89060ff1681565b3480156105d257600080fd5b506103316105e1366004612609565b610f70565b3480156105f257600080fd5b5061039461060136600461239f565b610f82565b34801561061257600080fd5b506102ed610fd0565b34801561062757600080fd5b506102ed610636366004612609565b611006565b34801561064757600080fd5b506102ed610656366004612609565b611064565b34801561066757600080fd5b506102ed6106763660046124f8565b611093565b34801561068757600080fd5b506008546001600160a01b0316610331565b3480156106a557600080fd5b5061030461112f565b3480156106ba57600080fd5b506102b86106c936600461239f565b60116020526000908152604090205460ff1681565b3480156106ea57600080fd5b506010546102b89062010000900460ff1681565b6102ed61070c366004612609565b61113e565b34801561071d57600080fd5b506102ed61072c3660046124a4565b6114c5565b34801561073d57600080fd5b506102ed61155b565b34801561075257600080fd5b506102ed610761366004612429565b611596565b34801561077257600080fd5b50610394600f5481565b34801561078857600080fd5b506103046115d0565b34801561079d57600080fd5b506103046107ac366004612609565b6115dd565b3480156107bd57600080fd5b506102ed6107cc366004612609565b61174c565b3480156107dd57600080fd5b50610394600d5481565b3480156107f357600080fd5b506102ed6108023660046125c1565b61177b565b34801561081357600080fd5b506102b86108223660046123ba565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561085c57600080fd5b506102ed61086b3660046124f8565b6117b8565b34801561087c57600080fd5b506102ed61088b3660046125c1565b611854565b34801561089c57600080fd5b506102ed6108ab36600461239f565b611891565b60006001600160e01b031982166380ac58cd60e01b14806108e157506001600160e01b03198216635b5e139f60e01b145b806108fc57506001600160e01b0319821663780e9d6360e01b145b8061091757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109505760405162461bcd60e51b8152600401610947906127a6565b60405180910390fd5b6010805460ff1916911515919091179055565b60606002805461097290612869565b80601f016020809104026020016040519081016040528092919081815260200182805461099e90612869565b80156109eb5780601f106109c0576101008083540402835291602001916109eb565b820191906000526020600020905b8154815290600101906020018083116109ce57829003601f168201915b5050505050905090565b6000610a0082611929565b610a1d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b8054610a4690612869565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7290612869565b8015610abf5780601f10610a9457610100808354040283529160200191610abf565b820191906000526020600020905b815481529060010190602001808311610aa257829003601f168201915b505050505081565b6000610ad282610f70565b9050806001600160a01b0316836001600160a01b03161415610b075760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b275750610b258133610822565b155b15610b45576040516367d9dca160e11b815260040160405180910390fd5b610b50838383611954565b505050565b6008546001600160a01b03163314610b7f5760405162461bcd60e51b8152600401610947906127a6565b6010805491151563010000000263ff00000019909216919091179055565b610b508383836119b0565b6000610bb383610f82565b8210610bd2576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610c9557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610c415750610c8d565b80516001600160a01b031615610c5657805192505b876001600160a01b0316836001600160a01b03161415610c8b5786841415610c845750935061091792505050565b6001909301925b505b600101610bda565b50600080fd5b6008546001600160a01b03163314610cc55760405162461bcd60e51b8152600401610947906127a6565b60108054911515620100000262ff000019909216919091179055565b6008546001600160a01b03163314610d0b5760405162461bcd60e51b8152600401610947906127a6565b4760006064610d1b83600d612807565b610d2591906127f3565b60405190915073553963d4f8a92fdafe28b1828bc0dc137732ee3f9082156108fc029083906000818181858888f19350505050158015610d69573d6000803e3d6000fd5b506008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b50573d6000803e3d6000fd5b610b5083838360405180602001604052806000815250611596565b60606000610dcb83610f82565b90506000816001600160401b03811115610de757610de7612915565b604051908082528060200260200182016040528015610e10578160200160208202803683370190505b50905060005b82811015610e5757610e288582610ba8565b828281518110610e3a57610e3a6128ff565b602090810291909101015280610e4f816128a4565b915050610e16565b509392505050565b6008546001600160a01b03163314610e895760405162461bcd60e51b8152600401610947906127a6565b600c55565b6000805481805b82811015610f1557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610f0c5785831415610f055750949350505050565b6001909201915b50600101610e95565b506040516329c8c00760e21b815260040160405180910390fd5b6008546001600160a01b03163314610f595760405162461bcd60e51b8152600401610947906127a6565b8051610f6c906009906020840190612265565b5050565b6000610f7b82611bc4565b5192915050565b60006001600160a01b038216610fab576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ffa5760405162461bcd60e51b8152600401610947906127a6565b6110046000611cdd565b565b6010546301000000900460ff16156110585760405162461bcd60e51b815260206004820152601560248201527411549493d48e88109d5c9b881a5cc81c185d5cd959605a1b6044820152606401610947565b61106181611d2f565b50565b6008546001600160a01b0316331461108e5760405162461bcd60e51b8152600401610947906127a6565b600e55565b6008546001600160a01b031633146110bd5760405162461bcd60e51b8152600401610947906127a6565b60005b81811015610b50576000601160008585858181106110e0576110e06128ff565b90506020020160208101906110f5919061239f565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611127816128a4565b9150506110c0565b60606003805461097290612869565b600061114d6001546000540390565b9050600082116111af5760405162461bcd60e51b815260206004820152602760248201527f4552524f523a206d696e74416d6f756e74206d757374206265206869676865726044820152660207468616e20360cc1b6064820152608401610947565b600d546111bc83836127db565b11156112565760405162461bcd60e51b815260206004820152605a60248201527f4552524f523a20546f6f206d616e7920746f6b656e732e20526564756365206d60448201527f696e74416d6f756e7420736f20746861742074686520746f74616c537570706c60648201527f7920646f65736e7420657863656564206d6178537570706c792e000000000000608482015260a401610947565b6008546001600160a01b031633146114935760105460ff16156112bb5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a205075626c69632073616c65206973207061757365642e0000006044820152606401610947565b600e548211156113485760405162461bcd60e51b815260206004820152604c60248201527f4552524f523a20596f752061726520657863656564696e6720746865206d617860448201527f696d756d20616c6c6f77656420746f6b656e7320746f206d696e74207065722060648201526b3a3930b739b0b1ba34b7b71760a11b608482015260a401610947565b60105462010000900460ff16151560011415611436573360009081526011602052604090205460ff166113bd5760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a2055736572206973206e6f742077686974656c697374656400006044820152606401610947565b33600090815260126020526040902054600f546113da84836127db565b11156114345760405162461bcd60e51b815260206004820152602360248201527f4552524f523a204d6178204e465420706572206164647265737320657863656560448201526219195960ea1b6064820152608401610947565b505b81600c546114449190612807565b3410156114935760405162461bcd60e51b815260206004820152601960248201527f4552524f523a20436f737420646f65736e2774206d61746368000000000000006044820152606401610947565b61149d3383611eab565b33600090815260126020526040812080548492906114bc9084906127db565b90915550505050565b6001600160a01b0382163314156114ef5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146115855760405162461bcd60e51b8152600401610947906127a6565b6010805461ff001916610100179055565b6115a18484846119b0565b6115ad84848484611ec5565b6115ca576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600a8054610a4690612869565b60606115e882611929565b61164c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610947565b601054610100900460ff166116ed57600b805461166890612869565b80601f016020809104026020016040519081016040528092919081815260200182805461169490612869565b80156116e15780601f106116b6576101008083540402835291602001916116e1565b820191906000526020600020905b8154815290600101906020018083116116c457829003601f168201915b50505050509050919050565b60006116f7611fd4565b905060008151116117175760405180602001604052806000815250611745565b8061172184611fe3565b600a6040516020016117359392919061264e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117765760405162461bcd60e51b8152600401610947906127a6565b600f55565b6008546001600160a01b031633146117a55760405162461bcd60e51b8152600401610947906127a6565b8051610f6c90600a906020840190612265565b6008546001600160a01b031633146117e25760405162461bcd60e51b8152600401610947906127a6565b60005b81811015610b5057600160116000858585818110611805576118056128ff565b905060200201602081019061181a919061239f565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061184c816128a4565b9150506117e5565b6008546001600160a01b0316331461187e5760405162461bcd60e51b8152600401610947906127a6565b8051610f6c90600b906020840190612265565b6008546001600160a01b031633146118bb5760405162461bcd60e51b8152600401610947906127a6565b6001600160a01b0381166119205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610947565b61106181611cdd565b6000805482108015610917575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006119bb82611bc4565b80519091506000906001600160a01b0316336001600160a01b031614806119e9575081516119e99033610822565b80611a045750336119f9846109f5565b6001600160a01b0316145b905080611a2457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611a595760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611a8057604051633a954ecd60e21b815260040160405180910390fd5b611a906000848460000151611954565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611b7a57600054811015611b7a57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810182905290548290811015611cc457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611cc25780516001600160a01b031615611c59579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611cbd579392505050565b611c59565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611d3a82611bc4565b9050611d4c6000838360000151611954565b80516001600160a01b039081166000908152600560209081526040808320805467ffffffffffffffff1981166001600160401b0391821660001901821617909155855185168452818420805467ffffffffffffffff60801b198116600160801b9182900484166001908101851690920217909155865188865260049094528285208054600160e01b9588166001600160e01b031990911617600160a01b42909416939093029290921760ff60e01b1916939093179055908501808352912054909116611e6357600054811015611e6357815160008281526004602090815260409091208054918501516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b50805160405183916000916001600160a01b03909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506001805481019055565b610f6c8282604051806020016040528060008152506120e0565b60006001600160a01b0384163b15611fc857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f09903390899088908890600401612712565b602060405180830381600087803b158015611f2357600080fd5b505af1925050508015611f53575060408051601f3d908101601f19168201909252611f50918101906125a4565b60015b611fae573d808015611f81576040519150601f19603f3d011682016040523d82523d6000602084013e611f86565b606091505b508051611fa6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fcc565b5060015b949350505050565b60606009805461097290612869565b6060816120075750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612031578061201b816128a4565b915061202a9050600a836127f3565b915061200b565b6000816001600160401b0381111561204b5761204b612915565b6040519080825280601f01601f191660200182016040528015612075576020820181803683370190505b5090505b8415611fcc5761208a600183612826565b9150612097600a866128bf565b6120a29060306127db565b60f81b8183815181106120b7576120b76128ff565b60200101906001600160f81b031916908160001a9053506120d9600a866127f3565b9450612079565b610b5083838360016000546001600160a01b03851661211157604051622e076360e81b815260040160405180910390fd5b8361212f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561224a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015612220575061221e6000888488611ec5565b155b1561223e576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016121c9565b506fffffffffffffffffffffffffffffffff16600055611bbd565b82805461227190612869565b90600052602060002090601f01602090048101928261229357600085556122d9565b82601f106122ac57805160ff19168380011785556122d9565b828001600101855582156122d9579182015b828111156122d95782518255916020019190600101906122be565b506122e59291506122e9565b5090565b5b808211156122e557600081556001016122ea565b60006001600160401b038084111561231857612318612915565b604051601f8501601f19908116603f0116810190828211818310171561234057612340612915565b8160405280935085815286868601111561235957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461238a57600080fd5b919050565b8035801515811461238a57600080fd5b6000602082840312156123b157600080fd5b61174582612373565b600080604083850312156123cd57600080fd5b6123d683612373565b91506123e460208401612373565b90509250929050565b60008060006060848603121561240257600080fd5b61240b84612373565b925061241960208501612373565b9150604084013590509250925092565b6000806000806080858703121561243f57600080fd5b61244885612373565b935061245660208601612373565b92506040850135915060608501356001600160401b0381111561247857600080fd5b8501601f8101871361248957600080fd5b612498878235602084016122fe565b91505092959194509250565b600080604083850312156124b757600080fd5b6124c083612373565b91506123e46020840161238f565b600080604083850312156124e157600080fd5b6124ea83612373565b946020939093013593505050565b6000806020838503121561250b57600080fd5b82356001600160401b038082111561252257600080fd5b818501915085601f83011261253657600080fd5b81358181111561254557600080fd5b8660208260051b850101111561255a57600080fd5b60209290920196919550909350505050565b60006020828403121561257e57600080fd5b6117458261238f565b60006020828403121561259957600080fd5b81356117458161292b565b6000602082840312156125b657600080fd5b81516117458161292b565b6000602082840312156125d357600080fd5b81356001600160401b038111156125e957600080fd5b8201601f810184136125fa57600080fd5b611fcc848235602084016122fe565b60006020828403121561261b57600080fd5b5035919050565b6000815180845261263a81602086016020860161283d565b601f01601f19169290920160200192915050565b6000845160206126618285838a0161283d565b8551918401916126748184848a0161283d565b8554920191600090600181811c908083168061269157607f831692505b8583108114156126af57634e487b7160e01b85526022600452602485fd5b8080156126c357600181146126d457612701565b60ff19851688528388019550612701565b60008b81526020902060005b858110156126f95781548a8201529084019088016126e0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061274590830184612622565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127875783518352928401929184019160010161276b565b50909695505050505050565b6020815260006117456020830184612622565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156127ee576127ee6128d3565b500190565b600082612802576128026128e9565b500490565b6000816000190483118215151615612821576128216128d3565b500290565b600082821015612838576128386128d3565b500390565b60005b83811015612858578181015183820152602001612840565b838111156115ca5750506000910152565b600181811c9082168061287d57607f821691505b6020821081141561289e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128b8576128b86128d3565b5060010190565b6000826128ce576128ce6128e9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461106157600080fdfea2646970667358221220d531c8e1ceab7d5879f2bd9260d4306304bf58183fc32cdca9940fe32349d08564736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000c6c69717569646d6574616c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c4d5400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e67577a72356d7748594c424d777234396a457736614a613954677269355835414148676834364448616b682f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d58637362544c46636e57524b726b3235556e3845654b58373550674c5555436734684a7341677a4e6b4164792f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): liquidmetals
Arg [1] : _symbol (string): LMT
Arg [2] : _initBaseURI (string): ipfs://QmNgWzr5mwHYLBMwr49jEw6aJa9Tgri5X5AAHgh46DHakh/
Arg [3] : _initNotRevealedUri (string): ipfs://QmXcsbTLFcnWRKrk25Un8EeKX75PgLUUCg4hJsAgzNkAdy/hidden.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 6c69717569646d6574616c730000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4c4d540000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d4e67577a72356d7748594c424d777234396a457736614a
Arg [10] : 613954677269355835414148676834364448616b682f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [12] : 697066733a2f2f516d58637362544c46636e57524b726b3235556e3845654b58
Arg [13] : 373550674c5555436734684a7341677a4e6b4164792f68696464656e2e6a736f
Arg [14] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

1723:4778:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6113:372:3;;;;;;;;;;-1:-1:-1;6113:372:3;;;;;:::i;:::-;;:::i;:::-;;;8217:14:12;;8210:22;8192:41;;8180:2;8165:18;6113:372:3;;;;;;;;5572:73:11;;;;;;;;;;-1:-1:-1;5572:73:11;;;;;:::i;:::-;;:::i;:::-;;8723:100:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10226:204::-;;;;;;;;;;-1:-1:-1;10226:204:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6878:32:12;;;6860:51;;6848:2;6833:18;10226:204:3;6714:203:12;1862:28:11;;;;;;;;;;;;;:::i;9789:371:3:-;;;;;;;;;;-1:-1:-1;9789:371:3;;;;;:::i;:::-;;:::i;1895:32:11:-;;;;;;;;;;;;;;;;;;;13015:25:12;;;13003:2;12988:18;1895:32:11;12869:177:12;3350:280:3;;;;;;;;;;-1:-1:-1;3595:12:3;;3403:7;3579:13;:28;3350:280;;2232:55:11;;;;;;;;;;-1:-1:-1;2232:55:11;;;;;:::i;:::-;;;;;;;;;;;;;;5651:81;;;;;;;;;;-1:-1:-1;5651:81:11;;;;;:::i;:::-;;:::i;1968:32::-;;;;;;;;;;;;;;;;11083:170:3;;;;;;;;;;-1:-1:-1;11083:170:3;;;;;:::i;:::-;;:::i;4936:1105::-;;;;;;;;;;-1:-1:-1;4936:1105:3;;;;;:::i;:::-;;:::i;3732:101:11:-;;;;;;;;;;-1:-1:-1;3732:101:11;;;;;:::i;:::-;-1:-1:-1;;;;;3811:16:11;3791:4;3811:16;;;:9;:16;;;;;;;;;3732:101;5738:95;;;;;;;;;;-1:-1:-1;5738:95:11;;;;;:::i;:::-;;:::i;6221:277::-;;;:::i;11324:185:3:-;;;;;;;;;;-1:-1:-1;11324:185:3;;;;;:::i;:::-;;:::i;3966:348:11:-;;;;;;;;;;-1:-1:-1;3966:348:11;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5004:80::-;;;;;;;;;;-1:-1:-1;5004:80:11;;;;;:::i;:::-;;:::i;3923:713:3:-;;;;;;;;;;-1:-1:-1;3923:713:3;;;;;:::i;:::-;;:::i;2080:28:11:-;;;;;;;;;;-1:-1:-1;2080:28:11;;;;;;;;;;;5340:98;;;;;;;;;;-1:-1:-1;5340:98:11;;;;;:::i;:::-;;:::i;2152:29::-;;;;;;;;;;-1:-1:-1;2152:29:11;;;;;;;;;;;2050:25;;;;;;;;;;-1:-1:-1;2050:25:11;;;;;;;;8532:124:3;;;;;;;;;;-1:-1:-1;8532:124:3;;;;;:::i;:::-;;:::i;6549:206::-;;;;;;;;;;-1:-1:-1;6549:206:3;;;;;:::i;:::-;;:::i;1661:101:9:-;;;;;;;;;;;;;:::i;3839:121:11:-;;;;;;;;;;-1:-1:-1;3839:121:11;;;;;:::i;:::-;;:::i;5090:116::-;;;;;;;;;;-1:-1:-1;5090:116:11;;;;;:::i;:::-;;:::i;6024:190::-;;;;;;;;;;-1:-1:-1;6024:190:11;;;;;:::i;:::-;;:::i;1029:85:9:-;;;;;;;;;;-1:-1:-1;1101:6:9;;-1:-1:-1;;;;;1101:6:9;1029:85;;8892:104:3;;;;;;;;;;;;;:::i;2186:41:11:-;;;;;;;;;;-1:-1:-1;2186:41:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;2113:34;;;;;;;;;;-1:-1:-1;2113:34:11;;;;;;;;;;;2686:1040;;;;;;:::i;:::-;;:::i;10502:279:3:-;;;;;;;;;;-1:-1:-1;10502:279:3;;;;;:::i;:::-;;:::i;4823:63:11:-;;;;;;;;;;;;;:::i;11580:342:3:-;;;;;;;;;;-1:-1:-1;11580:342:3;;;;;:::i;:::-;;:::i;2005:38:11:-;;;;;;;;;;;;;;;;1820:37;;;;;;;;;;;;;:::i;4320:497::-;;;;;;;;;;-1:-1:-1;4320:497:11;;;;;:::i;:::-;;:::i;4892:104::-;;;;;;;;;;-1:-1:-1;4892:104:11;;;;;:::i;:::-;;:::i;1932:31::-;;;;;;;;;;;;;;;;5444:122;;;;;;;;;;-1:-1:-1;5444:122:11;;;;;:::i;:::-;;:::i;10852:164:3:-;;;;;;;;;;-1:-1:-1;10852:164:3;;;;;:::i;:::-;-1:-1:-1;;;;;10973:25:3;;;10949:4;10973:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;10852:164;5839:179:11;;;;;;;;;;-1:-1:-1;5839:179:11;;;;;:::i;:::-;;:::i;5214:120::-;;;;;;;;;;-1:-1:-1;5214:120:11;;;;;:::i;:::-;;:::i;1911:198:9:-;;;;;;;;;;-1:-1:-1;1911:198:9;;;;;:::i;:::-;;:::i;6113:372:3:-;6215:4;-1:-1:-1;;;;;;6252:40:3;;-1:-1:-1;;;6252:40:3;;:105;;-1:-1:-1;;;;;;;6309:48:3;;-1:-1:-1;;;6309:48:3;6252:105;:172;;;-1:-1:-1;;;;;;;6374:50:3;;-1:-1:-1;;;6374:50:3;6252:172;:225;;;-1:-1:-1;;;;;;;;;;937:40:2;;;6441:36:3;6232:245;6113:372;-1:-1:-1;;6113:372:3:o;5572:73:11:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;;;;;;;;;5624:6:11::1;:15:::0;;-1:-1:-1;;5624:15:11::1;::::0;::::1;;::::0;;;::::1;::::0;;5572:73::o;8723:100:3:-;8777:13;8810:5;8803:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8723:100;:::o;10226:204::-;10294:7;10319:16;10327:7;10319;:16::i;:::-;10314:64;;10344:34;;-1:-1:-1;;;10344:34:3;;;;;;;;;;;10314:64;-1:-1:-1;10398:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;10398:24:3;;10226:204::o;1862:28:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9789:371:3:-;9862:13;9878:24;9894:7;9878:15;:24::i;:::-;9862:40;;9923:5;-1:-1:-1;;;;;9917:11:3;:2;-1:-1:-1;;;;;9917:11:3;;9913:48;;;9937:24;;-1:-1:-1;;;9937:24:3;;;;;;;;;;;9913:48;719:10:1;-1:-1:-1;;;;;9978:21:3;;;;;;:63;;-1:-1:-1;10004:37:3;10021:5;719:10:1;10852:164:3;:::i;10004:37::-;10003:38;9978:63;9974:138;;;10065:35;;-1:-1:-1;;;10065:35:3;;;;;;;;;;;9974:138;10124:28;10133:2;10137:7;10146:5;10124:8;:28::i;:::-;9851:309;9789:371;;:::o;5651:81:11:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;5707:10:11::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;5707:19:11;;::::1;::::0;;;::::1;::::0;;5651:81::o;11083:170:3:-;11217:28;11227:4;11233:2;11237:7;11217:9;:28::i;4936:1105::-;5025:7;5058:16;5068:5;5058:9;:16::i;:::-;5049:5;:25;5045:61;;5083:23;;-1:-1:-1;;;5083:23:3;;;;;;;;;;;5045:61;5117:22;5142:13;;;5117:22;;5392:557;5412:14;5408:1;:18;5392:557;;;5452:31;5486:14;;;:11;:14;;;;;;;;;5452:48;;;;;;;;;-1:-1:-1;;;;;5452:48:3;;;;-1:-1:-1;;;5452:48:3;;-1:-1:-1;;;;;5452:48:3;;;;;;;;-1:-1:-1;;;5452:48:3;;;;;;;;;;;;;;;;5519:73;;5564:8;;;5519:73;5614:14;;-1:-1:-1;;;;;5614:28:3;;5610:111;;5687:14;;;-1:-1:-1;5610:111:3;5764:5;-1:-1:-1;;;;;5743:26:3;:17;-1:-1:-1;;;;;5743:26:3;;5739:195;;;5813:5;5798:11;:20;5794:85;;;-1:-1:-1;5854:1:3;-1:-1:-1;5847:8:3;;-1:-1:-1;;;5847:8:3;5794:85;5901:13;;;;;5739:195;5433:516;5392:557;5428:3;;5392:557;;;;6025:8;;;5738:95:11;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;5803:15:11::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;5803:24:11;;::::1;::::0;;;::::1;::::0;;5738:95::o;6221:277::-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;6291:21:11::1;6273:15;6356:3;6340:12;6291:21:::0;6350:2:::1;6340:12;:::i;:::-;6339:20;;;;:::i;:::-;6366:71;::::0;6319:40;;-1:-1:-1;6374:42:11::1;::::0;6366:71;::::1;;;::::0;6319:40;;6366:71:::1;::::0;;;6319:40;6374:42;6366:71;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;1101:6:9;;6444:48:11::1;::::0;-1:-1:-1;;;;;1101:6:9;;;;6470:21:11::1;6444:48:::0;::::1;;;::::0;::::1;::::0;;;6470:21;1101:6:9;6444:48:11;::::1;;;;;;;;;;;;;::::0;::::1;;;;11324:185:3::0;11462:39;11479:4;11485:2;11489:7;11462:39;;;;;;;;;;;;:16;:39::i;3966:348:11:-;4041:16;4069:23;4095:17;4105:6;4095:9;:17::i;:::-;4069:43;;4119:25;4161:15;-1:-1:-1;;;;;4147:30:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4147:30:11;;4119:58;;4189:9;4184:103;4204:15;4200:1;:19;4184:103;;;4249:30;4269:6;4277:1;4249:19;:30::i;:::-;4235:8;4244:1;4235:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;4221:3;;;;:::i;:::-;;;;4184:103;;;-1:-1:-1;4300:8:11;3966:348;-1:-1:-1;;;3966:348:11:o;5004:80::-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;5063:4:11::1;:15:::0;5004:80::o;3923:713:3:-;3990:7;4035:13;;3990:7;;4249:328;4269:14;4265:1;:18;4249:328;;;4309:31;4343:14;;;:11;:14;;;;;;;;;4309:48;;;;;;;;;-1:-1:-1;;;;;4309:48:3;;;;-1:-1:-1;;;4309:48:3;;-1:-1:-1;;;;;4309:48:3;;;;;;;;-1:-1:-1;;;4309:48:3;;;;;;;;;;;;;;4376:186;;4441:5;4426:11;:20;4422:85;;;-1:-1:-1;4482:1:3;3923:713;-1:-1:-1;;;;3923:713:3:o;4422:85::-;4529:13;;;;;4376:186;-1:-1:-1;4285:3:3;;4249:328;;;;4605:23;;-1:-1:-1;;;4605:23:3;;;;;;;;;;;5340:98:11;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;5411:21:11;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;5340:98:::0;:::o;8532:124:3:-;8596:7;8623:20;8635:7;8623:11;:20::i;:::-;:25;;8532:124;-1:-1:-1;;8532:124:3:o;6549:206::-;6613:7;-1:-1:-1;;;;;6637:19:3;;6633:60;;6665:28;;-1:-1:-1;;;6665:28:3;;;;;;;;;;;6633:60;-1:-1:-1;;;;;;6719:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;6719:27:3;;6549:206::o;1661:101:9:-;1101:6;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;3839:121:11:-;3898:10;;;;;;;3897:11;3889:44;;;;-1:-1:-1;;;3889:44:11;;11814:2:12;3889:44:11;;;11796:21:12;11853:2;11833:18;;;11826:30;-1:-1:-1;;;11872:18:12;;;11865:51;11933:18;;3889:44:11;11612:345:12;3889:44:11;3940:14;3946:7;3940:5;:14::i;:::-;3839:121;:::o;5090:116::-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;5167:13:11::1;:33:::0;5090:116::o;6024:190::-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;6119:9:11::1;6114:95;6134:20:::0;;::::1;6114:95;;;6196:5;6170:9;:23;6180:9;;6190:1;6180:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;6170:23:11::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;6170:23:11;:31;;-1:-1:-1;;6170:31:11::1;::::0;::::1;;::::0;;;::::1;::::0;;6156:3;::::1;::::0;::::1;:::i;:::-;;;;6114:95;;8892:104:3::0;8948:13;8981:7;8974:14;;;;;:::i;2686:1040:11:-;2743:14;2760:13;3595:12:3;;3403:7;3579:13;:28;;3350:280;2760:13:11;2743:30;;2802:1;2788:11;:15;2780:67;;;;-1:-1:-1;;;2780:67:11;;12164:2:12;2780:67:11;;;12146:21:12;12203:2;12183:18;;;12176:30;12242:34;12222:18;;;12215:62;-1:-1:-1;;;12293:18:12;;;12286:37;12340:19;;2780:67:11;11962:403:12;2780:67:11;2886:9;;2862:20;2871:11;2862:6;:20;:::i;:::-;:33;;2854:136;;;;-1:-1:-1;;;2854:136:11;;12572:2:12;2854:136:11;;;12554:21:12;12611:2;12591:18;;;12584:30;12650:34;12630:18;;;12623:62;12721:34;12701:18;;;12694:62;12793:28;12772:19;;;12765:57;12839:19;;2854:136:11;12370:494:12;2854:136:11;1101:6:9;;-1:-1:-1;;;;;1101:6:9;3003:10:11;:21;2999:625;;3046:6;;;;3045:7;3037:49;;;;-1:-1:-1;;;3037:49:11;;11456:2:12;3037:49:11;;;11438:21:12;11495:2;11475:18;;;11468:30;11534:31;11514:18;;;11507:59;11583:18;;3037:49:11;11254:353:12;3037:49:11;3120:13;;3105:11;:28;;3097:117;;;;-1:-1:-1;;;3097:117:11;;10971:2:12;3097:117:11;;;10953:21:12;11010:2;10990:18;;;10983:30;11049:34;11029:18;;;11022:62;11120:34;11100:18;;;11093:62;-1:-1:-1;;;11171:19:12;;;11164:43;11224:19;;3097:117:11;10769:480:12;3097:117:11;3228:15;;;;;;;:23;;3247:4;3228:23;3225:312;;;3290:10;3791:4;3811:16;;;:9;:16;;;;;;;;3268:68;;;;-1:-1:-1;;;3268:68:11;;9077:2:12;3268:68:11;;;9059:21:12;9116:2;9096:18;;;9089:30;9155:32;9135:18;;;9128:60;9205:18;;3268:68:11;8875:354:12;3268:68:11;3399:10;3351:24;3378:32;;;:20;:32;;;;;;3467:18;;3433:30;3452:11;3378:32;3433:30;:::i;:::-;:52;;3425:100;;;;-1:-1:-1;;;3425:100:11;;9790:2:12;3425:100:11;;;9772:21:12;9829:2;9809:18;;;9802:30;9868:34;9848:18;;;9841:62;-1:-1:-1;;;9919:18:12;;;9912:33;9962:19;;3425:100:11;9588:399:12;3425:100:11;3253:284;3225:312;3575:11;3568:4;;:18;;;;:::i;:::-;3555:9;:31;;3547:69;;;;-1:-1:-1;;;3547:69:11;;9436:2:12;3547:69:11;;;9418:21:12;9475:2;9455:18;;;9448:30;9514:27;9494:18;;;9487:55;9559:18;;3547:69:11;9234:349:12;3547:69:11;3632:34;3642:10;3654:11;3632:9;:34::i;:::-;3694:10;3673:32;;;;:20;:32;;;;;:47;;3709:11;;3673:32;:47;;3709:11;;3673:47;:::i;:::-;;;;-1:-1:-1;;;;2686:1040:11:o;10502:279:3:-;-1:-1:-1;;;;;10593:24:3;;719:10:1;10593:24:3;10589:54;;;10626:17;;-1:-1:-1;;;10626:17:3;;;;;;;;;;;10589:54;719:10:1;10656:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;10656:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;10656:53:3;;;;;;;;;;10725:48;;8192:41:12;;;10656:42:3;;719:10:1;10725:48:3;;8165:18:12;10725:48:3;;;;;;;10502:279;;:::o;4823:63:11:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;4865:8:11::1;:15:::0;;-1:-1:-1;;4865:15:11::1;;;::::0;;4823:63::o;11580:342:3:-;11747:28;11757:4;11763:2;11767:7;11747:9;:28::i;:::-;11791:48;11814:4;11820:2;11824:7;11833:5;11791:22;:48::i;:::-;11786:129;;11863:40;;-1:-1:-1;;;11863:40:3;;;;;;;;;;;11786:129;11580:342;;;;:::o;1820:37:11:-;;;;;;;:::i;4320:497::-;4418:13;4459:16;4467:7;4459;:16::i;:::-;4443:97;;;;-1:-1:-1;;;4443:97:11;;10555:2:12;4443:97:11;;;10537:21:12;10594:2;10574:18;;;10567:30;10633:34;10613:18;;;10606:62;-1:-1:-1;;;10684:18:12;;;10677:45;10739:19;;4443:97:11;10353:411:12;4443:97:11;4556:8;;;;;;;4553:62;;4593:14;4586:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4320:497;;;:::o;4553:62::-;4623:28;4654:10;:8;:10::i;:::-;4623:41;;4709:1;4684:14;4678:28;:32;:133;;;;;;;;;;;;;;;;;4746:14;4762:18;:7;:16;:18::i;:::-;4782:13;4729:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4678:133;4671:140;4320:497;-1:-1:-1;;;4320:497:11:o;4892:104::-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;4963:18:11::1;:27:::0;4892:104::o;5444:122::-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;5527:33:11;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;5839:179::-:0;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;5924:9:11::1;5919:94;5939:20:::0;;::::1;5919:94;;;6001:4;5975:9;:23;5985:9;;5995:1;5985:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5975:23:11::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;5975:23:11;:30;;-1:-1:-1;;5975:30:11::1;::::0;::::1;;::::0;;;::::1;::::0;;5961:3;::::1;::::0;::::1;:::i;:::-;;;;5919:94;;5214:120:::0;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;5296:32:11;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;1911:198:9:-:0;1101:6;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:9;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:9;;8670:2:12;1991:73:9::1;::::0;::::1;8652:21:12::0;8709:2;8689:18;;;8682:30;8748:34;8728:18;;;8721:62;-1:-1:-1;;;8799:18:12;;;8792:36;8845:19;;1991:73:9::1;8468:402:12::0;1991:73:9::1;2074:28;2093:8;2074:18;:28::i;12177:144:3:-:0;12234:4;12268:13;;12258:7;:23;:55;;;;-1:-1:-1;;12286:20:3;;;;:11;:20;;;;;:27;-1:-1:-1;;;12286:27:3;;;;12285:28;;12177:144::o;19393:196::-;19508:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19508:29:3;-1:-1:-1;;;;;19508:29:3;;;;;;;;;19553:28;;19508:24;;19553:28;;;;;;;19393:196;;;:::o;14894:2112::-;15009:35;15047:20;15059:7;15047:11;:20::i;:::-;15122:18;;15009:58;;-1:-1:-1;15080:22:3;;-1:-1:-1;;;;;15106:34:3;719:10:1;-1:-1:-1;;;;;15106:34:3;;:101;;;-1:-1:-1;15174:18:3;;15157:50;;719:10:1;10852:164:3;:::i;15157:50::-;15106:154;;;-1:-1:-1;719:10:1;15224:20:3;15236:7;15224:11;:20::i;:::-;-1:-1:-1;;;;;15224:36:3;;15106:154;15080:181;;15279:17;15274:66;;15305:35;;-1:-1:-1;;;15305:35:3;;;;;;;;;;;15274:66;15377:4;-1:-1:-1;;;;;15355:26:3;:13;:18;;;-1:-1:-1;;;;;15355:26:3;;15351:67;;15390:28;;-1:-1:-1;;;15390:28:3;;;;;;;;;;;15351:67;-1:-1:-1;;;;;15433:16:3;;15429:52;;15458:23;;-1:-1:-1;;;15458:23:3;;;;;;;;;;;15429:52;15602:49;15619:1;15623:7;15632:13;:18;;;15602:8;:49::i;:::-;-1:-1:-1;;;;;15947:18:3;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;15947:31:3;;;-1:-1:-1;;;;;15947:31:3;;;-1:-1:-1;;15947:31:3;;;;;;;15993:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;15993:29:3;;;;;;;;;;;16039:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;16084:61:3;;;;-1:-1:-1;;;16129:15:3;16084:61;;;;;;;;;;;16419:11;;;16449:24;;;;;:29;16419:11;;16449:29;16445:445;;16674:13;;16660:11;:27;16656:219;;;16744:18;;;16712:24;;;:11;:24;;;;;;;;:50;;16827:28;;;;-1:-1:-1;;;;;16785:70:3;-1:-1:-1;;;16785:70:3;-1:-1:-1;;;;;;16785:70:3;;;-1:-1:-1;;;;;16712:50:3;;;16785:70;;;;;;;16656:219;15922:979;16937:7;16933:2;-1:-1:-1;;;;;16918:27:3;16927:4;-1:-1:-1;;;;;16918:27:3;;;;;;;;;;;16956:42;14998:2008;;14894:2112;;;:::o;7387:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;7553:13:3;;7497:7;;7546:20;;7542:861;;;7587:31;7621:17;;;:11;:17;;;;;;;;;7587:51;;;;;;;;;-1:-1:-1;;;;;7587:51:3;;;;-1:-1:-1;;;7587:51:3;;-1:-1:-1;;;;;7587:51:3;;;;;;;;-1:-1:-1;;;7587:51:3;;;;;;;;;;;;;;7657:731;;7707:14;;-1:-1:-1;;;;;7707:28:3;;7703:101;;7771:9;7387:1083;-1:-1:-1;;;7387:1083:3:o;7703:101::-;-1:-1:-1;;;8148:6:3;8193:17;;;;:11;:17;;;;;;;;;8181:29;;;;;;;;;-1:-1:-1;;;;;8181:29:3;;;;;-1:-1:-1;;;8181:29:3;;-1:-1:-1;;;;;8181:29:3;;;;;;;;-1:-1:-1;;;8181:29:3;;;;;;;;;;;;;8241:28;8237:109;;8309:9;7387:1083;-1:-1:-1;;;7387:1083:3:o;8237:109::-;8108:261;;;7568:835;7542:861;8431:31;;-1:-1:-1;;;8431:31:3;;;;;;;;;;;2263:187:9;2355:6;;;-1:-1:-1;;;;;2371:17:9;;;-1:-1:-1;;;;;;2371:17:9;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;17235:2040:3:-;17295:35;17333:20;17345:7;17333:11;:20::i;:::-;17295:58;-1:-1:-1;17496:49:3;17513:1;17517:7;17526:13;:18;;;17496:8;:49::i;:::-;17854:18;;-1:-1:-1;;;;;17841:32:3;;;;;;;:12;:32;;;;;;;;:45;;-1:-1:-1;;17841:45:3;;-1:-1:-1;;;;;17841:45:3;;;-1:-1:-1;;17841:45:3;;;;;;;17914:18;;17901:32;;;;;;;:50;;-1:-1:-1;;;;17901:50:3;;-1:-1:-1;;;17901:50:3;;;;;;-1:-1:-1;17901:50:3;;;;;;;;;;;;18078:18;;18050:20;;;:11;:20;;;;;;:46;;-1:-1:-1;;;18050:46:3;;;-1:-1:-1;;;;;;18111:61:3;;;;-1:-1:-1;;;18156:15:3;18111:61;;;;;;;;;;;-1:-1:-1;;;;18187:34:3;;;;;;;18491:11;;;18521:24;;;;;:29;18491:11;;18521:29;18517:445;;18746:13;;18732:11;:27;18728:219;;;18816:18;;;18784:24;;;:11;:24;;;;;;;;:50;;18899:28;;;;-1:-1:-1;;;;;18857:70:3;-1:-1:-1;;;18857:70:3;-1:-1:-1;;;;;;18857:70:3;;;-1:-1:-1;;;;;18784:50:3;;;18857:70;;;;;;;18728:219;-1:-1:-1;18999:18:3;;18990:49;;19031:7;;19027:1;;-1:-1:-1;;;;;18990:49:3;;;;;;19027:1;;18990:49;-1:-1:-1;;19242:12:3;:14;;;;;;17235:2040::o;12329:104::-;12398:27;12408:2;12412:8;12398:27;;;;;;;;;;;;:9;:27::i;20154:790::-;20309:4;-1:-1:-1;;;;;20330:13:3;;1465:19:0;:23;20326:611:3;;20366:72;;-1:-1:-1;;;20366:72:3;;-1:-1:-1;;;;;20366:36:3;;;;;:72;;719:10:1;;20417:4:3;;20423:7;;20432:5;;20366:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20366:72:3;;;;;;;;-1:-1:-1;;20366:72:3;;;;;;;;;;;;:::i;:::-;;;20362:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20612:13:3;;20608:259;;20662:40;;-1:-1:-1;;;20662:40:3;;;;;;;;;;;20608:259;20817:6;20811:13;20802:6;20798:2;20794:15;20787:38;20362:520;-1:-1:-1;;;;;;20489:55:3;-1:-1:-1;;;20489:55:3;;-1:-1:-1;20482:62:3;;20326:611;-1:-1:-1;20921:4:3;20326:611;20154:790;;;;;;:::o;2565:102:11:-;2625:13;2654:7;2647:14;;;;;:::i;328:703:10:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:10;;;;;;;;;;;;-1:-1:-1;;;627:10:10;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:10;;-1:-1:-1;773:2:10;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;-1:-1:-1;;;;;817:17:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:10;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:10;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:10;;;;;;;;-1:-1:-1;972:11:10;981:2;972:11;;:::i;:::-;;;844:150;;12796:163:3;12919:32;12925:2;12929:8;12939:5;12946:4;13357:20;13380:13;-1:-1:-1;;;;;13408:16:3;;13404:48;;13433:19;;-1:-1:-1;;;13433:19:3;;;;;;;;;;;13404:48;13467:13;13463:44;;13489:18;;-1:-1:-1;;;13489:18:3;;;;;;;;;;;13463:44;-1:-1:-1;;;;;13859:16:3;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;13918:49:3;;-1:-1:-1;;;;;13859:44:3;;;;;;;13918:49;;;;-1:-1:-1;;13859:44:3;;;;;;13918:49;;;;;;;;;;;;;;;;13984:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;14034:66:3;;;;-1:-1:-1;;;14084:15:3;14034:66;;;;;;;;;;;13984:25;;14169:328;14189:8;14185:1;:12;14169:328;;;14228:38;;14253:12;;-1:-1:-1;;;;;14228:38:3;;;14245:1;;14228:38;;14245:1;;14228:38;14289:4;:68;;;;;14298:59;14329:1;14333:2;14337:12;14351:5;14298:22;:59::i;:::-;14297:60;14289:68;14285:164;;;14389:40;;-1:-1:-1;;;14389:40:3;;;;;;;;;;;14285:164;14467:14;;;;;14199:3;14169:328;;;-1:-1:-1;14513:37:3;;:13;:37;14572:60;11580:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:12;78:5;-1:-1:-1;;;;;149:2:12;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:12;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:12;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;-1:-1:-1;;;;;2201:6:12;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:12;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:12:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;-1:-1:-1;;;;;3244:2:12;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:12;;-1:-1:-1;;;;2971:615:12:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;-1:-1:-1;;;;;4483:6:12;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:12;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:12;;4735:180;-1:-1:-1;4735:180:12:o;4920:257::-;4961:3;4999:5;4993:12;5026:6;5021:3;5014:19;5042:63;5098:6;5091:4;5086:3;5082:14;5075:4;5068:5;5064:16;5042:63;:::i;:::-;5159:2;5138:15;-1:-1:-1;;5134:29:12;5125:39;;;;5166:4;5121:50;;4920:257;-1:-1:-1;;4920:257:12:o;5182:1527::-;5406:3;5444:6;5438:13;5470:4;5483:51;5527:6;5522:3;5517:2;5509:6;5505:15;5483:51;:::i;:::-;5597:13;;5556:16;;;;5619:55;5597:13;5556:16;5641:15;;;5619:55;:::i;:::-;5763:13;;5696:20;;;5736:1;;5823;5845:18;;;;5898;;;;5925:93;;6003:4;5993:8;5989:19;5977:31;;5925:93;6066:2;6056:8;6053:16;6033:18;6030:40;6027:167;;;-1:-1:-1;;;6093:33:12;;6149:4;6146:1;6139:15;6179:4;6100:3;6167:17;6027:167;6210:18;6237:110;;;;6361:1;6356:328;;;;6203:481;;6237:110;-1:-1:-1;;6272:24:12;;6258:39;;6317:20;;;;-1:-1:-1;6237:110:12;;6356:328;13124:1;13117:14;;;13161:4;13148:18;;6451:1;6465:169;6479:8;6476:1;6473:15;6465:169;;;6561:14;;6546:13;;;6539:37;6604:16;;;;6496:10;;6465:169;;;6469:3;;6665:8;6658:5;6654:20;6647:27;;6203:481;-1:-1:-1;6700:3:12;;5182:1527;-1:-1:-1;;;;;;;;;;;5182:1527:12:o;6922:488::-;-1:-1:-1;;;;;7191:15:12;;;7173:34;;7243:15;;7238:2;7223:18;;7216:43;7290:2;7275:18;;7268:34;;;7338:3;7333:2;7318:18;;7311:31;;;7116:4;;7359:45;;7384:19;;7376:6;7359:45;:::i;:::-;7351:53;6922:488;-1:-1:-1;;;;;;6922:488:12:o;7415:632::-;7586:2;7638:21;;;7708:13;;7611:18;;;7730:22;;;7557:4;;7586:2;7809:15;;;;7783:2;7768:18;;;7557:4;7852:169;7866:6;7863:1;7860:13;7852:169;;;7927:13;;7915:26;;7996:15;;;;7961:12;;;;7888:1;7881:9;7852:169;;;-1:-1:-1;8038:3:12;;7415:632;-1:-1:-1;;;;;;7415:632:12:o;8244:219::-;8393:2;8382:9;8375:21;8356:4;8413:44;8453:2;8442:9;8438:18;8430:6;8413:44;:::i;9992:356::-;10194:2;10176:21;;;10213:18;;;10206:30;10272:34;10267:2;10252:18;;10245:62;10339:2;10324:18;;9992:356::o;13177:128::-;13217:3;13248:1;13244:6;13241:1;13238:13;13235:39;;;13254:18;;:::i;:::-;-1:-1:-1;13290:9:12;;13177:128::o;13310:120::-;13350:1;13376;13366:35;;13381:18;;:::i;:::-;-1:-1:-1;13415:9:12;;13310:120::o;13435:168::-;13475:7;13541:1;13537;13533:6;13529:14;13526:1;13523:21;13518:1;13511:9;13504:17;13500:45;13497:71;;;13548:18;;:::i;:::-;-1:-1:-1;13588:9:12;;13435:168::o;13608:125::-;13648:4;13676:1;13673;13670:8;13667:34;;;13681:18;;:::i;:::-;-1:-1:-1;13718:9:12;;13608:125::o;13738:258::-;13810:1;13820:113;13834:6;13831:1;13828:13;13820:113;;;13910:11;;;13904:18;13891:11;;;13884:39;13856:2;13849:10;13820:113;;;13951:6;13948:1;13945:13;13942:48;;;-1:-1:-1;;13986:1:12;13968:16;;13961:27;13738:258::o;14001:380::-;14080:1;14076:12;;;;14123;;;14144:61;;14198:4;14190:6;14186:17;14176:27;;14144:61;14251:2;14243:6;14240:14;14220:18;14217:38;14214:161;;;14297:10;14292:3;14288:20;14285:1;14278:31;14332:4;14329:1;14322:15;14360:4;14357:1;14350:15;14214:161;;14001:380;;;:::o;14386:135::-;14425:3;-1:-1:-1;;14446:17:12;;14443:43;;;14466:18;;:::i;:::-;-1:-1:-1;14513:1:12;14502:13;;14386:135::o;14526:112::-;14558:1;14584;14574:35;;14589:18;;:::i;:::-;-1:-1:-1;14623:9:12;;14526:112::o;14643:127::-;14704:10;14699:3;14695:20;14692:1;14685:31;14735:4;14732:1;14725:15;14759:4;14756:1;14749:15;14775:127;14836:10;14831:3;14827:20;14824:1;14817:31;14867:4;14864:1;14857:15;14891:4;14888:1;14881:15;14907:127;14968:10;14963:3;14959:20;14956:1;14949:31;14999:4;14996:1;14989:15;15023:4;15020:1;15013:15;15039:127;15100:10;15095:3;15091:20;15088:1;15081:31;15131:4;15128:1;15121:15;15155:4;15152:1;15145:15;15171:131;-1:-1:-1;;;;;;15245:32:12;;15235:43;;15225:71;;15292:1;15289;15282:12

Swarm Source

ipfs://d531c8e1ceab7d5879f2bd9260d4306304bf58183fc32cdca9940fe32349d085
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.