ETH Price: $3,272.29 (-4.05%)
Gas: 16 Gwei

Token

Dodoor NFT (DDNFT)
 

Overview

Max Total Supply

1,000 DDNFT

Holders

400

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
saintbayview.eth
Balance
0 DDNFT
0xb3ee5011a7965905cde351ea4905ff4725189a3b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

UDverse is a shelter for all the species where they are free from getting poached; DODOOR is the first collection of 1000 NFTs from the UDverse ,each DODOOR has the same dream-FLYING; Let’s make the dream come true together!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DodoorNFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity Multiple files format)

File 3 of 13: Dodoor.sol
// SPDX-License-Identifier: GPL-3.0


pragma solidity >=0.7.0 <0.9.0;

import "./ERC721Enumerable.sol";
import "./Ownable.sol";

contract DodoorNFT is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI = "ipfs://QmRdYqfcdn1dqDHRZS5h9f2NDrWoNKNfvjv9fp7Q7MVFcP/";
  string public baseExtension = ".json";
  uint256 public cost = 0.05 ether;
  uint256 public maxSupply = 1000;
  uint256 public maxMintAmount = 5;
  bool public isMintActive = false;
  mapping(address => bool) public whitelisted;

  mapping(address => uint) public minted;

constructor() ERC721("Dodoor NFT", "DDNFT") {}

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

  // public
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(isMintActive, "DD: Minting needs to be enabled.");
    require(whitelisted[msg.sender], "DD: The address is not a whitelist.");
    require(_mintAmount > 0);
    require(supply + _mintAmount <= maxSupply, "DD: Mint/order exceeds supply");
    require(_mintAmount + minted[msg.sender] <= maxMintAmount, "DD: mintAmount must be less than or equal maxMintAmount");
    require(msg.value >= _mintAmount*cost, "DD: Ether sent is not correct");

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

  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"
    );

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

  //only owner
  function airdrop(uint[] calldata amount, address[] calldata recipient) public onlyOwner {
    require(amount.length == recipient.length, "DD: Must provide equal amounts and recipients");

    uint totalAmount;
    uint supply = totalSupply();
    for(uint i; i < amount.length; i++) {
      totalAmount += amount[i];
    }
    require(supply + totalAmount < maxSupply, "DD: Mint/order exceeds supply");

    for(uint i = 0; i < recipient.length; i++) {
      for(uint j = 1; j <= amount[i]; j++) {
        _safeMint(recipient[i], ++supply);
      }
    }
  }

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

  function setMaxSupply(uint256 _newSupply) public onlyOwner {
    maxSupply = _newSupply;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

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

  function setMintingActive(bool _state) public onlyOwner {
    require(isMintActive != _state, "DD: New value matches old");
    isMintActive = _state;
  }
 
  function whitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = true;
  }

  function setWhitelist(address[] calldata userList) public onlyOwner {
    require(userList.length > 0, "DD: userList must be greater than 0");
    for(uint i; i < userList.length; i++) {
      whitelisted[userList[i]] = true;
    }
  }
 
  function removeWhitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = false;
  }

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

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 13: 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 4 of 13: 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 5 of 13: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 7 of 13: 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 8 of 13: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

File 9 of 13: 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 10 of 13: 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 11 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 12 of 13: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256[]","name":"amount","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":[],"name":"isMintActive","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":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_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":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setMintingActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"userList","type":"address[]"}],"name":"setWhitelist","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":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60e0604052603660808181529062002e4d60a039600b90620000229082620001fc565b50604080518082019091526005815264173539b7b760d91b6020820152600c906200004e9082620001fc565b5066b1a2bc2ec50000600d556103e8600e556005600f556010805460ff191690553480156200007c57600080fd5b506040518060400160405280600a815260200169111bd91bdbdc8813919560b21b81525060405180604001604052806005815260200164111113919560da1b8152508160009081620000cf9190620001fc565b506001620000de8282620001fc565b505050620000fb620000f56200010160201b60201c565b62000105565b620002c8565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200018257607f821691505b602082108103620001a357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001f757600081815260208120601f850160051c81016020861015620001d25750805b601f850160051c820191505b81811015620001f357828155600101620001de565b5050505b505050565b81516001600160401b0381111562000218576200021862000157565b62000230816200022984546200016d565b84620001a9565b602080601f8311600181146200026857600084156200024f5750858301515b600019600386901b1c1916600185901b178555620001f3565b600085815260208120601f198616915b82811015620002995788860151825594840194600190910190840162000278565b5085821015620002b85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612b7580620002d86000396000f3fe6080604052600436106102bb5760003560e01c80636673c4c21161016e578063b88d4fde116100cb578063d936547e1161007f578063e985e9c511610064578063e985e9c514610747578063f2fde38b14610790578063f4217648146107b057600080fd5b8063d936547e146106f7578063da3ef23f1461072757600080fd5b8063c87b56dd116100b0578063c87b56dd146106a1578063d04ef285146106c1578063d5abeb01146106e157600080fd5b8063b88d4fde1461066c578063c66828621461068c57600080fd5b80637f00c7a61161012257806395d89b411161010757806395d89b4114610624578063a0712d6814610639578063a22cb4651461064c57600080fd5b80637f00c7a6146105e65780638da5cb5b1461060657600080fd5b80636f8b44b0116101535780636f8b44b01461059157806370a08231146105b1578063715018a6146105d157600080fd5b80636673c4c21461055c5780636c0360eb1461057c57600080fd5b806330cc7ae01161021c5780634a4c560d116101d057806355f804b3116101b557806355f804b3146105025780635b92ac0d146105225780636352211e1461053c57600080fd5b80634a4c560d146104c25780634f6ccce7146104e257600080fd5b806342842e0e1161020157806342842e0e14610455578063438b63001461047557806344a0d68a146104a257600080fd5b806330cc7ae01461042d5780633ccfd60b1461044d57600080fd5b806318160ddd11610273578063239c70ae11610258578063239c70ae146103d757806323b872dd146103ed5780632f745c591461040d57600080fd5b806318160ddd146103955780631e7269c5146103aa57600080fd5b8063081812fc116102a4578063081812fc14610317578063095ea7b31461034f57806313faede61461037157600080fd5b806301ffc9a7146102c057806306fdde03146102f5575b600080fd5b3480156102cc57600080fd5b506102e06102db3660046123db565b6107d0565b60405190151581526020015b60405180910390f35b34801561030157600080fd5b5061030a610814565b6040516102ec9190612448565b34801561032357600080fd5b5061033761033236600461245b565b6108a6565b6040516001600160a01b0390911681526020016102ec565b34801561035b57600080fd5b5061036f61036a366004612490565b6108cd565b005b34801561037d57600080fd5b50610387600d5481565b6040519081526020016102ec565b3480156103a157600080fd5b50600854610387565b3480156103b657600080fd5b506103876103c53660046124ba565b60126020526000908152604090205481565b3480156103e357600080fd5b50610387600f5481565b3480156103f957600080fd5b5061036f6104083660046124d5565b610a03565b34801561041957600080fd5b50610387610428366004612490565b610a7b565b34801561043957600080fd5b5061036f6104483660046124ba565b610b23565b61036f610b4c565b34801561046157600080fd5b5061036f6104703660046124d5565b610bc8565b34801561048157600080fd5b506104956104903660046124ba565b610be3565b6040516102ec9190612511565b3480156104ae57600080fd5b5061036f6104bd36600461245b565b610c85565b3480156104ce57600080fd5b5061036f6104dd3660046124ba565b610c92565b3480156104ee57600080fd5b506103876104fd36600461245b565b610cbe565b34801561050e57600080fd5b5061036f61051d3660046125e1565b610d62565b34801561052e57600080fd5b506010546102e09060ff1681565b34801561054857600080fd5b5061033761055736600461245b565b610d7a565b34801561056857600080fd5b5061036f610577366004612676565b610ddf565b34801561058857600080fd5b5061030a610f9e565b34801561059d57600080fd5b5061036f6105ac36600461245b565b61102c565b3480156105bd57600080fd5b506103876105cc3660046124ba565b611039565b3480156105dd57600080fd5b5061036f6110d3565b3480156105f257600080fd5b5061036f61060136600461245b565b6110e7565b34801561061257600080fd5b50600a546001600160a01b0316610337565b34801561063057600080fd5b5061030a6110f4565b61036f61064736600461245b565b611103565b34801561065857600080fd5b5061036f6106673660046126f2565b611391565b34801561067857600080fd5b5061036f610687366004612725565b61139c565b34801561069857600080fd5b5061030a61141b565b3480156106ad57600080fd5b5061030a6106bc36600461245b565b611428565b3480156106cd57600080fd5b5061036f6106dc3660046127a1565b611514565b3480156106ed57600080fd5b50610387600e5481565b34801561070357600080fd5b506102e06107123660046124ba565b60116020526000908152604090205460ff1681565b34801561073357600080fd5b5061036f6107423660046125e1565b611589565b34801561075357600080fd5b506102e06107623660046127bc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561079c57600080fd5b5061036f6107ab3660046124ba565b61159d565b3480156107bc57600080fd5b5061036f6107cb3660046127e6565b61162a565b60006001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000148061080e575061080e82611717565b92915050565b60606000805461082390612828565b80601f016020809104026020016040519081016040528092919081815260200182805461084f90612828565b801561089c5780601f106108715761010080835404028352916020019161089c565b820191906000526020600020905b81548152906001019060200180831161087f57829003601f168201915b5050505050905090565b60006108b1826117b2565b506000908152600460205260409020546001600160a01b031690565b60006108d882610d7a565b9050806001600160a01b0316836001600160a01b0316036109665760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b038216148061098257506109828133610762565b6109f45760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161095d565b6109fe8383611816565b505050565b610a0d3382611891565b610a705760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b606482015260840161095d565b6109fe838383611910565b6000610a8683611039565b8210610afa5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161095d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b2b611af5565b6001600160a01b03166000908152601160205260409020805460ff19169055565b610b54611af5565b6000610b68600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bb2576040519150601f19603f3d011682016040523d82523d6000602084013e610bb7565b606091505b5050905080610bc557600080fd5b50565b6109fe8383836040518060200160405280600081525061139c565b60606000610bf083611039565b905060008167ffffffffffffffff811115610c0d57610c0d612555565b604051908082528060200260200182016040528015610c36578160200160208202803683370190505b50905060005b82811015610c7d57610c4e8582610a7b565b828281518110610c6057610c60612862565b602090810291909101015280610c758161288e565b915050610c3c565b509392505050565b610c8d611af5565b600d55565b610c9a611af5565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b6000610cc960085490565b8210610d3d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161095d565b60088281548110610d5057610d50612862565b90600052602060002001549050919050565b610d6a611af5565b600b610d7682826128f5565b5050565b6000818152600260205260408120546001600160a01b03168061080e5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604482015260640161095d565b610de7611af5565b828114610e5c5760405162461bcd60e51b815260206004820152602d60248201527f44443a204d7573742070726f7669646520657175616c20616d6f756e7473206160448201527f6e6420726563697069656e747300000000000000000000000000000000000000606482015260840161095d565b600080610e6860085490565b905060005b85811015610ead57868682818110610e8757610e87612862565b9050602002013583610e9991906129b5565b925080610ea58161288e565b915050610e6d565b50600e54610ebb83836129b5565b10610f085760405162461bcd60e51b815260206004820152601d60248201527f44443a204d696e742f6f72646572206578636565647320737570706c79000000604482015260640161095d565b60005b83811015610f955760015b878783818110610f2857610f28612862565b905060200201358111610f8257610f70868684818110610f4a57610f4a612862565b9050602002016020810190610f5f91906124ba565b610f688561288e565b945084611b4f565b80610f7a8161288e565b915050610f16565b5080610f8d8161288e565b915050610f0b565b50505050505050565b600b8054610fab90612828565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd790612828565b80156110245780601f10610ff957610100808354040283529160200191611024565b820191906000526020600020905b81548152906001019060200180831161100757829003601f168201915b505050505081565b611034611af5565b600e55565b60006001600160a01b0382166110b75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e65720000000000000000000000000000000000000000000000606482015260840161095d565b506001600160a01b031660009081526003602052604090205490565b6110db611af5565b6110e56000611b69565b565b6110ef611af5565b600f55565b60606001805461082390612828565b600061110e60085490565b60105490915060ff166111635760405162461bcd60e51b815260206004820181905260248201527f44443a204d696e74696e67206e6565647320746f20626520656e61626c65642e604482015260640161095d565b3360009081526011602052604090205460ff166111e85760405162461bcd60e51b815260206004820152602360248201527f44443a205468652061646472657373206973206e6f7420612077686974656c6960448201527f73742e0000000000000000000000000000000000000000000000000000000000606482015260840161095d565b600082116111f557600080fd5b600e5461120283836129b5565b11156112505760405162461bcd60e51b815260206004820152601d60248201527f44443a204d696e742f6f72646572206578636565647320737570706c79000000604482015260640161095d565b600f543360009081526012602052604090205461126d90846129b5565b11156112e15760405162461bcd60e51b815260206004820152603760248201527f44443a206d696e74416d6f756e74206d757374206265206c657373207468616e60448201527f206f7220657175616c206d61784d696e74416d6f756e74000000000000000000606482015260840161095d565b600d546112ee90836129c8565b34101561133d5760405162461bcd60e51b815260206004820152601d60248201527f44443a2045746865722073656e74206973206e6f7420636f7272656374000000604482015260640161095d565b336000908152601260205260408120805484929061135c9084906129b5565b90915550600190505b8281116109fe5761137f3361137a83856129b5565b611b4f565b806113898161288e565b915050611365565b610d76338383611bc8565b6113a63383611891565b6114095760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b606482015260840161095d565b61141584848484611c96565b50505050565b600c8054610fab90612828565b6000818152600260205260409020546060906001600160a01b03166114b55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161095d565b60006114bf611d14565b905060008151116114df576040518060200160405280600081525061150d565b806114e984611d23565b600c6040516020016114fd939291906129df565b6040516020818303038152906040525b9392505050565b61151c611af5565b60105481151560ff9091161515036115765760405162461bcd60e51b815260206004820152601960248201527f44443a204e65772076616c7565206d617463686573206f6c6400000000000000604482015260640161095d565b6010805460ff1916911515919091179055565b611591611af5565b600c610d7682826128f5565b6115a5611af5565b6001600160a01b0381166116215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161095d565b610bc581611b69565b611632611af5565b806116a55760405162461bcd60e51b815260206004820152602360248201527f44443a20757365724c697374206d75737420626520677265617465722074686160448201527f6e20300000000000000000000000000000000000000000000000000000000000606482015260840161095d565b60005b818110156109fe576001601160008585858181106116c8576116c8612862565b90506020020160208101906116dd91906124ba565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061170f8161288e565b9150506116a8565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061177a57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061080e57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461080e565b6000818152600260205260409020546001600160a01b0316610bc55760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604482015260640161095d565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061185882610d7a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061189d83610d7a565b9050806001600160a01b0316846001600160a01b031614806118e457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806119085750836001600160a01b03166118fd846108a6565b6001600160a01b0316145b949350505050565b826001600160a01b031661192382610d7a565b6001600160a01b03161461199f5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e6572000000000000000000000000000000000000000000000000000000606482015260840161095d565b6001600160a01b038216611a1a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161095d565b611a25838383611e58565b611a30600082611816565b6001600160a01b0383166000908152600360205260408120805460019290611a59908490612a7f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a879084906129b5565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b031633146110e55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095d565b610d76828260405180602001604052806000815250611f10565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611c295760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161095d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ca1848484611910565b611cad84848484611f8e565b6114155760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161095d565b6060600b805461082390612828565b606081600003611d6657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611d905780611d7a8161288e565b9150611d899050600a83612aa8565b9150611d6a565b60008167ffffffffffffffff811115611dab57611dab612555565b6040519080825280601f01601f191660200182016040528015611dd5576020820181803683370190505b5090505b841561190857611dea600183612a7f565b9150611df7600a86612abc565b611e029060306129b5565b60f81b818381518110611e1757611e17612862565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e51600a86612aa8565b9450611dd9565b6001600160a01b038316611eb357611eae81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ed6565b816001600160a01b0316836001600160a01b031614611ed657611ed683826120da565b6001600160a01b038216611eed576109fe81612177565b826001600160a01b0316826001600160a01b0316146109fe576109fe8282612226565b611f1a838361226a565b611f276000848484611f8e565b6109fe5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161095d565b60006001600160a01b0384163b156120cf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fd2903390899088908890600401612ad0565b6020604051808303816000875af192505050801561200d575060408051601f3d908101601f1916820190925261200a91810190612b0c565b60015b6120b5573d80801561203b576040519150601f19603f3d011682016040523d82523d6000602084013e612040565b606091505b5080516000036120ad5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161095d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611908565b506001949350505050565b600060016120e784611039565b6120f19190612a7f565b600083815260076020526040902054909150808214612144576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061218990600190612a7f565b600083815260096020526040812054600880549394509092849081106121b1576121b1612862565b9060005260206000200154905080600883815481106121d2576121d2612862565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061220a5761220a612b29565b6001900381819060005260206000200160009055905550505050565b600061223183611039565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122c05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161095d565b6000818152600260205260409020546001600160a01b0316156123255760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161095d565b61233160008383611e58565b6001600160a01b038216600090815260036020526040812080546001929061235a9084906129b5565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610bc557600080fd5b6000602082840312156123ed57600080fd5b813561150d816123c5565b60005b838110156124135781810151838201526020016123fb565b50506000910152565b600081518084526124348160208601602086016123f8565b601f01601f19169290920160200192915050565b60208152600061150d602083018461241c565b60006020828403121561246d57600080fd5b5035919050565b80356001600160a01b038116811461248b57600080fd5b919050565b600080604083850312156124a357600080fd5b6124ac83612474565b946020939093013593505050565b6000602082840312156124cc57600080fd5b61150d82612474565b6000806000606084860312156124ea57600080fd5b6124f384612474565b925061250160208501612474565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156125495783518352928401929184019160010161252d565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561258657612586612555565b604051601f8501601f19908116603f011681019082821181831017156125ae576125ae612555565b816040528093508581528686860111156125c757600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125f357600080fd5b813567ffffffffffffffff81111561260a57600080fd5b8201601f8101841361261b57600080fd5b6119088482356020840161256b565b60008083601f84011261263c57600080fd5b50813567ffffffffffffffff81111561265457600080fd5b6020830191508360208260051b850101111561266f57600080fd5b9250929050565b6000806000806040858703121561268c57600080fd5b843567ffffffffffffffff808211156126a457600080fd5b6126b08883890161262a565b909650945060208701359150808211156126c957600080fd5b506126d68782880161262a565b95989497509550505050565b8035801515811461248b57600080fd5b6000806040838503121561270557600080fd5b61270e83612474565b915061271c602084016126e2565b90509250929050565b6000806000806080858703121561273b57600080fd5b61274485612474565b935061275260208601612474565b925060408501359150606085013567ffffffffffffffff81111561277557600080fd5b8501601f8101871361278657600080fd5b6127958782356020840161256b565b91505092959194509250565b6000602082840312156127b357600080fd5b61150d826126e2565b600080604083850312156127cf57600080fd5b6127d883612474565b915061271c60208401612474565b600080602083850312156127f957600080fd5b823567ffffffffffffffff81111561281057600080fd5b61281c8582860161262a565b90969095509350505050565b600181811c9082168061283c57607f821691505b60208210810361285c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016128a0576128a0612878565b5060010190565b601f8211156109fe57600081815260208120601f850160051c810160208610156128ce5750805b601f850160051c820191505b818110156128ed578281556001016128da565b505050505050565b815167ffffffffffffffff81111561290f5761290f612555565b6129238161291d8454612828565b846128a7565b602080601f83116001811461295857600084156129405750858301515b600019600386901b1c1916600185901b1785556128ed565b600085815260208120601f198616915b8281101561298757888601518255948401946001909101908401612968565b50858210156129a55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561080e5761080e612878565b808202811582820484141761080e5761080e612878565b6000845160206129f28285838a016123f8565b855191840191612a058184848a016123f8565b8554920191600090612a1681612828565b60018281168015612a2e5760018114612a4357612a6f565b60ff1984168752821515830287019450612a6f565b896000528560002060005b84811015612a6757815489820152908301908701612a4e565b505082870194505b50929a9950505050505050505050565b8181038181111561080e5761080e612878565b634e487b7160e01b600052601260045260246000fd5b600082612ab757612ab7612a92565b500490565b600082612acb57612acb612a92565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612b02608083018461241c565b9695505050505050565b600060208284031215612b1e57600080fd5b815161150d816123c5565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220c264ddc22000d84f73a11b007f04a57a866e9626590ed0aac4920a0ba6a65b3a64736f6c63430008110033697066733a2f2f516d526459716663646e3164714448525a5335683966324e4472576f4e4b4e66766a763966703751374d564663502f

Deployed Bytecode

0x6080604052600436106102bb5760003560e01c80636673c4c21161016e578063b88d4fde116100cb578063d936547e1161007f578063e985e9c511610064578063e985e9c514610747578063f2fde38b14610790578063f4217648146107b057600080fd5b8063d936547e146106f7578063da3ef23f1461072757600080fd5b8063c87b56dd116100b0578063c87b56dd146106a1578063d04ef285146106c1578063d5abeb01146106e157600080fd5b8063b88d4fde1461066c578063c66828621461068c57600080fd5b80637f00c7a61161012257806395d89b411161010757806395d89b4114610624578063a0712d6814610639578063a22cb4651461064c57600080fd5b80637f00c7a6146105e65780638da5cb5b1461060657600080fd5b80636f8b44b0116101535780636f8b44b01461059157806370a08231146105b1578063715018a6146105d157600080fd5b80636673c4c21461055c5780636c0360eb1461057c57600080fd5b806330cc7ae01161021c5780634a4c560d116101d057806355f804b3116101b557806355f804b3146105025780635b92ac0d146105225780636352211e1461053c57600080fd5b80634a4c560d146104c25780634f6ccce7146104e257600080fd5b806342842e0e1161020157806342842e0e14610455578063438b63001461047557806344a0d68a146104a257600080fd5b806330cc7ae01461042d5780633ccfd60b1461044d57600080fd5b806318160ddd11610273578063239c70ae11610258578063239c70ae146103d757806323b872dd146103ed5780632f745c591461040d57600080fd5b806318160ddd146103955780631e7269c5146103aa57600080fd5b8063081812fc116102a4578063081812fc14610317578063095ea7b31461034f57806313faede61461037157600080fd5b806301ffc9a7146102c057806306fdde03146102f5575b600080fd5b3480156102cc57600080fd5b506102e06102db3660046123db565b6107d0565b60405190151581526020015b60405180910390f35b34801561030157600080fd5b5061030a610814565b6040516102ec9190612448565b34801561032357600080fd5b5061033761033236600461245b565b6108a6565b6040516001600160a01b0390911681526020016102ec565b34801561035b57600080fd5b5061036f61036a366004612490565b6108cd565b005b34801561037d57600080fd5b50610387600d5481565b6040519081526020016102ec565b3480156103a157600080fd5b50600854610387565b3480156103b657600080fd5b506103876103c53660046124ba565b60126020526000908152604090205481565b3480156103e357600080fd5b50610387600f5481565b3480156103f957600080fd5b5061036f6104083660046124d5565b610a03565b34801561041957600080fd5b50610387610428366004612490565b610a7b565b34801561043957600080fd5b5061036f6104483660046124ba565b610b23565b61036f610b4c565b34801561046157600080fd5b5061036f6104703660046124d5565b610bc8565b34801561048157600080fd5b506104956104903660046124ba565b610be3565b6040516102ec9190612511565b3480156104ae57600080fd5b5061036f6104bd36600461245b565b610c85565b3480156104ce57600080fd5b5061036f6104dd3660046124ba565b610c92565b3480156104ee57600080fd5b506103876104fd36600461245b565b610cbe565b34801561050e57600080fd5b5061036f61051d3660046125e1565b610d62565b34801561052e57600080fd5b506010546102e09060ff1681565b34801561054857600080fd5b5061033761055736600461245b565b610d7a565b34801561056857600080fd5b5061036f610577366004612676565b610ddf565b34801561058857600080fd5b5061030a610f9e565b34801561059d57600080fd5b5061036f6105ac36600461245b565b61102c565b3480156105bd57600080fd5b506103876105cc3660046124ba565b611039565b3480156105dd57600080fd5b5061036f6110d3565b3480156105f257600080fd5b5061036f61060136600461245b565b6110e7565b34801561061257600080fd5b50600a546001600160a01b0316610337565b34801561063057600080fd5b5061030a6110f4565b61036f61064736600461245b565b611103565b34801561065857600080fd5b5061036f6106673660046126f2565b611391565b34801561067857600080fd5b5061036f610687366004612725565b61139c565b34801561069857600080fd5b5061030a61141b565b3480156106ad57600080fd5b5061030a6106bc36600461245b565b611428565b3480156106cd57600080fd5b5061036f6106dc3660046127a1565b611514565b3480156106ed57600080fd5b50610387600e5481565b34801561070357600080fd5b506102e06107123660046124ba565b60116020526000908152604090205460ff1681565b34801561073357600080fd5b5061036f6107423660046125e1565b611589565b34801561075357600080fd5b506102e06107623660046127bc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561079c57600080fd5b5061036f6107ab3660046124ba565b61159d565b3480156107bc57600080fd5b5061036f6107cb3660046127e6565b61162a565b60006001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000148061080e575061080e82611717565b92915050565b60606000805461082390612828565b80601f016020809104026020016040519081016040528092919081815260200182805461084f90612828565b801561089c5780601f106108715761010080835404028352916020019161089c565b820191906000526020600020905b81548152906001019060200180831161087f57829003601f168201915b5050505050905090565b60006108b1826117b2565b506000908152600460205260409020546001600160a01b031690565b60006108d882610d7a565b9050806001600160a01b0316836001600160a01b0316036109665760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b038216148061098257506109828133610762565b6109f45760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161095d565b6109fe8383611816565b505050565b610a0d3382611891565b610a705760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b606482015260840161095d565b6109fe838383611910565b6000610a8683611039565b8210610afa5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161095d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b2b611af5565b6001600160a01b03166000908152601160205260409020805460ff19169055565b610b54611af5565b6000610b68600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bb2576040519150601f19603f3d011682016040523d82523d6000602084013e610bb7565b606091505b5050905080610bc557600080fd5b50565b6109fe8383836040518060200160405280600081525061139c565b60606000610bf083611039565b905060008167ffffffffffffffff811115610c0d57610c0d612555565b604051908082528060200260200182016040528015610c36578160200160208202803683370190505b50905060005b82811015610c7d57610c4e8582610a7b565b828281518110610c6057610c60612862565b602090810291909101015280610c758161288e565b915050610c3c565b509392505050565b610c8d611af5565b600d55565b610c9a611af5565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b6000610cc960085490565b8210610d3d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161095d565b60088281548110610d5057610d50612862565b90600052602060002001549050919050565b610d6a611af5565b600b610d7682826128f5565b5050565b6000818152600260205260408120546001600160a01b03168061080e5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604482015260640161095d565b610de7611af5565b828114610e5c5760405162461bcd60e51b815260206004820152602d60248201527f44443a204d7573742070726f7669646520657175616c20616d6f756e7473206160448201527f6e6420726563697069656e747300000000000000000000000000000000000000606482015260840161095d565b600080610e6860085490565b905060005b85811015610ead57868682818110610e8757610e87612862565b9050602002013583610e9991906129b5565b925080610ea58161288e565b915050610e6d565b50600e54610ebb83836129b5565b10610f085760405162461bcd60e51b815260206004820152601d60248201527f44443a204d696e742f6f72646572206578636565647320737570706c79000000604482015260640161095d565b60005b83811015610f955760015b878783818110610f2857610f28612862565b905060200201358111610f8257610f70868684818110610f4a57610f4a612862565b9050602002016020810190610f5f91906124ba565b610f688561288e565b945084611b4f565b80610f7a8161288e565b915050610f16565b5080610f8d8161288e565b915050610f0b565b50505050505050565b600b8054610fab90612828565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd790612828565b80156110245780601f10610ff957610100808354040283529160200191611024565b820191906000526020600020905b81548152906001019060200180831161100757829003601f168201915b505050505081565b611034611af5565b600e55565b60006001600160a01b0382166110b75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e65720000000000000000000000000000000000000000000000606482015260840161095d565b506001600160a01b031660009081526003602052604090205490565b6110db611af5565b6110e56000611b69565b565b6110ef611af5565b600f55565b60606001805461082390612828565b600061110e60085490565b60105490915060ff166111635760405162461bcd60e51b815260206004820181905260248201527f44443a204d696e74696e67206e6565647320746f20626520656e61626c65642e604482015260640161095d565b3360009081526011602052604090205460ff166111e85760405162461bcd60e51b815260206004820152602360248201527f44443a205468652061646472657373206973206e6f7420612077686974656c6960448201527f73742e0000000000000000000000000000000000000000000000000000000000606482015260840161095d565b600082116111f557600080fd5b600e5461120283836129b5565b11156112505760405162461bcd60e51b815260206004820152601d60248201527f44443a204d696e742f6f72646572206578636565647320737570706c79000000604482015260640161095d565b600f543360009081526012602052604090205461126d90846129b5565b11156112e15760405162461bcd60e51b815260206004820152603760248201527f44443a206d696e74416d6f756e74206d757374206265206c657373207468616e60448201527f206f7220657175616c206d61784d696e74416d6f756e74000000000000000000606482015260840161095d565b600d546112ee90836129c8565b34101561133d5760405162461bcd60e51b815260206004820152601d60248201527f44443a2045746865722073656e74206973206e6f7420636f7272656374000000604482015260640161095d565b336000908152601260205260408120805484929061135c9084906129b5565b90915550600190505b8281116109fe5761137f3361137a83856129b5565b611b4f565b806113898161288e565b915050611365565b610d76338383611bc8565b6113a63383611891565b6114095760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b606482015260840161095d565b61141584848484611c96565b50505050565b600c8054610fab90612828565b6000818152600260205260409020546060906001600160a01b03166114b55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161095d565b60006114bf611d14565b905060008151116114df576040518060200160405280600081525061150d565b806114e984611d23565b600c6040516020016114fd939291906129df565b6040516020818303038152906040525b9392505050565b61151c611af5565b60105481151560ff9091161515036115765760405162461bcd60e51b815260206004820152601960248201527f44443a204e65772076616c7565206d617463686573206f6c6400000000000000604482015260640161095d565b6010805460ff1916911515919091179055565b611591611af5565b600c610d7682826128f5565b6115a5611af5565b6001600160a01b0381166116215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161095d565b610bc581611b69565b611632611af5565b806116a55760405162461bcd60e51b815260206004820152602360248201527f44443a20757365724c697374206d75737420626520677265617465722074686160448201527f6e20300000000000000000000000000000000000000000000000000000000000606482015260840161095d565b60005b818110156109fe576001601160008585858181106116c8576116c8612862565b90506020020160208101906116dd91906124ba565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061170f8161288e565b9150506116a8565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061177a57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061080e57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461080e565b6000818152600260205260409020546001600160a01b0316610bc55760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604482015260640161095d565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061185882610d7a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061189d83610d7a565b9050806001600160a01b0316846001600160a01b031614806118e457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806119085750836001600160a01b03166118fd846108a6565b6001600160a01b0316145b949350505050565b826001600160a01b031661192382610d7a565b6001600160a01b03161461199f5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e6572000000000000000000000000000000000000000000000000000000606482015260840161095d565b6001600160a01b038216611a1a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161095d565b611a25838383611e58565b611a30600082611816565b6001600160a01b0383166000908152600360205260408120805460019290611a59908490612a7f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a879084906129b5565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b031633146110e55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095d565b610d76828260405180602001604052806000815250611f10565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611c295760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161095d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ca1848484611910565b611cad84848484611f8e565b6114155760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161095d565b6060600b805461082390612828565b606081600003611d6657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611d905780611d7a8161288e565b9150611d899050600a83612aa8565b9150611d6a565b60008167ffffffffffffffff811115611dab57611dab612555565b6040519080825280601f01601f191660200182016040528015611dd5576020820181803683370190505b5090505b841561190857611dea600183612a7f565b9150611df7600a86612abc565b611e029060306129b5565b60f81b818381518110611e1757611e17612862565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e51600a86612aa8565b9450611dd9565b6001600160a01b038316611eb357611eae81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ed6565b816001600160a01b0316836001600160a01b031614611ed657611ed683826120da565b6001600160a01b038216611eed576109fe81612177565b826001600160a01b0316826001600160a01b0316146109fe576109fe8282612226565b611f1a838361226a565b611f276000848484611f8e565b6109fe5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161095d565b60006001600160a01b0384163b156120cf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fd2903390899088908890600401612ad0565b6020604051808303816000875af192505050801561200d575060408051601f3d908101601f1916820190925261200a91810190612b0c565b60015b6120b5573d80801561203b576040519150601f19603f3d011682016040523d82523d6000602084013e612040565b606091505b5080516000036120ad5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161095d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611908565b506001949350505050565b600060016120e784611039565b6120f19190612a7f565b600083815260076020526040902054909150808214612144576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061218990600190612a7f565b600083815260096020526040812054600880549394509092849081106121b1576121b1612862565b9060005260206000200154905080600883815481106121d2576121d2612862565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061220a5761220a612b29565b6001900381819060005260206000200160009055905550505050565b600061223183611039565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122c05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161095d565b6000818152600260205260409020546001600160a01b0316156123255760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161095d565b61233160008383611e58565b6001600160a01b038216600090815260036020526040812080546001929061235a9084906129b5565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610bc557600080fd5b6000602082840312156123ed57600080fd5b813561150d816123c5565b60005b838110156124135781810151838201526020016123fb565b50506000910152565b600081518084526124348160208601602086016123f8565b601f01601f19169290920160200192915050565b60208152600061150d602083018461241c565b60006020828403121561246d57600080fd5b5035919050565b80356001600160a01b038116811461248b57600080fd5b919050565b600080604083850312156124a357600080fd5b6124ac83612474565b946020939093013593505050565b6000602082840312156124cc57600080fd5b61150d82612474565b6000806000606084860312156124ea57600080fd5b6124f384612474565b925061250160208501612474565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156125495783518352928401929184019160010161252d565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561258657612586612555565b604051601f8501601f19908116603f011681019082821181831017156125ae576125ae612555565b816040528093508581528686860111156125c757600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125f357600080fd5b813567ffffffffffffffff81111561260a57600080fd5b8201601f8101841361261b57600080fd5b6119088482356020840161256b565b60008083601f84011261263c57600080fd5b50813567ffffffffffffffff81111561265457600080fd5b6020830191508360208260051b850101111561266f57600080fd5b9250929050565b6000806000806040858703121561268c57600080fd5b843567ffffffffffffffff808211156126a457600080fd5b6126b08883890161262a565b909650945060208701359150808211156126c957600080fd5b506126d68782880161262a565b95989497509550505050565b8035801515811461248b57600080fd5b6000806040838503121561270557600080fd5b61270e83612474565b915061271c602084016126e2565b90509250929050565b6000806000806080858703121561273b57600080fd5b61274485612474565b935061275260208601612474565b925060408501359150606085013567ffffffffffffffff81111561277557600080fd5b8501601f8101871361278657600080fd5b6127958782356020840161256b565b91505092959194509250565b6000602082840312156127b357600080fd5b61150d826126e2565b600080604083850312156127cf57600080fd5b6127d883612474565b915061271c60208401612474565b600080602083850312156127f957600080fd5b823567ffffffffffffffff81111561281057600080fd5b61281c8582860161262a565b90969095509350505050565b600181811c9082168061283c57607f821691505b60208210810361285c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016128a0576128a0612878565b5060010190565b601f8211156109fe57600081815260208120601f850160051c810160208610156128ce5750805b601f850160051c820191505b818110156128ed578281556001016128da565b505050505050565b815167ffffffffffffffff81111561290f5761290f612555565b6129238161291d8454612828565b846128a7565b602080601f83116001811461295857600084156129405750858301515b600019600386901b1c1916600185901b1785556128ed565b600085815260208120601f198616915b8281101561298757888601518255948401946001909101908401612968565b50858210156129a55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561080e5761080e612878565b808202811582820484141761080e5761080e612878565b6000845160206129f28285838a016123f8565b855191840191612a058184848a016123f8565b8554920191600090612a1681612828565b60018281168015612a2e5760018114612a4357612a6f565b60ff1984168752821515830287019450612a6f565b896000528560002060005b84811015612a6757815489820152908301908701612a4e565b505082870194505b50929a9950505050505050505050565b8181038181111561080e5761080e612878565b634e487b7160e01b600052601260045260246000fd5b600082612ab757612ab7612a92565b500490565b600082612acb57612acb612a92565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612b02608083018461241c565b9695505050505050565b600060208284031215612b1e57600080fd5b815161150d816123c5565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220c264ddc22000d84f73a11b007f04a57a866e9626590ed0aac4920a0ba6a65b3a64736f6c63430008110033

Deployed Bytecode Sourcemap

137:4019:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1018:224:5;;;;;;;;;;-1:-1:-1;1018:224:5;;;;;:::i;:::-;;:::i;:::-;;;611:14:13;;604:22;586:41;;574:2;559:18;1018:224:5;;;;;;;;2483:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3996:171::-;;;;;;;;;;-1:-1:-1;3996:171:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1743:55:13;;;1725:74;;1713:2;1698:18;3996:171:4;1579:226:13;3513:417:4;;;;;;;;;;-1:-1:-1;3513:417:4;;;;;:::i;:::-;;:::i;:::-;;349:32:2;;;;;;;;;;;;;;;;;;;2416:25:13;;;2404:2;2389:18;349:32:2;2270:177:13;1658:113:5;;;;;;;;;;-1:-1:-1;1746:10:5;:17;1658:113;;546:38:2;;;;;;;;;;-1:-1:-1;546:38:2;;;;;:::i;:::-;;;;;;;;;;;;;;422:32;;;;;;;;;;;;;;;;4696:336:4;;;;;;;;;;-1:-1:-1;4696:336:4;;;;;:::i;:::-;;:::i;1326:256:5:-;;;;;;;;;;-1:-1:-1;1326:256:5;;;;;:::i;:::-;;:::i;3902:100:2:-;;;;;;;;;;-1:-1:-1;3902:100:2;;;;;:::i;:::-;;:::i;4008:145::-;;;:::i;5103:185:4:-;;;;;;;;;;-1:-1:-1;5103:185:4;;;;;:::i;:::-;;:::i;1474:348:2:-;;;;;;;;;;-1:-1:-1;1474:348:2;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2852:80::-;;;;;;;;;;-1:-1:-1;2852:80:2;;;;;:::i;:::-;;:::i;3556:93::-;;;;;;;;;;-1:-1:-1;3556:93:2;;;;;:::i;:::-;;:::i;1848:233:5:-;;;;;;;;;;-1:-1:-1;1848:233:5;;;;;:::i;:::-;;:::i;3160:98:2:-;;;;;;;;;;-1:-1:-1;3160:98:2;;;;;:::i;:::-;;:::i;459:32::-;;;;;;;;;;-1:-1:-1;459:32:2;;;;;;;;2194:222:4;;;;;;;;;;-1:-1:-1;2194:222:4;;;;;:::i;:::-;;:::i;2273:573:2:-;;;;;;;;;;-1:-1:-1;2273:573:2;;;;;:::i;:::-;;:::i;222:80::-;;;;;;;;;;;;;:::i;2938:94::-;;;;;;;;;;-1:-1:-1;2938:94:2;;;;;:::i;:::-;;:::i;1925:207:4:-;;;;;;;;;;-1:-1:-1;1925:207:4;;;;;:::i;:::-;;:::i;1884:103:11:-;;;;;;;;;;;;;:::i;3038:116:2:-;;;;;;;;;;-1:-1:-1;3038:116:2;;;;;:::i;:::-;;:::i;1236:87:11:-;;;;;;;;;;-1:-1:-1;1309:6:11;;-1:-1:-1;;;;;1309:6:11;1236:87;;2652:104:4;;;;;;;;;;;;;:::i;777:691:2:-;;;;;;:::i;:::-;;:::i;4239:155:4:-;;;;;;;;;;-1:-1:-1;4239:155:4;;;;;:::i;:::-;;:::i;5359:323::-;;;;;;;;;;-1:-1:-1;5359:323:4;;;;;:::i;:::-;;:::i;307:37:2:-;;;;;;;;;;;;;:::i;1828:423::-;;;;;;;;;;-1:-1:-1;1828:423:2;;;;;:::i;:::-;;:::i;3392:157::-;;;;;;;;;;-1:-1:-1;3392:157:2;;;;;:::i;:::-;;:::i;386:31::-;;;;;;;;;;;;;;;;496:43;;;;;;;;;;-1:-1:-1;496:43:2;;;;;:::i;:::-;;;;;;;;;;;;;;;;3264:122;;;;;;;;;;-1:-1:-1;3264:122:2;;;;;:::i;:::-;;:::i;4465:164:4:-;;;;;;;;;;-1:-1:-1;4465:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;4586:25:4;;;4562:4;4586:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4465:164;2142:201:11;;;;;;;;;;-1:-1:-1;2142:201:11;;;;;:::i;:::-;;:::i;3655:240:2:-;;;;;;;;;;-1:-1:-1;3655:240:2;;;;;:::i;:::-;;:::i;1018:224:5:-;1120:4;-1:-1:-1;;;;;;1144:50:5;;1159:35;1144:50;;:90;;;1198:36;1222:11;1198:23;:36::i;:::-;1137:97;1018:224;-1:-1:-1;;1018:224:5:o;2483:100:4:-;2537:13;2570:5;2563:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2483:100;:::o;3996:171::-;4072:7;4092:23;4107:7;4092:14;:23::i;:::-;-1:-1:-1;4135:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4135:24:4;;3996:171::o;3513:417::-;3594:13;3610:23;3625:7;3610:14;:23::i;:::-;3594:39;;3658:5;-1:-1:-1;;;;;3652:11:4;:2;-1:-1:-1;;;;;3652:11:4;;3644:57;;;;-1:-1:-1;;;3644:57:4;;8677:2:13;3644:57:4;;;8659:21:13;8716:2;8696:18;;;8689:30;8755:34;8735:18;;;8728:62;8826:3;8806:18;;;8799:31;8847:19;;3644:57:4;;;;;;;;;736:10:1;-1:-1:-1;;;;;3736:21:4;;;;:62;;-1:-1:-1;3761:37:4;3778:5;736:10:1;4465:164:4;:::i;3761:37::-;3714:174;;;;-1:-1:-1;;;3714:174:4;;9079:2:13;3714:174:4;;;9061:21:13;9118:2;9098:18;;;9091:30;9157:34;9137:18;;;9130:62;9228:32;9208:18;;;9201:60;9278:19;;3714:174:4;8877:426:13;3714:174:4;3901:21;3910:2;3914:7;3901:8;:21::i;:::-;3583:347;3513:417;;:::o;4696:336::-;4891:41;736:10:1;4924:7:4;4891:18;:41::i;:::-;4883:100;;;;-1:-1:-1;;;4883:100:4;;9510:2:13;4883:100:4;;;9492:21:13;9549:2;9529:18;;;9522:30;9588:34;9568:18;;;9561:62;-1:-1:-1;;;9639:18:13;;;9632:44;9693:19;;4883:100:4;9308:410:13;4883:100:4;4996:28;5006:4;5012:2;5016:7;4996:9;:28::i;1326:256:5:-;1423:7;1459:23;1476:5;1459:16;:23::i;:::-;1451:5;:31;1443:87;;;;-1:-1:-1;;;1443:87:5;;9925:2:13;1443:87:5;;;9907:21:13;9964:2;9944:18;;;9937:30;10003:34;9983:18;;;9976:62;10074:13;10054:18;;;10047:41;10105:19;;1443:87:5;9723:407:13;1443:87:5;-1:-1:-1;;;;;;1548:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1326:256::o;3902:100:2:-;1122:13:11;:11;:13::i;:::-;-1:-1:-1;;;;;3970:18:2::1;3991:5;3970:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;3970:26:2::1;::::0;;3902:100::o;4008:145::-;1122:13:11;:11;:13::i;:::-;4061:7:2::1;4082;1309:6:11::0;;-1:-1:-1;;;;;1309:6:11;;1236:87;4082:7:2::1;-1:-1:-1::0;;;;;4074:21:2::1;4103;4074:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4060:69;;;4144:2;4136:11;;;::::0;::::1;;4053:100;4008:145::o:0;5103:185:4:-;5241:39;5258:4;5264:2;5268:7;5241:39;;;;;;;;;;;;:16;:39::i;1474:348:2:-;1549:16;1577:23;1603:17;1613:6;1603:9;:17::i;:::-;1577:43;;1627:25;1669:15;1655:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1655:30:2;;1627:58;;1697:9;1692:103;1712:15;1708:1;:19;1692:103;;;1757:30;1777:6;1785:1;1757:19;:30::i;:::-;1743:8;1752:1;1743:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;1729:3;;;;:::i;:::-;;;;1692:103;;;-1:-1:-1;1808:8:2;1474:348;-1:-1:-1;;;1474:348:2:o;2852:80::-;1122:13:11;:11;:13::i;:::-;2911:4:2::1;:15:::0;2852:80::o;3556:93::-;1122:13:11;:11;:13::i;:::-;-1:-1:-1;;;;;3618:18:2::1;;::::0;;;:11:::1;:18;::::0;;;;:25;;-1:-1:-1;;3618:25:2::1;3639:4;3618:25;::::0;;3556:93::o;1848:233:5:-;1923:7;1959:30;1746:10;:17;;1658:113;1959:30;1951:5;:38;1943:95;;;;-1:-1:-1;;;1943:95:5;;11065:2:13;1943:95:5;;;11047:21:13;11104:2;11084:18;;;11077:30;11143:34;11123:18;;;11116:62;11214:14;11194:18;;;11187:42;11246:19;;1943:95:5;10863:408:13;1943:95:5;2056:10;2067:5;2056:17;;;;;;;;:::i;:::-;;;;;;;;;2049:24;;1848:233;;;:::o;3160:98:2:-;1122:13:11;:11;:13::i;:::-;3231:7:2::1;:21;3241:11:::0;3231:7;:21:::1;:::i;:::-;;3160:98:::0;:::o;2194:222:4:-;2266:7;2302:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2302:16:4;;2329:56;;;;-1:-1:-1;;;2329:56:4;;13682:2:13;2329:56:4;;;13664:21:13;13721:2;13701:18;;;13694:30;13760:26;13740:18;;;13733:54;13804:18;;2329:56:4;13480:348:13;2273:573:2;1122:13:11;:11;:13::i;:::-;2376:33:2;;::::1;2368:91;;;::::0;-1:-1:-1;;;2368:91:2;;14035:2:13;2368:91:2::1;::::0;::::1;14017:21:13::0;14074:2;14054:18;;;14047:30;14113:34;14093:18;;;14086:62;14184:15;14164:18;;;14157:43;14217:19;;2368:91:2::1;13833:409:13::0;2368:91:2::1;2468:16;2491:11:::0;2505:13:::1;1746:10:5::0;:17;;1658:113;2505:13:2::1;2491:27;;2529:6;2525:77;2537:17:::0;;::::1;2525:77;;;2585:6;;2592:1;2585:9;;;;;;;:::i;:::-;;;;;;;2570:24;;;;;:::i;:::-;::::0;-1:-1:-1;2556:3:2;::::1;::::0;::::1;:::i;:::-;;;;2525:77;;;-1:-1:-1::0;2639:9:2::1;::::0;2616:20:::1;2625:11:::0;2616:6;:20:::1;:::i;:::-;:32;2608:74;;;::::0;-1:-1:-1;;;2608:74:2;;14579:2:13;2608:74:2::1;::::0;::::1;14561:21:13::0;14618:2;14598:18;;;14591:30;14657:31;14637:18;;;14630:59;14706:18;;2608:74:2::1;14377:353:13::0;2608:74:2::1;2695:6;2691:150;2707:20:::0;;::::1;2691:150;;;2756:1;2743:91;2764:6;;2771:1;2764:9;;;;;;;:::i;:::-;;;;;;;2759:1;:14;2743:91;;2791:33;2801:9;;2811:1;2801:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;2815:8;::::0;::::1;:::i;:::-;;;;2791:9;:33::i;:::-;2775:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2743:91;;;-1:-1:-1::0;2729:3:2;::::1;::::0;::::1;:::i;:::-;;;;2691:150;;;;2361:485;;2273:573:::0;;;;:::o;222:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2938:94::-;1122:13:11;:11;:13::i;:::-;3004:9:2::1;:22:::0;2938:94::o;1925:207:4:-;1997:7;-1:-1:-1;;;;;2025:19:4;;2017:73;;;;-1:-1:-1;;;2017:73:4;;14937:2:13;2017:73:4;;;14919:21:13;14976:2;14956:18;;;14949:30;15015:34;14995:18;;;14988:62;15086:11;15066:18;;;15059:39;15115:19;;2017:73:4;14735:405:13;2017:73:4;-1:-1:-1;;;;;;2108:16:4;;;;;:9;:16;;;;;;;1925:207::o;1884:103:11:-;1122:13;:11;:13::i;:::-;1949:30:::1;1976:1;1949:18;:30::i;:::-;1884:103::o:0;3038:116:2:-;1122:13:11;:11;:13::i;:::-;3115::2::1;:33:::0;3038:116::o;2652:104:4:-;2708:13;2741:7;2734:14;;;;;:::i;777:691:2:-;834:14;851:13;1746:10:5;:17;;1658:113;851:13:2;879:12;;834:30;;-1:-1:-1;879:12:2;;871:57;;;;-1:-1:-1;;;871:57:2;;15347:2:13;871:57:2;;;15329:21:13;;;15366:18;;;15359:30;15425:34;15405:18;;;15398:62;15477:18;;871:57:2;15145:356:13;871:57:2;955:10;943:23;;;;:11;:23;;;;;;;;935:71;;;;-1:-1:-1;;;935:71:2;;15708:2:13;935:71:2;;;15690:21:13;15747:2;15727:18;;;15720:30;15786:34;15766:18;;;15759:62;15857:5;15837:18;;;15830:33;15880:19;;935:71:2;15506:399:13;935:71:2;1035:1;1021:11;:15;1013:24;;;;;;1076:9;;1052:20;1061:11;1052:6;:20;:::i;:::-;:33;;1044:75;;;;-1:-1:-1;;;1044:75:2;;14579:2:13;1044:75:2;;;14561:21:13;14618:2;14598:18;;;14591:30;14657:31;14637:18;;;14630:59;14706:18;;1044:75:2;14377:353:13;1044:75:2;1170:13;;1155:10;1148:18;;;;:6;:18;;;;;;1134:32;;:11;:32;:::i;:::-;:49;;1126:117;;;;-1:-1:-1;;;1126:117:2;;16112:2:13;1126:117:2;;;16094:21:13;16151:2;16131:18;;;16124:30;16190:34;16170:18;;;16163:62;16261:25;16241:18;;;16234:53;16304:19;;1126:117:2;15910:419:13;1126:117:2;1283:4;;1271:16;;:11;:16;:::i;:::-;1258:9;:29;;1250:71;;;;-1:-1:-1;;;1250:71:2;;16709:2:13;1250:71:2;;;16691:21:13;16748:2;16728:18;;;16721:30;16787:31;16767:18;;;16760:59;16836:18;;1250:71:2;16507:353:13;1250:71:2;1337:10;1330:18;;;;:6;:18;;;;;:33;;1352:11;;1330:18;:33;;1352:11;;1330:33;:::i;:::-;;;;-1:-1:-1;1387:1:2;;-1:-1:-1;1370:93:2;1395:11;1390:1;:16;1370:93;;1422:33;1432:10;1444;1453:1;1444:6;:10;:::i;:::-;1422:9;:33::i;:::-;1408:3;;;;:::i;:::-;;;;1370:93;;4239:155:4;4334:52;736:10:1;4367:8:4;4377;4334:18;:52::i;5359:323::-;5533:41;736:10:1;5566:7:4;5533:18;:41::i;:::-;5525:100;;;;-1:-1:-1;;;5525:100:4;;9510:2:13;5525:100:4;;;9492:21:13;9549:2;9529:18;;;9522:30;9588:34;9568:18;;;9561:62;-1:-1:-1;;;9639:18:13;;;9632:44;9693:19;;5525:100:4;9308:410:13;5525:100:4;5636:38;5650:4;5656:2;5660:7;5669:4;5636:13;:38::i;:::-;5359:323;;;;:::o;307:37:2:-;;;;;;;:::i;1828:423::-;7254:4:4;7278:16;;;:7;:16;;;;;;1926:13:2;;-1:-1:-1;;;;;7278:16:4;1951:97:2;;;;-1:-1:-1;;;1951:97:2;;17067:2:13;1951:97:2;;;17049:21:13;17106:2;17086:18;;;17079:30;17145:34;17125:18;;;17118:62;17216:17;17196:18;;;17189:45;17251:19;;1951:97:2;16865:411:13;1951:97:2;2057:28;2088:10;:8;:10::i;:::-;2057:41;;2143:1;2118:14;2112:28;:32;:133;;;;;;;;;;;;;;;;;2180:14;2196:18;:7;:16;:18::i;:::-;2216:13;2163:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2112:133;2105:140;1828:423;-1:-1:-1;;;1828:423:2:o;3392:157::-;1122:13:11;:11;:13::i;:::-;3463:12:2::1;::::0;:22;::::1;;:12;::::0;;::::1;:22;;::::0;3455:60:::1;;;::::0;-1:-1:-1;;;3455:60:2;;18744:2:13;3455:60:2::1;::::0;::::1;18726:21:13::0;18783:2;18763:18;;;18756:30;18822:27;18802:18;;;18795:55;18867:18;;3455:60:2::1;18542:349:13::0;3455:60:2::1;3522:12;:21:::0;;-1:-1:-1;;3522:21:2::1;::::0;::::1;;::::0;;;::::1;::::0;;3392:157::o;3264:122::-;1122:13:11;:11;:13::i;:::-;3347::2::1;:33;3363:17:::0;3347:13;:33:::1;:::i;2142:201:11:-:0;1122:13;:11;:13::i;:::-;-1:-1:-1;;;;;2231:22:11;::::1;2223:73;;;::::0;-1:-1:-1;;;2223:73:11;;19098:2:13;2223:73:11::1;::::0;::::1;19080:21:13::0;19137:2;19117:18;;;19110:30;19176:34;19156:18;;;19149:62;19247:8;19227:18;;;19220:36;19273:19;;2223:73:11::1;18896:402:13::0;2223:73:11::1;2307:28;2326:8;2307:18;:28::i;3655:240:2:-:0;1122:13:11;:11;:13::i;:::-;3738:19:2;3730:67:::1;;;::::0;-1:-1:-1;;;3730:67:2;;19505:2:13;3730:67:2::1;::::0;::::1;19487:21:13::0;19544:2;19524:18;;;19517:30;19583:34;19563:18;;;19556:62;19654:5;19634:18;;;19627:33;19677:19;;3730:67:2::1;19303:399:13::0;3730:67:2::1;3808:6;3804:86;3816:19:::0;;::::1;3804:86;;;3878:4;3851:11;:24;3863:8;;3872:1;3863:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3851:24:2::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3851:24:2;:31;;-1:-1:-1;;3851:31:2::1;::::0;::::1;;::::0;;;::::1;::::0;;3837:3;::::1;::::0;::::1;:::i;:::-;;;;3804:86;;1556:305:4::0;1658:4;-1:-1:-1;;;;;;1695:40:4;;1710:25;1695:40;;:105;;-1:-1:-1;;;;;;;1752:48:4;;1767:33;1752:48;1695:105;:158;;;-1:-1:-1;978:25:3;-1:-1:-1;;;;;;963:40:3;;;1817:36:4;854:157:3;11971:135:4;7254:4;7278:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7278:16:4;12045:53;;;;-1:-1:-1;;;12045:53:4;;13682:2:13;12045:53:4;;;13664:21:13;13721:2;13701:18;;;13694:30;13760:26;13740:18;;;13733:54;13804:18;;12045:53:4;13480:348:13;11250:174:4;11325:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;11325:29:4;-1:-1:-1;;;;;11325:29:4;;;;;;;;:24;;11379:23;11325:24;11379:14;:23::i;:::-;-1:-1:-1;;;;;11370:46:4;;;;;;;;;;;11250:174;;:::o;7483:264::-;7576:4;7593:13;7609:23;7624:7;7609:14;:23::i;:::-;7593:39;;7662:5;-1:-1:-1;;;;;7651:16:4;:7;-1:-1:-1;;;;;7651:16:4;;:52;;;-1:-1:-1;;;;;;4586:25:4;;;4562:4;4586:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7671:32;7651:87;;;;7731:7;-1:-1:-1;;;;;7707:31:4;:20;7719:7;7707:11;:20::i;:::-;-1:-1:-1;;;;;7707:31:4;;7651:87;7643:96;7483:264;-1:-1:-1;;;;7483:264:4:o;10506:625::-;10665:4;-1:-1:-1;;;;;10638:31:4;:23;10653:7;10638:14;:23::i;:::-;-1:-1:-1;;;;;10638:31:4;;10630:81;;;;-1:-1:-1;;;10630:81:4;;19909:2:13;10630:81:4;;;19891:21:13;19948:2;19928:18;;;19921:30;19987:34;19967:18;;;19960:62;20058:7;20038:18;;;20031:35;20083:19;;10630:81:4;19707:401:13;10630:81:4;-1:-1:-1;;;;;10730:16:4;;10722:65;;;;-1:-1:-1;;;10722:65:4;;20315:2:13;10722:65:4;;;20297:21:13;20354:2;20334:18;;;20327:30;20393:34;20373:18;;;20366:62;20464:6;20444:18;;;20437:34;20488:19;;10722:65:4;20113:400:13;10722:65:4;10800:39;10821:4;10827:2;10831:7;10800:20;:39::i;:::-;10904:29;10921:1;10925:7;10904:8;:29::i;:::-;-1:-1:-1;;;;;10946:15:4;;;;;;:9;:15;;;;;:20;;10965:1;;10946:15;:20;;10965:1;;10946:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10977:13:4;;;;;;:9;:13;;;;;:18;;10994:1;;10977:13;:18;;10994:1;;10977:18;:::i;:::-;;;;-1:-1:-1;;11006:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;11006:21:4;-1:-1:-1;;;;;11006:21:4;;;;;;;;;11045:27;;11006:16;;11045:27;;;;;;;3583:347;3513:417;;:::o;1401:132:11:-;1309:6;;-1:-1:-1;;;;;1309:6:11;736:10:1;1465:23:11;1457:68;;;;-1:-1:-1;;;1457:68:11;;20853:2:13;1457:68:11;;;20835:21:13;;;20872:18;;;20865:30;20931:34;20911:18;;;20904:62;20983:18;;1457:68:11;20651:356:13;8089:110:4;8165:26;8175:2;8179:7;8165:26;;;;;;;;;;;;:9;:26::i;2503:191:11:-;2596:6;;;-1:-1:-1;;;;;2613:17:11;;;-1:-1:-1;;2613:17:11;;;;;;;2646:40;;2596:6;;;2613:17;2596:6;;2646:40;;2577:16;;2646:40;2566:128;2503:191;:::o;11567:315:4:-;11722:8;-1:-1:-1;;;;;11713:17:4;:5;-1:-1:-1;;;;;11713:17:4;;11705:55;;;;-1:-1:-1;;;11705:55:4;;21214:2:13;11705:55:4;;;21196:21:13;21253:2;21233:18;;;21226:30;21292:27;21272:18;;;21265:55;21337:18;;11705:55:4;21012:349:13;11705:55:4;-1:-1:-1;;;;;11771:25:4;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11771:46:4;;;;;;;;;;11833:41;;586::13;;;11833::4;;559:18:13;11833:41:4;;;;;;;11567:315;;;:::o;6563:313::-;6719:28;6729:4;6735:2;6739:7;6719:9;:28::i;:::-;6766:47;6789:4;6795:2;6799:7;6808:4;6766:22;:47::i;:::-;6758:110;;;;-1:-1:-1;;;6758:110:4;;21568:2:13;6758:110:4;;;21550:21:13;21607:2;21587:18;;;21580:30;21646:34;21626:18;;;21619:62;-1:-1:-1;;;21697:18:13;;;21690:48;21755:19;;6758:110:4;21366:414:13;656:102:2;716:13;745:7;738:14;;;;;:::i;407:723:12:-;463:13;684:5;693:1;684:10;680:53;;-1:-1:-1;;711:10:12;;;;;;;;;;;;;;;;;;407:723::o;680:53::-;758:5;743:12;799:78;806:9;;799:78;;832:8;;;;:::i;:::-;;-1:-1:-1;855:10:12;;-1:-1:-1;863:2:12;855:10;;:::i;:::-;;;799:78;;;887:19;919:6;909:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;909:17:12;;887:39;;937:154;944:10;;937:154;;971:11;981:1;971:11;;:::i;:::-;;-1:-1:-1;1040:10:12;1048:2;1040:5;:10;:::i;:::-;1027:24;;:2;:24;:::i;:::-;1014:39;;997:6;1004;997:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1068:11:12;1077:2;1068:11;;:::i;:::-;;;937:154;;2694:589:5;-1:-1:-1;;;;;2900:18:5;;2896:187;;2935:40;2967:7;4110:10;:17;;4083:24;;;;:15;:24;;;;;:44;;;4138:24;;;;;;;;;;;;4006:164;2935:40;2896:187;;;3005:2;-1:-1:-1;;;;;2997:10:5;:4;-1:-1:-1;;;;;2997:10:5;;2993:90;;3024:47;3057:4;3063:7;3024:32;:47::i;:::-;-1:-1:-1;;;;;3097:16:5;;3093:183;;3130:45;3167:7;3130:36;:45::i;3093:183::-;3203:4;-1:-1:-1;;;;;3197:10:5;:2;-1:-1:-1;;;;;3197:10:5;;3193:83;;3224:40;3252:2;3256:7;3224:27;:40::i;8426:319:4:-;8555:18;8561:2;8565:7;8555:5;:18::i;:::-;8606:53;8637:1;8641:2;8645:7;8654:4;8606:22;:53::i;:::-;8584:153;;;;-1:-1:-1;;;8584:153:4;;21568:2:13;8584:153:4;;;21550:21:13;21607:2;21587:18;;;21580:30;21646:34;21626:18;;;21619:62;-1:-1:-1;;;21697:18:13;;;21690:48;21755:19;;8584:153:4;21366:414:13;12670:853:4;12824:4;-1:-1:-1;;;;;12845:13:4;;1505:19:0;:23;12841:675:4;;12881:71;;-1:-1:-1;;;12881:71:4;;-1:-1:-1;;;;;12881:36:4;;;;;:71;;736:10:1;;12932:4:4;;12938:7;;12947:4;;12881:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12881:71:4;;;;;;;;-1:-1:-1;;12881:71:4;;;;;;;;;;;;:::i;:::-;;;12877:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13122:6;:13;13139:1;13122:18;13118:328;;13165:60;;-1:-1:-1;;;13165:60:4;;21568:2:13;13165:60:4;;;21550:21:13;21607:2;21587:18;;;21580:30;21646:34;21626:18;;;21619:62;-1:-1:-1;;;21697:18:13;;;21690:48;21755:19;;13165:60:4;21366:414:13;13118:328:4;13396:6;13390:13;13381:6;13377:2;13373:15;13366:38;12877:584;-1:-1:-1;;;;;;13003:51:4;-1:-1:-1;;;13003:51:4;;-1:-1:-1;12996:58:4;;12841:675;-1:-1:-1;13500:4:4;12670:853;;;;;;:::o;4797:988:5:-;5063:22;5113:1;5088:22;5105:4;5088:16;:22::i;:::-;:26;;;;:::i;:::-;5125:18;5146:26;;;:17;:26;;;;;;5063:51;;-1:-1:-1;5279:28:5;;;5275:328;;-1:-1:-1;;;;;5346:18:5;;5324:19;5346:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5397:30;;;;;;:44;;;5514:30;;:17;:30;;;;;:43;;;5275:328;-1:-1:-1;5699:26:5;;;;:17;:26;;;;;;;;5692:33;;;-1:-1:-1;;;;;5743:18:5;;;;;:12;:18;;;;;:34;;;;;;;5736:41;4797:988::o;6080:1079::-;6358:10;:17;6333:22;;6358:21;;6378:1;;6358:21;:::i;:::-;6390:18;6411:24;;;:15;:24;;;;;;6784:10;:26;;6333:46;;-1:-1:-1;6411:24:5;;6333:46;;6784:26;;;;;;:::i;:::-;;;;;;;;;6762:48;;6848:11;6823:10;6834;6823:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6928:28;;;:15;:28;;;;;;;:41;;;7100:24;;;;;7093:31;7135:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6151:1008;;;6080:1079;:::o;3584:221::-;3669:14;3686:20;3703:2;3686:16;:20::i;:::-;-1:-1:-1;;;;;3717:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3762:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3584:221:5:o;9081:439:4:-;-1:-1:-1;;;;;9161:16:4;;9153:61;;;;-1:-1:-1;;;9153:61:4;;23378:2:13;9153:61:4;;;23360:21:13;;;23397:18;;;23390:30;23456:34;23436:18;;;23429:62;23508:18;;9153:61:4;23176:356:13;9153:61:4;7254:4;7278:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7278:16:4;:30;9225:58;;;;-1:-1:-1;;;9225:58:4;;23739:2:13;9225:58:4;;;23721:21:13;23778:2;23758:18;;;23751:30;23817;23797:18;;;23790:58;23865:18;;9225:58:4;23537:352:13;9225:58:4;9296:45;9325:1;9329:2;9333:7;9296:20;:45::i;:::-;-1:-1:-1;;;;;9354:13:4;;;;;;:9;:13;;;;;:18;;9371:1;;9354:13;:18;;9371:1;;9354:18;:::i;:::-;;;;-1:-1:-1;;9383:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;9383:21:4;-1:-1:-1;;;;;9383:21:4;;;;;;;;9422:33;;9383:16;;;9422:33;;9383:16;;9422:33;3231:21:2::1;3160:98:::0;:::o;14:177:13:-;-1:-1:-1;;;;;;92:5:13;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:250::-;723:1;733:113;747:6;744:1;741:13;733:113;;;823:11;;;817:18;804:11;;;797:39;769:2;762:10;733:113;;;-1:-1:-1;;880:1:13;862:16;;855:27;638:250::o;893:271::-;935:3;973:5;967:12;1000:6;995:3;988:19;1016:76;1085:6;1078:4;1073:3;1069:14;1062:4;1055:5;1051:16;1016:76;:::i;:::-;1146:2;1125:15;-1:-1:-1;;1121:29:13;1112:39;;;;1153:4;1108:50;;893:271;-1:-1:-1;;893:271:13:o;1169:220::-;1318:2;1307:9;1300:21;1281:4;1338:45;1379:2;1368:9;1364:18;1356:6;1338:45;:::i;1394:180::-;1453:6;1506:2;1494:9;1485:7;1481:23;1477:32;1474:52;;;1522:1;1519;1512:12;1474:52;-1:-1:-1;1545:23:13;;1394:180;-1:-1:-1;1394:180:13:o;1810:196::-;1878:20;;-1:-1:-1;;;;;1927:54:13;;1917:65;;1907:93;;1996:1;1993;1986:12;1907:93;1810:196;;;:::o;2011:254::-;2079:6;2087;2140:2;2128:9;2119:7;2115:23;2111:32;2108:52;;;2156:1;2153;2146:12;2108:52;2179:29;2198:9;2179:29;:::i;:::-;2169:39;2255:2;2240:18;;;;2227:32;;-1:-1:-1;;;2011:254:13:o;2452:186::-;2511:6;2564:2;2552:9;2543:7;2539:23;2535:32;2532:52;;;2580:1;2577;2570:12;2532:52;2603:29;2622:9;2603:29;:::i;2643:328::-;2720:6;2728;2736;2789:2;2777:9;2768:7;2764:23;2760:32;2757:52;;;2805:1;2802;2795:12;2757:52;2828:29;2847:9;2828:29;:::i;:::-;2818:39;;2876:38;2910:2;2899:9;2895:18;2876:38;:::i;:::-;2866:48;;2961:2;2950:9;2946:18;2933:32;2923:42;;2643:328;;;;;:::o;2976:632::-;3147:2;3199:21;;;3269:13;;3172:18;;;3291:22;;;3118:4;;3147:2;3370:15;;;;3344:2;3329:18;;;3118:4;3413:169;3427:6;3424:1;3421:13;3413:169;;;3488:13;;3476:26;;3557:15;;;;3522:12;;;;3449:1;3442:9;3413:169;;;-1:-1:-1;3599:3:13;;2976:632;-1:-1:-1;;;;;;2976:632:13:o;3613:184::-;-1:-1:-1;;;3662:1:13;3655:88;3762:4;3759:1;3752:15;3786:4;3783:1;3776:15;3802:632;3867:5;3897:18;3938:2;3930:6;3927:14;3924:40;;;3944:18;;:::i;:::-;4019:2;4013:9;3987:2;4073:15;;-1:-1:-1;;4069:24:13;;;4095:2;4065:33;4061:42;4049:55;;;4119:18;;;4139:22;;;4116:46;4113:72;;;4165:18;;:::i;:::-;4205:10;4201:2;4194:22;4234:6;4225:15;;4264:6;4256;4249:22;4304:3;4295:6;4290:3;4286:16;4283:25;4280:45;;;4321:1;4318;4311:12;4280:45;4371:6;4366:3;4359:4;4351:6;4347:17;4334:44;4426:1;4419:4;4410:6;4402;4398:19;4394:30;4387:41;;;;3802:632;;;;;:::o;4439:451::-;4508:6;4561:2;4549:9;4540:7;4536:23;4532:32;4529:52;;;4577:1;4574;4567:12;4529:52;4617:9;4604:23;4650:18;4642:6;4639:30;4636:50;;;4682:1;4679;4672:12;4636:50;4705:22;;4758:4;4750:13;;4746:27;-1:-1:-1;4736:55:13;;4787:1;4784;4777:12;4736:55;4810:74;4876:7;4871:2;4858:16;4853:2;4849;4845:11;4810:74;:::i;4895:367::-;4958:8;4968:6;5022:3;5015:4;5007:6;5003:17;4999:27;4989:55;;5040:1;5037;5030:12;4989:55;-1:-1:-1;5063:20:13;;5106:18;5095:30;;5092:50;;;5138:1;5135;5128:12;5092:50;5175:4;5167:6;5163:17;5151:29;;5235:3;5228:4;5218:6;5215:1;5211:14;5203:6;5199:27;5195:38;5192:47;5189:67;;;5252:1;5249;5242:12;5189:67;4895:367;;;;;:::o;5267:773::-;5389:6;5397;5405;5413;5466:2;5454:9;5445:7;5441:23;5437:32;5434:52;;;5482:1;5479;5472:12;5434:52;5522:9;5509:23;5551:18;5592:2;5584:6;5581:14;5578:34;;;5608:1;5605;5598:12;5578:34;5647:70;5709:7;5700:6;5689:9;5685:22;5647:70;:::i;:::-;5736:8;;-1:-1:-1;5621:96:13;-1:-1:-1;5824:2:13;5809:18;;5796:32;;-1:-1:-1;5840:16:13;;;5837:36;;;5869:1;5866;5859:12;5837:36;;5908:72;5972:7;5961:8;5950:9;5946:24;5908:72;:::i;:::-;5267:773;;;;-1:-1:-1;5999:8:13;-1:-1:-1;;;;5267:773:13:o;6045:160::-;6110:20;;6166:13;;6159:21;6149:32;;6139:60;;6195:1;6192;6185:12;6210:254;6275:6;6283;6336:2;6324:9;6315:7;6311:23;6307:32;6304:52;;;6352:1;6349;6342:12;6304:52;6375:29;6394:9;6375:29;:::i;:::-;6365:39;;6423:35;6454:2;6443:9;6439:18;6423:35;:::i;:::-;6413:45;;6210:254;;;;;:::o;6469:667::-;6564:6;6572;6580;6588;6641:3;6629:9;6620:7;6616:23;6612:33;6609:53;;;6658:1;6655;6648:12;6609:53;6681:29;6700:9;6681:29;:::i;:::-;6671:39;;6729:38;6763:2;6752:9;6748:18;6729:38;:::i;:::-;6719:48;;6814:2;6803:9;6799:18;6786:32;6776:42;;6869:2;6858:9;6854:18;6841:32;6896:18;6888:6;6885:30;6882:50;;;6928:1;6925;6918:12;6882:50;6951:22;;7004:4;6996:13;;6992:27;-1:-1:-1;6982:55:13;;7033:1;7030;7023:12;6982:55;7056:74;7122:7;7117:2;7104:16;7099:2;7095;7091:11;7056:74;:::i;:::-;7046:84;;;6469:667;;;;;;;:::o;7141:180::-;7197:6;7250:2;7238:9;7229:7;7225:23;7221:32;7218:52;;;7266:1;7263;7256:12;7218:52;7289:26;7305:9;7289:26;:::i;7326:260::-;7394:6;7402;7455:2;7443:9;7434:7;7430:23;7426:32;7423:52;;;7471:1;7468;7461:12;7423:52;7494:29;7513:9;7494:29;:::i;:::-;7484:39;;7542:38;7576:2;7565:9;7561:18;7542:38;:::i;7591:437::-;7677:6;7685;7738:2;7726:9;7717:7;7713:23;7709:32;7706:52;;;7754:1;7751;7744:12;7706:52;7794:9;7781:23;7827:18;7819:6;7816:30;7813:50;;;7859:1;7856;7849:12;7813:50;7898:70;7960:7;7951:6;7940:9;7936:22;7898:70;:::i;:::-;7987:8;;7872:96;;-1:-1:-1;7591:437:13;-1:-1:-1;;;;7591:437:13:o;8033:::-;8112:1;8108:12;;;;8155;;;8176:61;;8230:4;8222:6;8218:17;8208:27;;8176:61;8283:2;8275:6;8272:14;8252:18;8249:38;8246:218;;-1:-1:-1;;;8317:1:13;8310:88;8421:4;8418:1;8411:15;8449:4;8446:1;8439:15;8246:218;;8033:437;;;:::o;10345:184::-;-1:-1:-1;;;10394:1:13;10387:88;10494:4;10491:1;10484:15;10518:4;10515:1;10508:15;10534:184;-1:-1:-1;;;10583:1:13;10576:88;10683:4;10680:1;10673:15;10707:4;10704:1;10697:15;10723:135;10762:3;10783:17;;;10780:43;;10803:18;;:::i;:::-;-1:-1:-1;10850:1:13;10839:13;;10723:135::o;11402:545::-;11504:2;11499:3;11496:11;11493:448;;;11540:1;11565:5;11561:2;11554:17;11610:4;11606:2;11596:19;11680:2;11668:10;11664:19;11661:1;11657:27;11651:4;11647:38;11716:4;11704:10;11701:20;11698:47;;;-1:-1:-1;11739:4:13;11698:47;11794:2;11789:3;11785:12;11782:1;11778:20;11772:4;11768:31;11758:41;;11849:82;11867:2;11860:5;11857:13;11849:82;;;11912:17;;;11893:1;11882:13;11849:82;;;11853:3;;;11402:545;;;:::o;12123:1352::-;12249:3;12243:10;12276:18;12268:6;12265:30;12262:56;;;12298:18;;:::i;:::-;12327:97;12417:6;12377:38;12409:4;12403:11;12377:38;:::i;:::-;12371:4;12327:97;:::i;:::-;12479:4;;12543:2;12532:14;;12560:1;12555:663;;;;13262:1;13279:6;13276:89;;;-1:-1:-1;13331:19:13;;;13325:26;13276:89;-1:-1:-1;;12080:1:13;12076:11;;;12072:24;12068:29;12058:40;12104:1;12100:11;;;12055:57;13378:81;;12525:944;;12555:663;11349:1;11342:14;;;11386:4;11373:18;;-1:-1:-1;;12591:20:13;;;12709:236;12723:7;12720:1;12717:14;12709:236;;;12812:19;;;12806:26;12791:42;;12904:27;;;;12872:1;12860:14;;;;12739:19;;12709:236;;;12713:3;12973:6;12964:7;12961:19;12958:201;;;13034:19;;;13028:26;-1:-1:-1;;13117:1:13;13113:14;;;13129:3;13109:24;13105:37;13101:42;13086:58;13071:74;;12958:201;-1:-1:-1;;;;;13205:1:13;13189:14;;;13185:22;13172:36;;-1:-1:-1;12123:1352:13:o;14247:125::-;14312:9;;;14333:10;;;14330:36;;;14346:18;;:::i;16334:168::-;16407:9;;;16438;;16455:15;;;16449:22;;16435:37;16425:71;;16476:18;;:::i;17281:1256::-;17505:3;17543:6;17537:13;17569:4;17582:64;17639:6;17634:3;17629:2;17621:6;17617:15;17582:64;:::i;:::-;17709:13;;17668:16;;;;17731:68;17709:13;17668:16;17766:15;;;17731:68;:::i;:::-;17888:13;;17821:20;;;17861:1;;17926:36;17888:13;17926:36;:::i;:::-;17981:1;17998:18;;;18025:141;;;;18180:1;18175:337;;;;17991:521;;18025:141;-1:-1:-1;;18060:24:13;;18046:39;;18137:16;;18130:24;18116:39;;18105:51;;;-1:-1:-1;18025:141:13;;18175:337;18206:6;18203:1;18196:17;18254:2;18251:1;18241:16;18279:1;18293:169;18307:8;18304:1;18301:15;18293:169;;;18389:14;;18374:13;;;18367:37;18432:16;;;;18324:10;;18293:169;;;18297:3;;18493:8;18486:5;18482:20;18475:27;;17991:521;-1:-1:-1;18528:3:13;;17281:1256;-1:-1:-1;;;;;;;;;;17281:1256:13:o;20518:128::-;20585:9;;;20606:11;;;20603:37;;;20620:18;;:::i;21785:184::-;-1:-1:-1;;;21834:1:13;21827:88;21934:4;21931:1;21924:15;21958:4;21955:1;21948:15;21974:120;22014:1;22040;22030:35;;22045:18;;:::i;:::-;-1:-1:-1;22079:9:13;;21974:120::o;22099:112::-;22131:1;22157;22147:35;;22162:18;;:::i;:::-;-1:-1:-1;22196:9:13;;22099:112::o;22216:512::-;22410:4;-1:-1:-1;;;;;22520:2:13;22512:6;22508:15;22497:9;22490:34;22572:2;22564:6;22560:15;22555:2;22544:9;22540:18;22533:43;;22612:6;22607:2;22596:9;22592:18;22585:34;22655:3;22650:2;22639:9;22635:18;22628:31;22676:46;22717:3;22706:9;22702:19;22694:6;22676:46;:::i;:::-;22668:54;22216:512;-1:-1:-1;;;;;;22216:512:13:o;22733:249::-;22802:6;22855:2;22843:9;22834:7;22830:23;22826:32;22823:52;;;22871:1;22868;22861:12;22823:52;22903:9;22897:16;22922:30;22946:5;22922:30;:::i;22987:184::-;-1:-1:-1;;;23036:1:13;23029:88;23136:4;23133:1;23126:15;23160:4;23157:1;23150:15

Swarm Source

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