ETH Price: $3,158.14 (+2.85%)
Gas: 2 Gwei

Token

wooonen2.0 (wooonen2.0)
 

Overview

Max Total Supply

3,103 wooonen2.0

Holders

640

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
22608.eth
Balance
1 wooonen2.0
0x13ffef09c547cc590e23efe6df3397b93952f22d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Wooonen

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 13 of 13: wooonen.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./ERC721A.sol";
import "./Strings.sol";
interface IERC20 {
    
    function transfer(address recipient, uint256 amount) external returns (bool);
    function transferFrom(address from, address to, uint256 value) external returns (bool);
    
}
contract Wooonen is ERC721A, ReentrancyGuard, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 5200;
    uint256 public FREE = 0;
    uint256 public constant FREE_SUPPLY = 2800;
    uint256 public WOOO = 0;
    uint256 public constant WOOO_SUPPLY = 2400;
    string public baseExtension = ".json";
    string private _baseTokenURI = "";
    address public  tokenAddress = 0x5A035e3F1551a15230D0cDE3357fB1bf89369261;
    uint256 public  price = 10086e18;
    mapping(address => uint256) public _claimed;
    mapping(address => uint256) public _whitelistClaimed;
    address public immutable cSigner;
    bool public state = false;

   constructor(string memory name, string memory symbol, string memory baseURI) ERC721A(name, symbol,100,MAX_SUPPLY) {
        setBaseURI(baseURI);
        cSigner = 0x97591D4C59b35b7A3842735c5C3E3D131aB32251;
    }

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


    function whiteMint(uint256 num,uint8 v, bytes32 r, bytes32 s) external payable {
        require(state == true, "not yet open");
        require(FREE < FREE_SUPPLY, "All tokens minted");
        require(totalSupply() < MAX_SUPPLY, "All tokens minted");
        require(_claimed[msg.sender] == 0, "Claimed");
        bytes32 digest = sha256(abi.encodePacked(msg.sender, num.toString()));
        require(ecrecover(digest, v, r, s) == cSigner, "Invalid signer");
        _claimed[msg.sender] = 1;
        _safeMint(msg.sender, num);
        FREE += num ;
    }
    
    function woooMint(uint256 num) external payable {
        require(state == true, "not yet open");
        require(WOOO < WOOO_SUPPLY, "All tokens minted");
        require(totalSupply() < MAX_SUPPLY, "All tokens minted");
        require(num <= 5, "failed");
        IERC20(tokenAddress).transferFrom(msg.sender,address(this),num*price);
        _safeMint(msg.sender, num);
        WOOO += num ;
    }

    function appointMint(uint256 num) external payable {
        require(totalSupply() < MAX_SUPPLY, "All tokens minted");
        require(_whitelistClaimed[msg.sender] >= num, "failed");
        _whitelistClaimed[msg.sender] -= num;
        _safeMint(msg.sender, num);
    }

    function setWhitelist(uint256 num,address user) public onlyOwner {
        require(num > 0, " num <= 0");
        _whitelistClaimed[user] = num;
    }

    function setBaseURI(string memory val) public onlyOwner {
        _baseTokenURI = val;
    }

    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))
        : "";
  }
    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }
    function setPrice(uint256 amount) public onlyOwner{
        price = amount;
    }
    function setState(bool _state) public onlyOwner{
        state = _state;
    }

    function withdraw() public payable onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
    function withdrawToken(uint256 amount) public onlyOwner{
        IERC20(tokenAddress).transfer(msg.sender,amount);
    }
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 13: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 3 of 13: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 4 of 13: ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.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 and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

  /**
   * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
   * by default, can be overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

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

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

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

    _operatorApprovals[_msgSender()][operator] = approved;
    emit ApprovalForAll(_msgSender(), operator, approved);
  }

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

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

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

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

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

  /**
   * @dev Approve `to` to operate on `tokenId`
   *
   * Emits a {Approval} event.
   */
  function _approve(
    address to,
    uint256 tokenId,
    address owner
  ) private {
    _tokenApprovals[tokenId] = to;
    emit Approval(owner, to, tokenId);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

File 5 of 13: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 6 of 13: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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

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

File 8 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 9 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 13: Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 11 of 13: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 12 of 13: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WOOO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WOOO_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"appointMint","outputs":[],"stateMutability":"payable","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":"cSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"val","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"state","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"tokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"num","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"whiteMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"woooMint","outputs":[],"stateMutability":"payable","type":"function"}]

5f8080556007819055600a819055600b55610120604052600560e090815264173539b7b760d91b61010052600c9062000039908262000300565b5060408051602081019091525f8152600d9062000057908262000300565b50600e80546001600160a01b031916735a035e3f1551a15230d0cde3357fb1bf89369261179055690222c35e2a14edd80000600f556012805460ff19169055348015620000a2575f80fd5b5060405162002e8338038062002e83833981016040819052620000c59162000472565b82826064611450620000db565b60405180910390fd5b5f82116200013c5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000d2565b60016200014a858262000300565b50600262000159848262000300565b5060a091909152608052505060016008556200017533620001a1565b6200018081620001f2565b50507397591d4c59b35b7a3842735c5c3e3d131ab3225160c05250620004fd565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6009546001600160a01b031633146200024e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620000d2565b600d6200025c828262000300565b5050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200028957607f821691505b602082108103620002a857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620002fb575f81815260208120601f850160051c81016020861015620002d65750805b601f850160051c820191505b81811015620002f757828155600101620002e2565b5050505b505050565b81516001600160401b038111156200031c576200031c62000260565b62000334816200032d845462000274565b84620002ae565b602080601f8311600181146200036a575f8415620003525750858301515b5f19600386901b1c1916600185901b178555620002f7565b5f85815260208120601f198616915b828110156200039a5788860151825594840194600190910190840162000379565b5085821015620003b857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f82601f830112620003d8575f80fd5b81516001600160401b0380821115620003f557620003f562000260565b604051601f8301601f19908116603f0116810190828211818310171562000420576200042062000260565b816040528381526020925086838588010111156200043c575f80fd5b5f91505b838210156200045f578582018301518183018401529082019062000440565b5f93810190920192909252949350505050565b5f805f6060848603121562000485575f80fd5b83516001600160401b03808211156200049c575f80fd5b620004aa87838801620003c8565b94506020860151915080821115620004c0575f80fd5b620004ce87838801620003c8565b93506040860151915080821115620004e4575f80fd5b50620004f386828701620003c8565b9150509250925092565b60805160a05160c0516129496200053a5f395f81816104290152610e8b01525f8181611abc01528181611ae60152611f1901525f50506129495ff3fe608060405260043610610249575f3560e01c8063851a770811610134578063b2e97362116100b3578063d7224ba011610078578063d7224ba014610658578063d89da2861461066d578063da3ef23f1461068c578063dd896a1c146106ab578063e985e9c5146106d6578063f2fde38b1461071d575f80fd5b8063b2e97362146105da578063b88d4fde146105ed578063c19d93fb1461060c578063c668286214610625578063c87b56dd14610639575f80fd5b80639858cf19116100f95780639858cf19146105535780639d76ea5814610568578063a035b1fe14610587578063a22cb4651461059c578063ac9f0222146105bb575f80fd5b8063851a7708146104c5578063876a8526146104f05780638da5cb5b1461050357806391b7f5ed1461052057806395d89b411461053f575f80fd5b806342842e0e116101cb5780635760cc5d116101905780635760cc5d146104185780635b22f9f71461044b5780636352211e146104605780636f9356ae1461047f57806370a0823114610492578063715018a6146104b1575f80fd5b806342842e0e1461038757806347998157146103a65780634f6ccce7146103bb57806350baa622146103da57806355f804b3146103f9575f80fd5b806323b872dd1161021157806323b872dd146103175780632cdcc4c9146103365780632f745c591461034b57806332cb6b0c1461036a5780633ccfd60b1461037f575f80fd5b806301ffc9a71461024d57806306fdde0314610281578063081812fc146102a2578063095ea7b3146102d957806318160ddd146102fa575b5f80fd5b348015610258575f80fd5b5061026c610267366004612147565b61073c565b60405190151581526020015b60405180910390f35b34801561028c575f80fd5b506102956107a8565b60405161027891906121af565b3480156102ad575f80fd5b506102c16102bc3660046121c1565b610838565b6040516001600160a01b039091168152602001610278565b3480156102e4575f80fd5b506102f86102f33660046121f3565b6108c5565b005b348015610305575f80fd5b505f545b604051908152602001610278565b348015610322575f80fd5b506102f861033136600461221b565b6109db565b348015610341575f80fd5b50610309600b5481565b348015610356575f80fd5b506103096103653660046121f3565b6109e6565b348015610375575f80fd5b5061030961145081565b6102f8610b4f565b348015610392575f80fd5b506102f86103a136600461221b565b610ba9565b3480156103b1575f80fd5b50610309600a5481565b3480156103c6575f80fd5b506103096103d53660046121c1565b610bc3565b3480156103e5575f80fd5b506102f86103f43660046121c1565b610c24565b348015610404575f80fd5b506102f86104133660046122db565b610cc0565b348015610423575f80fd5b506102c17f000000000000000000000000000000000000000000000000000000000000000081565b348015610456575f80fd5b5061030961096081565b34801561046b575f80fd5b506102c161047a3660046121c1565b610cf6565b6102f861048d366004612320565b610d07565b34801561049d575f80fd5b506103096104ac36600461235f565b610f5c565b3480156104bc575f80fd5b506102f8610feb565b3480156104d0575f80fd5b506103096104df36600461235f565b60116020525f908152604090205481565b6102f86104fe3660046121c1565b611020565b34801561050e575f80fd5b506009546001600160a01b03166102c1565b34801561052b575f80fd5b506102f861053a3660046121c1565b6110c0565b34801561054a575f80fd5b506102956110ef565b34801561055e575f80fd5b50610309610af081565b348015610573575f80fd5b50600e546102c1906001600160a01b031681565b348015610592575f80fd5b50610309600f5481565b3480156105a7575f80fd5b506102f86105b6366004612385565b6110fe565b3480156105c6575f80fd5b506102f86105d53660046123ba565b6111c1565b6102f86105e83660046121c1565b6111fe565b3480156105f8575f80fd5b506102f86106073660046123d5565b611388565b348015610617575f80fd5b5060125461026c9060ff1681565b348015610630575f80fd5b506102956113c1565b348015610644575f80fd5b506102956106533660046121c1565b61144d565b348015610663575f80fd5b5061030960075481565b348015610678575f80fd5b506102f861068736600461244c565b611519565b348015610697575f80fd5b506102f86106a63660046122db565b611597565b3480156106b6575f80fd5b506103096106c536600461235f565b60106020525f908152604090205481565b3480156106e1575f80fd5b5061026c6106f0366004612476565b6001600160a01b039182165f90815260066020908152604080832093909416825291909152205460ff1690565b348015610728575f80fd5b506102f861073736600461235f565b6115cd565b5f6001600160e01b031982166380ac58cd60e01b148061076c57506001600160e01b03198216635b5e139f60e01b145b8061078757506001600160e01b0319821663780e9d6360e01b145b806107a257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107b79061249e565b80601f01602080910402602001604051908101604052809291908181526020018280546107e39061249e565b801561082e5780601f106108055761010080835404028352916020019161082e565b820191905f5260205f20905b81548152906001019060200180831161081157829003601f168201915b5050505050905090565b5f610843825f541190565b6108aa5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b505f908152600560205260409020546001600160a01b031690565b5f6108cf82610cf6565b9050806001600160a01b0316836001600160a01b03160361093d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108a1565b336001600160a01b0382161480610959575061095981336106f0565b6109cb5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108a1565b6109d6838383611665565b505050565b6109d68383836116c0565b5f6109f083610f5c565b8210610a495760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108a1565b5f80549080805b83811015610aef575f818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610aa257805192505b876001600160a01b0316836001600160a01b031603610adc57868403610ace575093506107a292505050565b83610ad8816124ea565b9450505b5080610ae7816124ea565b915050610a50565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108a1565b6009546001600160a01b03163314610b795760405162461bcd60e51b81526004016108a190612502565b6040514790339082156108fc029083905f818181858888f19350505050158015610ba5573d5f803e3d5ffd5b5050565b6109d683838360405180602001604052805f815250611388565b5f80548210610c205760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108a1565b5090565b6009546001600160a01b03163314610c4e5760405162461bcd60e51b81526004016108a190612502565b600e5460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303815f875af1158015610c9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ba59190612537565b6009546001600160a01b03163314610cea5760405162461bcd60e51b81526004016108a190612502565b600d610ba58282612597565b5f610d0082611a3d565b5192915050565b60125460ff161515600114610d4d5760405162461bcd60e51b815260206004820152600c60248201526b3737ba103cb2ba1037b832b760a11b60448201526064016108a1565b610af0600a5410610d705760405162461bcd60e51b81526004016108a190612653565b611450610d7b5f5490565b10610d985760405162461bcd60e51b81526004016108a190612653565b335f9081526010602052604090205415610dde5760405162461bcd60e51b815260206004820152600760248201526610db185a5b595960ca1b60448201526064016108a1565b5f600233610deb87611be3565b604051602001610dfc92919061267e565b60408051601f1981840301815290829052610e16916126b5565b602060405180830381855afa158015610e31573d5f803e3d5ffd5b5050506040513d601f19601f82011682018060405250810190610e5491906126d0565b604080515f81526020810180835283905260ff87169181019190915260608101859052608081018490529091506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169060019060a0016020604051602081039080840390855afa158015610ed2573d5f803e3d5ffd5b505050602060405103516001600160a01b031614610f235760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b4b3b732b960911b60448201526064016108a1565b335f81815260106020526040902060019055610f3f9086611ce8565b84600a5f828254610f5091906126e7565b90915550505050505050565b5f6001600160a01b038216610fc75760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108a1565b506001600160a01b03165f908152600460205260409020546001600160801b031690565b6009546001600160a01b031633146110155760405162461bcd60e51b81526004016108a190612502565b61101e5f611d01565b565b61145061102b5f5490565b106110485760405162461bcd60e51b81526004016108a190612653565b335f9081526011602052604090205481111561108f5760405162461bcd60e51b815260206004820152600660248201526519985a5b195960d21b60448201526064016108a1565b335f90815260116020526040812080548392906110ad9084906126fa565b909155506110bd90503382611ce8565b50565b6009546001600160a01b031633146110ea5760405162461bcd60e51b81526004016108a190612502565b600f55565b6060600280546107b79061249e565b336001600160a01b038316036111565760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108a1565b335f8181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b031633146111eb5760405162461bcd60e51b81526004016108a190612502565b6012805460ff1916911515919091179055565b60125460ff1615156001146112445760405162461bcd60e51b815260206004820152600c60248201526b3737ba103cb2ba1037b832b760a11b60448201526064016108a1565b610960600b54106112675760405162461bcd60e51b81526004016108a190612653565b6114506112725f5490565b1061128f5760405162461bcd60e51b81526004016108a190612653565b60058111156112c95760405162461bcd60e51b815260206004820152600660248201526519985a5b195960d21b60448201526064016108a1565b600e54600f546001600160a01b03909116906323b872dd90339030906112ef908661270d565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af1158015611340573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113649190612537565b5061136f3382611ce8565b80600b5f82825461138091906126e7565b909155505050565b6113938484846116c0565b61139f84848484611d52565b6113bb5760405162461bcd60e51b81526004016108a190612724565b50505050565b600c80546113ce9061249e565b80601f01602080910402602001604051908101604052809291908181526020018280546113fa9061249e565b80156114455780601f1061141c57610100808354040283529160200191611445565b820191905f5260205f20905b81548152906001019060200180831161142857829003601f168201915b505050505081565b6060611459825f541190565b6114bd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a1565b5f6114c6611e4f565b90505f8151116114e45760405180602001604052805f815250611512565b806114ee84611be3565b600c60405160200161150293929190612777565b6040516020818303038152906040525b9392505050565b6009546001600160a01b031633146115435760405162461bcd60e51b81526004016108a190612502565b5f821161157e5760405162461bcd60e51b81526020600482015260096024820152680206e756d203c3d20360bc1b60448201526064016108a1565b6001600160a01b03165f90815260116020526040902055565b6009546001600160a01b031633146115c15760405162461bcd60e51b81526004016108a190612502565b600c610ba58282612597565b6009546001600160a01b031633146115f75760405162461bcd60e51b81526004016108a190612502565b6001600160a01b03811661165c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a1565b6110bd81611d01565b5f8281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f6116ca82611a3d565b80519091505f906001600160a01b0316336001600160a01b031614806117005750336116f584610838565b6001600160a01b0316145b806117125750815161171290336106f0565b90508061177c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108a1565b846001600160a01b0316825f01516001600160a01b0316146117ef5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108a1565b6001600160a01b0384166118535760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108a1565b6118615f84845f0151611665565b6001600160a01b0385165f9081526004602052604081208054600192906118929084906001600160801b0316612812565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386165f90815260046020526040812080546001945090926118dd91859116612839565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff42811660208085019182525f8981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556119648460016126e7565b5f818152600360205260409020549091506001600160a01b03166119f35761198c815f541190565b156119f35760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081525f878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091525f8082526020820152611a5a825f541190565b611ab95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108a1565b5f7f00000000000000000000000000000000000000000000000000000000000000008310611b1957611b0b7f0000000000000000000000000000000000000000000000000000000000000000846126fa565b611b169060016126e7565b90505b825b818110611b82575f818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b6f57949350505050565b5080611b7a81612859565b915050611b1b565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108a1565b6060815f03611c095750506040805180820190915260018152600360fc1b602082015290565b815f5b8115611c325780611c1c816124ea565b9150611c2b9050600a83612882565b9150611c0c565b5f8167ffffffffffffffff811115611c4c57611c4c612254565b6040519080825280601f01601f191660200182016040528015611c76576020820181803683370190505b5090505b8415611ce057611c8b6001836126fa565b9150611c98600a86612895565b611ca39060306126e7565b60f81b818381518110611cb857611cb86128a8565b60200101906001600160f81b03191690815f1a905350611cd9600a86612882565b9450611c7a565b949350505050565b610ba5828260405180602001604052805f815250611e5e565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f6001600160a01b0384163b15611e4457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d959033908990889088906004016128bc565b6020604051808303815f875af1925050508015611dcf575060408051601f3d908101601f19168201909252611dcc918101906128f8565b60015b611e2a573d808015611dfc576040519150601f19603f3d011682016040523d82523d5f602084013e611e01565b606091505b5080515f03611e225760405162461bcd60e51b81526004016108a190612724565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ce0565b506001949350505050565b6060600d80546107b79061249e565b5f546001600160a01b038416611ec05760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108a1565b611eca815f541190565b15611f175760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108a1565b7f0000000000000000000000000000000000000000000000000000000000000000831115611f925760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108a1565b6001600160a01b0384165f908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fed908790612839565b6001600160801b0316815260200185836020015161200b9190612839565b6001600160801b039081169091526001600160a01b038088165f8181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121285760405182906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120ec5f888488611d52565b6121085760405162461bcd60e51b81526004016108a190612724565b81612112816124ea565b9250508080612120906124ea565b9150506120a1565b505f819055611a35565b6001600160e01b0319811681146110bd575f80fd5b5f60208284031215612157575f80fd5b813561151281612132565b5f5b8381101561217c578181015183820152602001612164565b50505f910152565b5f815180845261219b816020860160208601612162565b601f01601f19169290920160200192915050565b602081525f6115126020830184612184565b5f602082840312156121d1575f80fd5b5035919050565b80356001600160a01b03811681146121ee575f80fd5b919050565b5f8060408385031215612204575f80fd5b61220d836121d8565b946020939093013593505050565b5f805f6060848603121561222d575f80fd5b612236846121d8565b9250612244602085016121d8565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561228257612282612254565b604051601f8501601f19908116603f011681019082821181831017156122aa576122aa612254565b816040528093508581528686860111156122c2575f80fd5b858560208301375f602087830101525050509392505050565b5f602082840312156122eb575f80fd5b813567ffffffffffffffff811115612301575f80fd5b8201601f81018413612311575f80fd5b611ce084823560208401612268565b5f805f8060808587031215612333575f80fd5b84359350602085013560ff8116811461234a575f80fd5b93969395505050506040820135916060013590565b5f6020828403121561236f575f80fd5b611512826121d8565b80151581146110bd575f80fd5b5f8060408385031215612396575f80fd5b61239f836121d8565b915060208301356123af81612378565b809150509250929050565b5f602082840312156123ca575f80fd5b813561151281612378565b5f805f80608085870312156123e8575f80fd5b6123f1856121d8565b93506123ff602086016121d8565b925060408501359150606085013567ffffffffffffffff811115612421575f80fd5b8501601f81018713612431575f80fd5b61244087823560208401612268565b91505092959194509250565b5f806040838503121561245d575f80fd5b8235915061246d602084016121d8565b90509250929050565b5f8060408385031215612487575f80fd5b612490836121d8565b915061246d602084016121d8565b600181811c908216806124b257607f821691505b6020821081036124d057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b5f600182016124fb576124fb6124d6565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215612547575f80fd5b815161151281612378565b601f8211156109d6575f81815260208120601f850160051c810160208610156125785750805b601f850160051c820191505b81811015611a3557828155600101612584565b815167ffffffffffffffff8111156125b1576125b1612254565b6125c5816125bf845461249e565b84612552565b602080601f8311600181146125f8575f84156125e15750858301515b5f19600386901b1c1916600185901b178555611a35565b5f85815260208120601f198616915b8281101561262657888601518255948401946001909101908401612607565b508582101561264357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b602080825260119082015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b604082015260600190565b6bffffffffffffffffffffffff198360601b1681525f82516126a7816014850160208701612162565b919091016014019392505050565b5f82516126c6818460208701612162565b9190910192915050565b5f602082840312156126e0575f80fd5b5051919050565b808201808211156107a2576107a26124d6565b818103818111156107a2576107a26124d6565b80820281158282048414176107a2576107a26124d6565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b5f845160206127898285838a01612162565b85519184019161279c8184848a01612162565b85549201915f906127ac8161249e565b600182811680156127c457600181146127d957612802565b60ff1984168752821515830287019450612802565b895f52855f205f5b848110156127fa578154898201529083019087016127e1565b505082870194505b50929a9950505050505050505050565b6001600160801b03828116828216039080821115612832576128326124d6565b5092915050565b6001600160801b03818116838216019080821115612832576128326124d6565b5f81612867576128676124d6565b505f190190565b634e487b7160e01b5f52601260045260245ffd5b5f826128905761289061286e565b500490565b5f826128a3576128a361286e565b500690565b634e487b7160e01b5f52603260045260245ffd5b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906128ee90830184612184565b9695505050505050565b5f60208284031215612908575f80fd5b81516115128161213256fea2646970667358221220e7d1ee59d6a472ac8347986c8a62787244910f022916d5662ea57d7fdc40fdc264736f6c63430008140033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a776f6f6f6e656e322e3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a776f6f6f6e656e322e3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a776f6f6f6e656e322e3000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610610249575f3560e01c8063851a770811610134578063b2e97362116100b3578063d7224ba011610078578063d7224ba014610658578063d89da2861461066d578063da3ef23f1461068c578063dd896a1c146106ab578063e985e9c5146106d6578063f2fde38b1461071d575f80fd5b8063b2e97362146105da578063b88d4fde146105ed578063c19d93fb1461060c578063c668286214610625578063c87b56dd14610639575f80fd5b80639858cf19116100f95780639858cf19146105535780639d76ea5814610568578063a035b1fe14610587578063a22cb4651461059c578063ac9f0222146105bb575f80fd5b8063851a7708146104c5578063876a8526146104f05780638da5cb5b1461050357806391b7f5ed1461052057806395d89b411461053f575f80fd5b806342842e0e116101cb5780635760cc5d116101905780635760cc5d146104185780635b22f9f71461044b5780636352211e146104605780636f9356ae1461047f57806370a0823114610492578063715018a6146104b1575f80fd5b806342842e0e1461038757806347998157146103a65780634f6ccce7146103bb57806350baa622146103da57806355f804b3146103f9575f80fd5b806323b872dd1161021157806323b872dd146103175780632cdcc4c9146103365780632f745c591461034b57806332cb6b0c1461036a5780633ccfd60b1461037f575f80fd5b806301ffc9a71461024d57806306fdde0314610281578063081812fc146102a2578063095ea7b3146102d957806318160ddd146102fa575b5f80fd5b348015610258575f80fd5b5061026c610267366004612147565b61073c565b60405190151581526020015b60405180910390f35b34801561028c575f80fd5b506102956107a8565b60405161027891906121af565b3480156102ad575f80fd5b506102c16102bc3660046121c1565b610838565b6040516001600160a01b039091168152602001610278565b3480156102e4575f80fd5b506102f86102f33660046121f3565b6108c5565b005b348015610305575f80fd5b505f545b604051908152602001610278565b348015610322575f80fd5b506102f861033136600461221b565b6109db565b348015610341575f80fd5b50610309600b5481565b348015610356575f80fd5b506103096103653660046121f3565b6109e6565b348015610375575f80fd5b5061030961145081565b6102f8610b4f565b348015610392575f80fd5b506102f86103a136600461221b565b610ba9565b3480156103b1575f80fd5b50610309600a5481565b3480156103c6575f80fd5b506103096103d53660046121c1565b610bc3565b3480156103e5575f80fd5b506102f86103f43660046121c1565b610c24565b348015610404575f80fd5b506102f86104133660046122db565b610cc0565b348015610423575f80fd5b506102c17f00000000000000000000000097591d4c59b35b7a3842735c5c3e3d131ab3225181565b348015610456575f80fd5b5061030961096081565b34801561046b575f80fd5b506102c161047a3660046121c1565b610cf6565b6102f861048d366004612320565b610d07565b34801561049d575f80fd5b506103096104ac36600461235f565b610f5c565b3480156104bc575f80fd5b506102f8610feb565b3480156104d0575f80fd5b506103096104df36600461235f565b60116020525f908152604090205481565b6102f86104fe3660046121c1565b611020565b34801561050e575f80fd5b506009546001600160a01b03166102c1565b34801561052b575f80fd5b506102f861053a3660046121c1565b6110c0565b34801561054a575f80fd5b506102956110ef565b34801561055e575f80fd5b50610309610af081565b348015610573575f80fd5b50600e546102c1906001600160a01b031681565b348015610592575f80fd5b50610309600f5481565b3480156105a7575f80fd5b506102f86105b6366004612385565b6110fe565b3480156105c6575f80fd5b506102f86105d53660046123ba565b6111c1565b6102f86105e83660046121c1565b6111fe565b3480156105f8575f80fd5b506102f86106073660046123d5565b611388565b348015610617575f80fd5b5060125461026c9060ff1681565b348015610630575f80fd5b506102956113c1565b348015610644575f80fd5b506102956106533660046121c1565b61144d565b348015610663575f80fd5b5061030960075481565b348015610678575f80fd5b506102f861068736600461244c565b611519565b348015610697575f80fd5b506102f86106a63660046122db565b611597565b3480156106b6575f80fd5b506103096106c536600461235f565b60106020525f908152604090205481565b3480156106e1575f80fd5b5061026c6106f0366004612476565b6001600160a01b039182165f90815260066020908152604080832093909416825291909152205460ff1690565b348015610728575f80fd5b506102f861073736600461235f565b6115cd565b5f6001600160e01b031982166380ac58cd60e01b148061076c57506001600160e01b03198216635b5e139f60e01b145b8061078757506001600160e01b0319821663780e9d6360e01b145b806107a257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107b79061249e565b80601f01602080910402602001604051908101604052809291908181526020018280546107e39061249e565b801561082e5780601f106108055761010080835404028352916020019161082e565b820191905f5260205f20905b81548152906001019060200180831161081157829003601f168201915b5050505050905090565b5f610843825f541190565b6108aa5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b505f908152600560205260409020546001600160a01b031690565b5f6108cf82610cf6565b9050806001600160a01b0316836001600160a01b03160361093d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108a1565b336001600160a01b0382161480610959575061095981336106f0565b6109cb5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108a1565b6109d6838383611665565b505050565b6109d68383836116c0565b5f6109f083610f5c565b8210610a495760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108a1565b5f80549080805b83811015610aef575f818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610aa257805192505b876001600160a01b0316836001600160a01b031603610adc57868403610ace575093506107a292505050565b83610ad8816124ea565b9450505b5080610ae7816124ea565b915050610a50565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108a1565b6009546001600160a01b03163314610b795760405162461bcd60e51b81526004016108a190612502565b6040514790339082156108fc029083905f818181858888f19350505050158015610ba5573d5f803e3d5ffd5b5050565b6109d683838360405180602001604052805f815250611388565b5f80548210610c205760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108a1565b5090565b6009546001600160a01b03163314610c4e5760405162461bcd60e51b81526004016108a190612502565b600e5460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303815f875af1158015610c9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ba59190612537565b6009546001600160a01b03163314610cea5760405162461bcd60e51b81526004016108a190612502565b600d610ba58282612597565b5f610d0082611a3d565b5192915050565b60125460ff161515600114610d4d5760405162461bcd60e51b815260206004820152600c60248201526b3737ba103cb2ba1037b832b760a11b60448201526064016108a1565b610af0600a5410610d705760405162461bcd60e51b81526004016108a190612653565b611450610d7b5f5490565b10610d985760405162461bcd60e51b81526004016108a190612653565b335f9081526010602052604090205415610dde5760405162461bcd60e51b815260206004820152600760248201526610db185a5b595960ca1b60448201526064016108a1565b5f600233610deb87611be3565b604051602001610dfc92919061267e565b60408051601f1981840301815290829052610e16916126b5565b602060405180830381855afa158015610e31573d5f803e3d5ffd5b5050506040513d601f19601f82011682018060405250810190610e5491906126d0565b604080515f81526020810180835283905260ff87169181019190915260608101859052608081018490529091506001600160a01b037f00000000000000000000000097591d4c59b35b7a3842735c5c3e3d131ab32251169060019060a0016020604051602081039080840390855afa158015610ed2573d5f803e3d5ffd5b505050602060405103516001600160a01b031614610f235760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b4b3b732b960911b60448201526064016108a1565b335f81815260106020526040902060019055610f3f9086611ce8565b84600a5f828254610f5091906126e7565b90915550505050505050565b5f6001600160a01b038216610fc75760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108a1565b506001600160a01b03165f908152600460205260409020546001600160801b031690565b6009546001600160a01b031633146110155760405162461bcd60e51b81526004016108a190612502565b61101e5f611d01565b565b61145061102b5f5490565b106110485760405162461bcd60e51b81526004016108a190612653565b335f9081526011602052604090205481111561108f5760405162461bcd60e51b815260206004820152600660248201526519985a5b195960d21b60448201526064016108a1565b335f90815260116020526040812080548392906110ad9084906126fa565b909155506110bd90503382611ce8565b50565b6009546001600160a01b031633146110ea5760405162461bcd60e51b81526004016108a190612502565b600f55565b6060600280546107b79061249e565b336001600160a01b038316036111565760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108a1565b335f8181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b031633146111eb5760405162461bcd60e51b81526004016108a190612502565b6012805460ff1916911515919091179055565b60125460ff1615156001146112445760405162461bcd60e51b815260206004820152600c60248201526b3737ba103cb2ba1037b832b760a11b60448201526064016108a1565b610960600b54106112675760405162461bcd60e51b81526004016108a190612653565b6114506112725f5490565b1061128f5760405162461bcd60e51b81526004016108a190612653565b60058111156112c95760405162461bcd60e51b815260206004820152600660248201526519985a5b195960d21b60448201526064016108a1565b600e54600f546001600160a01b03909116906323b872dd90339030906112ef908661270d565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303815f875af1158015611340573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113649190612537565b5061136f3382611ce8565b80600b5f82825461138091906126e7565b909155505050565b6113938484846116c0565b61139f84848484611d52565b6113bb5760405162461bcd60e51b81526004016108a190612724565b50505050565b600c80546113ce9061249e565b80601f01602080910402602001604051908101604052809291908181526020018280546113fa9061249e565b80156114455780601f1061141c57610100808354040283529160200191611445565b820191905f5260205f20905b81548152906001019060200180831161142857829003601f168201915b505050505081565b6060611459825f541190565b6114bd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a1565b5f6114c6611e4f565b90505f8151116114e45760405180602001604052805f815250611512565b806114ee84611be3565b600c60405160200161150293929190612777565b6040516020818303038152906040525b9392505050565b6009546001600160a01b031633146115435760405162461bcd60e51b81526004016108a190612502565b5f821161157e5760405162461bcd60e51b81526020600482015260096024820152680206e756d203c3d20360bc1b60448201526064016108a1565b6001600160a01b03165f90815260116020526040902055565b6009546001600160a01b031633146115c15760405162461bcd60e51b81526004016108a190612502565b600c610ba58282612597565b6009546001600160a01b031633146115f75760405162461bcd60e51b81526004016108a190612502565b6001600160a01b03811661165c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a1565b6110bd81611d01565b5f8281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f6116ca82611a3d565b80519091505f906001600160a01b0316336001600160a01b031614806117005750336116f584610838565b6001600160a01b0316145b806117125750815161171290336106f0565b90508061177c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108a1565b846001600160a01b0316825f01516001600160a01b0316146117ef5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108a1565b6001600160a01b0384166118535760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108a1565b6118615f84845f0151611665565b6001600160a01b0385165f9081526004602052604081208054600192906118929084906001600160801b0316612812565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386165f90815260046020526040812080546001945090926118dd91859116612839565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff42811660208085019182525f8981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556119648460016126e7565b5f818152600360205260409020549091506001600160a01b03166119f35761198c815f541190565b156119f35760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081525f878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091525f8082526020820152611a5a825f541190565b611ab95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108a1565b5f7f00000000000000000000000000000000000000000000000000000000000000648310611b1957611b0b7f0000000000000000000000000000000000000000000000000000000000000064846126fa565b611b169060016126e7565b90505b825b818110611b82575f818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b6f57949350505050565b5080611b7a81612859565b915050611b1b565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108a1565b6060815f03611c095750506040805180820190915260018152600360fc1b602082015290565b815f5b8115611c325780611c1c816124ea565b9150611c2b9050600a83612882565b9150611c0c565b5f8167ffffffffffffffff811115611c4c57611c4c612254565b6040519080825280601f01601f191660200182016040528015611c76576020820181803683370190505b5090505b8415611ce057611c8b6001836126fa565b9150611c98600a86612895565b611ca39060306126e7565b60f81b818381518110611cb857611cb86128a8565b60200101906001600160f81b03191690815f1a905350611cd9600a86612882565b9450611c7a565b949350505050565b610ba5828260405180602001604052805f815250611e5e565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f6001600160a01b0384163b15611e4457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d959033908990889088906004016128bc565b6020604051808303815f875af1925050508015611dcf575060408051601f3d908101601f19168201909252611dcc918101906128f8565b60015b611e2a573d808015611dfc576040519150601f19603f3d011682016040523d82523d5f602084013e611e01565b606091505b5080515f03611e225760405162461bcd60e51b81526004016108a190612724565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ce0565b506001949350505050565b6060600d80546107b79061249e565b5f546001600160a01b038416611ec05760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108a1565b611eca815f541190565b15611f175760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108a1565b7f0000000000000000000000000000000000000000000000000000000000000064831115611f925760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108a1565b6001600160a01b0384165f908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fed908790612839565b6001600160801b0316815260200185836020015161200b9190612839565b6001600160801b039081169091526001600160a01b038088165f8181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121285760405182906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120ec5f888488611d52565b6121085760405162461bcd60e51b81526004016108a190612724565b81612112816124ea565b9250508080612120906124ea565b9150506120a1565b505f819055611a35565b6001600160e01b0319811681146110bd575f80fd5b5f60208284031215612157575f80fd5b813561151281612132565b5f5b8381101561217c578181015183820152602001612164565b50505f910152565b5f815180845261219b816020860160208601612162565b601f01601f19169290920160200192915050565b602081525f6115126020830184612184565b5f602082840312156121d1575f80fd5b5035919050565b80356001600160a01b03811681146121ee575f80fd5b919050565b5f8060408385031215612204575f80fd5b61220d836121d8565b946020939093013593505050565b5f805f6060848603121561222d575f80fd5b612236846121d8565b9250612244602085016121d8565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561228257612282612254565b604051601f8501601f19908116603f011681019082821181831017156122aa576122aa612254565b816040528093508581528686860111156122c2575f80fd5b858560208301375f602087830101525050509392505050565b5f602082840312156122eb575f80fd5b813567ffffffffffffffff811115612301575f80fd5b8201601f81018413612311575f80fd5b611ce084823560208401612268565b5f805f8060808587031215612333575f80fd5b84359350602085013560ff8116811461234a575f80fd5b93969395505050506040820135916060013590565b5f6020828403121561236f575f80fd5b611512826121d8565b80151581146110bd575f80fd5b5f8060408385031215612396575f80fd5b61239f836121d8565b915060208301356123af81612378565b809150509250929050565b5f602082840312156123ca575f80fd5b813561151281612378565b5f805f80608085870312156123e8575f80fd5b6123f1856121d8565b93506123ff602086016121d8565b925060408501359150606085013567ffffffffffffffff811115612421575f80fd5b8501601f81018713612431575f80fd5b61244087823560208401612268565b91505092959194509250565b5f806040838503121561245d575f80fd5b8235915061246d602084016121d8565b90509250929050565b5f8060408385031215612487575f80fd5b612490836121d8565b915061246d602084016121d8565b600181811c908216806124b257607f821691505b6020821081036124d057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b5f600182016124fb576124fb6124d6565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215612547575f80fd5b815161151281612378565b601f8211156109d6575f81815260208120601f850160051c810160208610156125785750805b601f850160051c820191505b81811015611a3557828155600101612584565b815167ffffffffffffffff8111156125b1576125b1612254565b6125c5816125bf845461249e565b84612552565b602080601f8311600181146125f8575f84156125e15750858301515b5f19600386901b1c1916600185901b178555611a35565b5f85815260208120601f198616915b8281101561262657888601518255948401946001909101908401612607565b508582101561264357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b602080825260119082015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b604082015260600190565b6bffffffffffffffffffffffff198360601b1681525f82516126a7816014850160208701612162565b919091016014019392505050565b5f82516126c6818460208701612162565b9190910192915050565b5f602082840312156126e0575f80fd5b5051919050565b808201808211156107a2576107a26124d6565b818103818111156107a2576107a26124d6565b80820281158282048414176107a2576107a26124d6565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b5f845160206127898285838a01612162565b85519184019161279c8184848a01612162565b85549201915f906127ac8161249e565b600182811680156127c457600181146127d957612802565b60ff1984168752821515830287019450612802565b895f52855f205f5b848110156127fa578154898201529083019087016127e1565b505082870194505b50929a9950505050505050505050565b6001600160801b03828116828216039080821115612832576128326124d6565b5092915050565b6001600160801b03818116838216019080821115612832576128326124d6565b5f81612867576128676124d6565b505f190190565b634e487b7160e01b5f52601260045260245ffd5b5f826128905761289061286e565b500490565b5f826128a3576128a361286e565b500690565b634e487b7160e01b5f52603260045260245ffd5b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906128ee90830184612184565b9695505050505050565b5f60208284031215612908575f80fd5b81516115128161213256fea2646970667358221220e7d1ee59d6a472ac8347986c8a62787244910f022916d5662ea57d7fdc40fdc264736f6c63430008140033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a776f6f6f6e656e322e3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a776f6f6f6e656e322e3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a776f6f6f6e656e322e3000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): wooonen2.0
Arg [1] : symbol (string): wooonen2.0
Arg [2] : baseURI (string): wooonen2.0

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 776f6f6f6e656e322e3000000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 776f6f6f6e656e322e3000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 776f6f6f6e656e322e3000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

367:3505:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3826:358:3;;;;;;;;;;-1:-1:-1;3826:358:3;;;;;:::i;:::-;;:::i;:::-;;;565:14:13;;558:22;540:41;;528:2;513:18;3826:358:3;;;;;;;;5490:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6955:200::-;;;;;;;;;;-1:-1:-1;6955:200:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:13;;;1679:51;;1667:2;1652:18;6955:200:3;1533:203:13;6533:369:3;;;;;;;;;;-1:-1:-1;6533:369:3;;;;;:::i;:::-;;:::i;:::-;;2432:92;;;;;;;;;;-1:-1:-1;2485:7:3;2507:12;2432:92;;;2324:25:13;;;2312:2;2297:18;2432:92:3;2178:177:13;7773:136:3;;;;;;;;;;-1:-1:-1;7773:136:3;;;;;:::i;:::-;;:::i;583:23:12:-;;;;;;;;;;;;;;;;3046:721:3;;;;;;;;;;-1:-1:-1;3046:721:3;;;;;:::i;:::-;;:::i;459:41:12:-;;;;;;;;;;;;496:4;459:41;;3597:148;;;:::i;7967:151:3:-;;;;;;;;;;-1:-1:-1;7967:151:3;;;;;:::i;:::-;;:::i;506:23:12:-;;;;;;;;;;;;;;;;2588:174:3;;;;;;;;;;-1:-1:-1;2588:174:3;;;;;:::i;:::-;;:::i;3750:120:12:-;;;;;;;;;;-1:-1:-1;3750:120:12;;;;;:::i;:::-;;:::i;2780:92::-;;;;;;;;;;-1:-1:-1;2780:92:12;;;;;:::i;:::-;;:::i;966:32::-;;;;;;;;;;;;;;;612:42;;;;;;;;;;;;650:4;612:42;;5320:116:3;;;;;;;;;;-1:-1:-1;5320:116:3;;;;;:::i;:::-;;:::i;1372:558:12:-;;;;;;:::i;:::-;;:::i;4235:208:3:-;;;;;;;;;;-1:-1:-1;4235:208:3;;;;;:::i;:::-;;:::i;1598:92:9:-;;;;;;;;;;;;;:::i;908:52:12:-;;;;;;;;;;-1:-1:-1;908:52:12;;;;;:::i;:::-;;;;;;;;;;;;;;2347:271;;;;;;:::i;:::-;;:::i;966:85:9:-;;;;;;;;;;-1:-1:-1;1038:6:9;;-1:-1:-1;;;;;1038:6:9;966:85;;3427:81:12;;;;;;;;;;-1:-1:-1;3427:81:12;;;;;:::i;:::-;;:::i;5638:96:3:-;;;;;;;;;;;;;:::i;535:42:12:-;;;;;;;;;;;;573:4;535:42;;742:73;;;;;;;;;;-1:-1:-1;742:73:12;;;;-1:-1:-1;;;;;742:73:12;;;821:32;;;;;;;;;;;;;;;;7214:269:3;;;;;;;;;;-1:-1:-1;7214:269:3;;;;;:::i;:::-;;:::i;3513:78:12:-;;;;;;;;;;-1:-1:-1;3513:78:12;;;;;:::i;:::-;;:::i;1940:401::-;;;;;;:::i;:::-;;:::i;8176:300:3:-;;;;;;;;;;-1:-1:-1;8176:300:3;;;;;:::i;:::-;;:::i;1004:25:12:-;;;;;;;;;;-1:-1:-1;1004:25:12;;;;;;;;660:37;;;;;;;;;;;;;:::i;2878:413::-;;;;;;;;;;-1:-1:-1;2878:413:12;;;;;:::i;:::-;;:::i;12446:43:3:-;;;;;;;;;;;;;;;;2624:150:12;;;;;;;;;;-1:-1:-1;2624:150:12;;;;;:::i;:::-;;:::i;3296:126::-;;;;;;;;;;-1:-1:-1;3296:126:12;;;;;:::i;:::-;;:::i;859:43::-;;;;;;;;;;-1:-1:-1;859:43:12;;;;;:::i;:::-;;;;;;;;;;;;;;7541:178:3;;;;;;;;;;-1:-1:-1;7541:178:3;;;;;:::i;:::-;-1:-1:-1;;;;;7679:25:3;;;7658:4;7679:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7541:178;1839:189:9;;;;;;;;;;-1:-1:-1;1839:189:9;;;;;:::i;:::-;;:::i;3826:358:3:-;3948:4;-1:-1:-1;;;;;;3975:40:3;;-1:-1:-1;;;3975:40:3;;:98;;-1:-1:-1;;;;;;;4025:48:3;;-1:-1:-1;;;4025:48:3;3975:98;:158;;;-1:-1:-1;;;;;;;4083:50:3;;-1:-1:-1;;;4083:50:3;3975:158;:204;;;-1:-1:-1;;;;;;;;;;871:40:2;;;4143:36:3;3962:217;3826:358;-1:-1:-1;;3826:358:3:o;5490:92::-;5544:13;5572:5;5565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5490:92;:::o;6955:200::-;7023:7;7046:16;7054:7;8763:4;8792:12;-1:-1:-1;8782:22:3;8706:103;7046:16;7038:74;;;;-1:-1:-1;;;7038:74:3;;7060:2:13;7038:74:3;;;7042:21:13;7099:2;7079:18;;;7072:30;7138:34;7118:18;;;7111:62;-1:-1:-1;;;7189:18:13;;;7182:43;7242:19;;7038:74:3;;;;;;;;;-1:-1:-1;7126:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7126:24:3;;6955:200::o;6533:369::-;6601:13;6617:24;6633:7;6617:15;:24::i;:::-;6601:40;;6661:5;-1:-1:-1;;;;;6655:11:3;:2;-1:-1:-1;;;;;6655:11:3;;6647:58;;;;-1:-1:-1;;;6647:58:3;;7474:2:13;6647:58:3;;;7456:21:13;7513:2;7493:18;;;7486:30;7552:34;7532:18;;;7525:62;-1:-1:-1;;;7603:18:13;;;7596:32;7645:19;;6647:58:3;7272:398:13;6647:58:3;665:10:1;-1:-1:-1;;;;;6727:21:3;;;;:62;;-1:-1:-1;6752:37:3;6769:5;665:10:1;7541:178:3;:::i;6752:37::-;6712:150;;;;-1:-1:-1;;;6712:150:3;;7877:2:13;6712:150:3;;;7859:21:13;7916:2;7896:18;;;7889:30;7955:34;7935:18;;;7928:62;8026:27;8006:18;;;7999:55;8071:19;;6712:150:3;7675:421:13;6712:150:3;6869:28;6878:2;6882:7;6891:5;6869:8;:28::i;:::-;6595:307;6533:369;;:::o;7773:136::-;7876:28;7886:4;7892:2;7896:7;7876:9;:28::i;3046:721::-;3151:7;3184:16;3194:5;3184:9;:16::i;:::-;3176:5;:24;3168:71;;;;-1:-1:-1;;;3168:71:3;;8303:2:13;3168:71:3;;;8285:21:13;8342:2;8322:18;;;8315:30;8381:34;8361:18;;;8354:62;-1:-1:-1;;;8432:18:13;;;8425:32;8474:19;;3168:71:3;8101:398:13;3168:71:3;3245:22;2507:12;;;3245:22;;3362:339;3386:14;3382:1;:18;3362:339;;;3415:31;3449:14;;;:11;:14;;;;;;;;;3415:48;;;;;;;;;-1:-1:-1;;;;;3415:48:3;;;;;-1:-1:-1;;;3415:48:3;;;;;;;;;;;;3475:28;3471:87;;3535:14;;;-1:-1:-1;3471:87:3;3590:5;-1:-1:-1;;;;;3569:26:3;:17;-1:-1:-1;;;;;3569:26:3;;3565:130;;3626:5;3611:11;:20;3607:57;;-1:-1:-1;3652:1:3;-1:-1:-1;3645:8:3;;-1:-1:-1;;;3645:8:3;3607:57;3673:13;;;;:::i;:::-;;;;3565:130;-1:-1:-1;3402:3:3;;;;:::i;:::-;;;;3362:339;;;-1:-1:-1;3706:56:3;;-1:-1:-1;;;3706:56:3;;8978:2:13;3706:56:3;;;8960:21:13;9017:2;8997:18;;;8990:30;9056:34;9036:18;;;9029:62;-1:-1:-1;;;9107:18:13;;;9100:44;9161:19;;3706:56:3;8776:410:13;3597:148:12;1038:6:9;;-1:-1:-1;;;;;1038:6:9;665:10:1;1178:23:9;1170:68;;;;-1:-1:-1;;;1170:68:9;;;;;;;:::i;:::-;3701:37:12::1;::::0;3670:21:::1;::::0;3709:10:::1;::::0;3701:37;::::1;;;::::0;3670:21;;3652:15:::1;3701:37:::0;3652:15;3701:37;3670:21;3709:10;3701:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;3642:103;3597:148::o:0;7967:151:3:-;8074:39;8091:4;8097:2;8101:7;8074:39;;;;;;;;;;;;:16;:39::i;2588:174::-;2655:7;2507:12;;2678:5;:21;2670:69;;;;-1:-1:-1;;;2670:69:3;;9754:2:13;2670:69:3;;;9736:21:13;9793:2;9773:18;;;9766:30;9832:34;9812:18;;;9805:62;-1:-1:-1;;;9883:18:13;;;9876:33;9926:19;;2670:69:3;9552:399:13;2670:69:3;-1:-1:-1;2752:5:3;2588:174::o;3750:120:12:-;1038:6:9;;-1:-1:-1;;;;;1038:6:9;665:10:1;1178:23:9;1170:68;;;;-1:-1:-1;;;1170:68:9;;;;;;;:::i;:::-;3822:12:12::1;::::0;3815:48:::1;::::0;-1:-1:-1;;;3815:48:12;;3845:10:::1;3815:48;::::0;::::1;10130:51:13::0;10197:18;;;10190:34;;;-1:-1:-1;;;;;3822:12:12;;::::1;::::0;3815:29:::1;::::0;10103:18:13;;3815:48:12::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;2780:92::-:0;1038:6:9;;-1:-1:-1;;;;;1038:6:9;665:10:1;1178:23:9;1170:68;;;;-1:-1:-1;;;1170:68:9;;;;;;;:::i;:::-;2846:13:12::1;:19;2862:3:::0;2846:13;:19:::1;:::i;5320:116:3:-:0;5384:7;5406:20;5418:7;5406:11;:20::i;:::-;:25;;5320:116;-1:-1:-1;;5320:116:3:o;1372:558:12:-;1469:5;;;;:13;;:5;:13;1461:38;;;;-1:-1:-1;;;1461:38:12;;12891:2:13;1461:38:12;;;12873:21:13;12930:2;12910:18;;;12903:30;-1:-1:-1;;;12949:18:13;;;12942:42;13001:18;;1461:38:12;12689:336:13;1461:38:12;573:4;1517;;:18;1509:48;;;;-1:-1:-1;;;1509:48:12;;;;;;;:::i;:::-;496:4;1575:13;2485:7:3;2507:12;;2432:92;1575:13:12;:26;1567:56;;;;-1:-1:-1;;;1567:56:12;;;;;;;:::i;:::-;1650:10;1641:20;;;;:8;:20;;;;;;:25;1633:45;;;;-1:-1:-1;;;1633:45:12;;13578:2:13;1633:45:12;;;13560:21:13;13617:1;13597:18;;;13590:29;-1:-1:-1;;;13635:18:13;;;13628:37;13682:18;;1633:45:12;13376:330:13;1633:45:12;1688:14;1705:52;1729:10;1741:14;:3;:12;:14::i;:::-;1712:44;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1712:44:12;;;;;;;;;;1705:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1775:26;;;;;;;;;;;;14834:25:13;;;14907:4;14895:17;;14875:18;;;14868:45;;;;14929:18;;;14922:34;;;14972:18;;;14965:34;;;1688:69:12;;-1:-1:-1;;;;;;1805:7:12;1775:37;;:26;;14806:19:13;;1775:26:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1775:37:12;;1767:64;;;;-1:-1:-1;;;1767:64:12;;15212:2:13;1767:64:12;;;15194:21:13;15251:2;15231:18;;;15224:30;-1:-1:-1;;;15270:18:13;;;15263:44;15324:18;;1767:64:12;15010:338:13;1767:64:12;1850:10;1841:20;;;;:8;:20;;;;;1864:1;1841:24;;1875:26;;1897:3;1875:9;:26::i;:::-;1919:3;1911:4;;:11;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;1372:558:12:o;4235:208:3:-;4299:7;-1:-1:-1;;;;;4322:19:3;;4314:75;;;;-1:-1:-1;;;4314:75:3;;15685:2:13;4314:75:3;;;15667:21:13;15724:2;15704:18;;;15697:30;15763:34;15743:18;;;15736:62;-1:-1:-1;;;15814:18:13;;;15807:41;15865:19;;4314:75:3;15483:407:13;4314:75:3;-1:-1:-1;;;;;;4410:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4410:27:3;;4235:208::o;1598:92:9:-;1038:6;;-1:-1:-1;;;;;1038:6:9;665:10:1;1178:23:9;1170:68;;;;-1:-1:-1;;;1170:68:9;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;2347:271:12:-;496:4;2416:13;2485:7:3;2507:12;;2432:92;2416:13:12;:26;2408:56;;;;-1:-1:-1;;;2408:56:12;;;;;;;:::i;:::-;2500:10;2482:29;;;;:17;:29;;;;;;:36;-1:-1:-1;2482:36:12;2474:55;;;;-1:-1:-1;;;2474:55:12;;16097:2:13;2474:55:12;;;16079:21:13;16136:1;16116:18;;;16109:29;-1:-1:-1;;;16154:18:13;;;16147:36;16200:18;;2474:55:12;15895:329:13;2474:55:12;2557:10;2539:29;;;;:17;:29;;;;;:36;;2572:3;;2539:29;:36;;2572:3;;2539:36;:::i;:::-;;;;-1:-1:-1;2585:26:12;;-1:-1:-1;2595:10:12;2607:3;2585:9;:26::i;:::-;2347:271;:::o;3427:81::-;1038:6:9;;-1:-1:-1;;;;;1038:6:9;665:10:1;1178:23:9;1170:68;;;;-1:-1:-1;;;1170:68:9;;;;;;;:::i;:::-;3487:5:12::1;:14:::0;3427:81::o;5638:96:3:-;5694:13;5722:7;5715:14;;;;;:::i;7214:269::-;665:10:1;-1:-1:-1;;;;;7304:24:3;;;7296:63;;;;-1:-1:-1;;;7296:63:3;;16564:2:13;7296:63:3;;;16546:21:13;16603:2;16583:18;;;16576:30;16642:28;16622:18;;;16615:56;16688:18;;7296:63:3;16362:350:13;7296:63:3;665:10:1;7366:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7366:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;7366:53:3;;;;;;;;;;7430:48;;540:41:13;;;7366:42:3;;665:10:1;7430:48:3;;513:18:13;7430:48:3;;;;;;;7214:269;;:::o;3513:78:12:-;1038:6:9;;-1:-1:-1;;;;;1038:6:9;665:10:1;1178:23:9;1170:68;;;;-1:-1:-1;;;1170:68:9;;;;;;;:::i;:::-;3570:5:12::1;:14:::0;;-1:-1:-1;;3570:14:12::1;::::0;::::1;;::::0;;;::::1;::::0;;3513:78::o;1940:401::-;2006:5;;;;:13;;:5;:13;1998:38;;;;-1:-1:-1;;;1998:38:12;;12891:2:13;1998:38:12;;;12873:21:13;12930:2;12910:18;;;12903:30;-1:-1:-1;;;12949:18:13;;;12942:42;13001:18;;1998:38:12;12689:336:13;1998:38:12;650:4;2054;;:18;2046:48;;;;-1:-1:-1;;;2046:48:12;;;;;;;:::i;:::-;496:4;2112:13;2485:7:3;2507:12;;2432:92;2112:13:12;:26;2104:56;;;;-1:-1:-1;;;2104:56:12;;;;;;;:::i;:::-;2185:1;2178:3;:8;;2170:27;;;;-1:-1:-1;;;2170:27:12;;16097:2:13;2170:27:12;;;16079:21:13;16136:1;16116:18;;;16109:29;-1:-1:-1;;;16154:18:13;;;16147:36;16200:18;;2170:27:12;15895:329:13;2170:27:12;2214:12;;2270:5;;-1:-1:-1;;;;;2214:12:12;;;;2207:33;;2241:10;;2260:4;;2266:9;;:3;:9;:::i;:::-;2207:69;;-1:-1:-1;;;;;;2207:69:12;;;;;;;-1:-1:-1;;;;;17148:15:13;;;2207:69:12;;;17130:34:13;17200:15;;;;17180:18;;;17173:43;17232:18;;;17225:34;17065:18;;2207:69:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2286:26;2296:10;2308:3;2286:9;:26::i;:::-;2330:3;2322:4;;:11;;;;;;;:::i;:::-;;;;-1:-1:-1;;;1940:401:12:o;8176:300:3:-;8307:28;8317:4;8323:2;8327:7;8307:9;:28::i;:::-;8356:48;8379:4;8385:2;8389:7;8398:5;8356:22;:48::i;:::-;8341:130;;;;-1:-1:-1;;;8341:130:3;;;;;;;:::i;:::-;8176:300;;;;:::o;660:37:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2878:413::-;2971:13;3009:16;3017:7;8763:4:3;8792:12;-1:-1:-1;8782:22:3;8706:103;3009:16:12;2994:94;;;;-1:-1:-1;;;2994:94:12;;17892:2:13;2994:94:12;;;17874:21:13;17931:2;17911:18;;;17904:30;17970:34;17950:18;;;17943:62;-1:-1:-1;;;18021:18:13;;;18014:45;18076:19;;2994:94:12;17690:411:13;2994:94:12;3101:28;3132:10;:8;:10::i;:::-;3101:41;;3186:1;3161:14;3155:28;:32;:131;;;;;;;;;;;;;;;;;3222:14;3238:18;:7;:16;:18::i;:::-;3258:13;3205:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3155:131;3148:138;2878:413;-1:-1:-1;;;2878:413:12:o;2624:150::-;1038:6:9;;-1:-1:-1;;;;;1038:6:9;665:10:1;1178:23:9;1170:68;;;;-1:-1:-1;;;1170:68:9;;;;;;;:::i;:::-;2713:1:12::1;2707:3;:7;2699:29;;;::::0;-1:-1:-1;;;2699:29:12;;19569:2:13;2699:29:12::1;::::0;::::1;19551:21:13::0;19608:1;19588:18;;;19581:29;-1:-1:-1;;;19626:18:13;;;19619:39;19675:18;;2699:29:12::1;19367:332:13::0;2699:29:12::1;-1:-1:-1::0;;;;;2738:23:12::1;;::::0;;;:17:::1;:23;::::0;;;;:29;2624:150::o;3296:126::-;1038:6:9;;-1:-1:-1;;;;;1038:6:9;665:10:1;1178:23:9;1170:68;;;;-1:-1:-1;;;1170:68:9;;;;;;;:::i;:::-;3382:13:12::1;:33;3398:17:::0;3382:13;:33:::1;:::i;1839:189:9:-:0;1038:6;;-1:-1:-1;;;;;1038:6:9;665:10:1;1178:23:9;1170:68;;;;-1:-1:-1;;;1170:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:9;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:9;;19906:2:13;1919:73:9::1;::::0;::::1;19888:21:13::0;19945:2;19925:18;;;19918:30;19984:34;19964:18;;;19957:62;-1:-1:-1;;;20035:18:13;;;20028:36;20081:19;;1919:73:9::1;19704:402:13::0;1919:73:9::1;2002:19;2012:8;2002:9;:19::i;12277:165:3:-:0;12369:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12369:29:3;-1:-1:-1;;;;;12369:29:3;;;;;;;;;12409:28;;12369:24;;12409:28;;;;;;;12277:165;;;:::o;10694:1484::-;10786:35;10824:20;10836:7;10824:11;:20::i;:::-;10893:18;;10786:58;;-1:-1:-1;10851:22:3;;-1:-1:-1;;;;;10877:34:3;665:10:1;-1:-1:-1;;;;;10877:34:3;;:80;;;-1:-1:-1;665:10:1;10921:20:3;10933:7;10921:11;:20::i;:::-;-1:-1:-1;;;;;10921:36:3;;10877:80;:140;;;-1:-1:-1;10984:18:3;;10967:50;;665:10:1;7541:178:3;:::i;10967:50::-;10851:167;;11040:17;11025:98;;;;-1:-1:-1;;;11025:98:3;;20313:2:13;11025:98:3;;;20295:21:13;20352:2;20332:18;;;20325:30;20391:34;20371:18;;;20364:62;-1:-1:-1;;;20442:18:13;;;20435:48;20500:19;;11025:98:3;20111:414:13;11025:98:3;11167:4;-1:-1:-1;;;;;11145:26:3;:13;:18;;;-1:-1:-1;;;;;11145:26:3;;11130:95;;;;-1:-1:-1;;;11130:95:3;;20732:2:13;11130:95:3;;;20714:21:13;20771:2;20751:18;;;20744:30;20810:34;20790:18;;;20783:62;-1:-1:-1;;;20861:18:13;;;20854:36;20907:19;;11130:95:3;20530:402:13;11130:95:3;-1:-1:-1;;;;;11239:16:3;;11231:66;;;;-1:-1:-1;;;11231:66:3;;21139:2:13;11231:66:3;;;21121:21:13;21178:2;21158:18;;;21151:30;21217:34;21197:18;;;21190:62;-1:-1:-1;;;21268:18:13;;;21261:35;21313:19;;11231:66:3;20937:401:13;11231:66:3;11401:49;11418:1;11422:7;11431:13;:18;;;11401:8;:49::i;:::-;-1:-1:-1;;;;;11457:18:3;;;;;;:12;:18;;;;;:31;;11487:1;;11457:18;:31;;11487:1;;-1:-1:-1;;;;;11457:31:3;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11457:31:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;11494:16:3;;-1:-1:-1;11494:16:3;;;:12;:16;;;;;:29;;-1:-1:-1;;;11494:16:3;;:29;;-1:-1:-1;;11494:29:3;;:::i;:::-;;;-1:-1:-1;;;;;11494:29:3;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11552:43:3;;;;;;;;-1:-1:-1;;;;;11552:43:3;;;;;;11578:15;11552:43;;;;;;;;;-1:-1:-1;11529:20:3;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11529:66:3;-1:-1:-1;;;;;;11529:66:3;;;;;;;;;;;11841:11;11541:7;-1:-1:-1;11841:11:3;:::i;:::-;11903:1;11862:24;;;:11;:24;;;;;:29;11819:33;;-1:-1:-1;;;;;;11862:29:3;11858:229;;11919:20;11927:11;8763:4;8792:12;-1:-1:-1;8782:22:3;8706:103;11919:20;11915:166;;;11978:94;;;;;;;;12004:18;;-1:-1:-1;;;;;11978:94:3;;;;;;12034:28;;;;11978:94;;;;;;;;;;-1:-1:-1;11951:24:3;;;:11;:24;;;;;;;:121;;;;;;;;;-1:-1:-1;;;11951:121:3;-1:-1:-1;;;;;;11951:121:3;;;;;;;;;;;;11915:166;12117:7;12113:2;-1:-1:-1;;;;;12098:27:3;12107:4;-1:-1:-1;;;;;12098:27:3;;;;;;;;;;;12131:42;10780:1398;;;10694:1484;;;:::o;4685:586::-;-1:-1:-1;;;;;;;;;;;;;;;;;4797:16:3;4805:7;8763:4;8792:12;-1:-1:-1;8782:22:3;8706:103;4797:16;4789:71;;;;-1:-1:-1;;;4789:71:3;;21952:2:13;4789:71:3;;;21934:21:13;21991:2;21971:18;;;21964:30;22030:34;22010:18;;;22003:62;-1:-1:-1;;;22081:18:13;;;22074:40;22131:19;;4789:71:3;21750:406:13;4789:71:3;4867:26;4914:12;4903:7;:23;4899:91;;4957:22;4967:12;4957:7;:22;:::i;:::-;:26;;4982:1;4957:26;:::i;:::-;4936:47;;4899:91;5016:7;4996:207;5033:18;5025:4;:26;4996:207;;5069:31;5103:17;;;:11;:17;;;;;;;;;5069:51;;;;;;;;;-1:-1:-1;;;;;5069:51:3;;;;;-1:-1:-1;;;5069:51:3;;;;;;;;;;;;5132:28;5128:69;;5179:9;4685:586;-1:-1:-1;;;;4685:586:3:o;5128:69::-;-1:-1:-1;5053:6:3;;;;:::i;:::-;;;;4996:207;;;-1:-1:-1;5209:57:3;;-1:-1:-1;;;5209:57:3;;22504:2:13;5209:57:3;;;22486:21:13;22543:2;22523:18;;;22516:30;22582:34;22562:18;;;22555:62;-1:-1:-1;;;22633:18:13;;;22626:45;22688:19;;5209:57:3;22302:411:13;275:703:11;331:13;548:5;557:1;548:10;544:51;;-1:-1:-1;;574:10:11;;;;;;;;;;;;-1:-1:-1;;;574:10:11;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:11;;-1:-1:-1;720:2:11;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:11;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:11;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:11;;;;;;;;-1:-1:-1;919:11:11;928:2;919:11;;:::i;:::-;;;791:150;;;964:6;275:703;-1:-1:-1;;;;275:703:11:o;8813:96:3:-;8877:27;8887:2;8891:8;8877:27;;;;;;;;;;;;:9;:27::i;2034:169:9:-;2108:6;;;-1:-1:-1;;;;;2124:17:9;;;-1:-1:-1;;;;;;2124:17:9;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2079:124;2034:169;:::o;13947:667:3:-;14079:4;-1:-1:-1;;;;;14095:13:3;;1034:20:0;1080:8;14091:519:3;;14132:72;;-1:-1:-1;;;14132:72:3;;-1:-1:-1;;;;;14132:36:3;;;;;:72;;665:10:1;;14183:4:3;;14189:7;;14198:5;;14132:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14132:72:3;;;;;;;;-1:-1:-1;;14132:72:3;;;;;;;;;;;;:::i;:::-;;;14120:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14359:6;:13;14376:1;14359:18;14355:209;;14391:61;;-1:-1:-1;;;14391:61:3;;;;;;;:::i;14355:209::-;14534:6;14528:13;14519:6;14515:2;14511:15;14504:38;14120:452;-1:-1:-1;;;;;;14252:55:3;-1:-1:-1;;;14252:55:3;;-1:-1:-1;14245:62:3;;14091:519;-1:-1:-1;14599:4:3;13947:667;;;;;;:::o;1253:112:12:-;1313:13;1345;1338:20;;;;;:::i;9235:1239:3:-;9335:20;9358:12;-1:-1:-1;;;;;9384:16:3;;9376:62;;;;-1:-1:-1;;;9376:62:3;;24174:2:13;9376:62:3;;;24156:21:13;24213:2;24193:18;;;24186:30;24252:34;24232:18;;;24225:62;-1:-1:-1;;;24303:18:13;;;24296:31;24344:19;;9376:62:3;23972:397:13;9376:62:3;9573:21;9581:12;8763:4;8792:12;-1:-1:-1;8782:22:3;8706:103;9573:21;9572:22;9564:64;;;;-1:-1:-1;;;9564:64:3;;24576:2:13;9564:64:3;;;24558:21:13;24615:2;24595:18;;;24588:30;24654:31;24634:18;;;24627:59;24703:18;;9564:64:3;24374:353:13;9564:64:3;9654:12;9642:8;:24;;9634:71;;;;-1:-1:-1;;;9634:71:3;;24934:2:13;9634:71:3;;;24916:21:13;24973:2;24953:18;;;24946:30;25012:34;24992:18;;;24985:62;-1:-1:-1;;;25063:18:13;;;25056:32;25105:19;;9634:71:3;24732:398:13;9634:71:3;-1:-1:-1;;;;;9813:16:3;;9780:30;9813:16;;;:12;:16;;;;;;;;;9780:49;;;;;;;;;-1:-1:-1;;;;;9780:49:3;;;;;-1:-1:-1;;;9780:49:3;;;;;;;;;;;9854:116;;;;;;;;9873:19;;9780:49;;9854:116;;;9873:39;;9903:8;;9873:39;:::i;:::-;-1:-1:-1;;;;;9854:116:3;;;;;9955:8;9920:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;9854:116:3;;;;;;-1:-1:-1;;;;;9835:16:3;;;;;;;:12;:16;;;;;;;;:135;;;;;;;;-1:-1:-1;;;9835:135:3;;;;;;;;;;;;10004:43;;;;;;;;;;;10030:15;10004:43;;;;;;;;9976:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;9976:71:3;-1:-1:-1;;;;;;9976:71:3;;;;;;;;;;;;;;;;;;9988:12;;10096:274;10120:8;10116:1;:12;10096:274;;;10148:38;;10173:12;;-1:-1:-1;;;;;10148:38:3;;;10165:1;;10148:38;;10165:1;;10148:38;10211:59;10242:1;10246:2;10250:12;10264:5;10211:22;:59::i;:::-;10194:147;;;;-1:-1:-1;;;10194:147:3;;;;;;;:::i;:::-;10349:14;;;;:::i;:::-;;;;10130:3;;;;;:::i;:::-;;;;10096:274;;;-1:-1:-1;10376:12:3;:27;;;10409:60;8176:300;14:131:13;-1:-1:-1;;;;;;88:32:13;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:13;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:13;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:13:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:13;;1348:180;-1:-1:-1;1348:180:13:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:13;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:13:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:127::-;2754:10;2749:3;2745:20;2742:1;2735:31;2785:4;2782:1;2775:15;2809:4;2806:1;2799:15;2825:632;2890:5;2920:18;2961:2;2953:6;2950:14;2947:40;;;2967:18;;:::i;:::-;3042:2;3036:9;3010:2;3096:15;;-1:-1:-1;;3092:24:13;;;3118:2;3088:33;3084:42;3072:55;;;3142:18;;;3162:22;;;3139:46;3136:72;;;3188:18;;:::i;:::-;3228:10;3224:2;3217:22;3257:6;3248:15;;3287:6;3279;3272:22;3327:3;3318:6;3313:3;3309:16;3306:25;3303:45;;;3344:1;3341;3334:12;3303:45;3394:6;3389:3;3382:4;3374:6;3370:17;3357:44;3449:1;3442:4;3433:6;3425;3421:19;3417:30;3410:41;;;;2825:632;;;;;:::o;3462:451::-;3531:6;3584:2;3572:9;3563:7;3559:23;3555:32;3552:52;;;3600:1;3597;3590:12;3552:52;3640:9;3627:23;3673:18;3665:6;3662:30;3659:50;;;3705:1;3702;3695:12;3659:50;3728:22;;3781:4;3773:13;;3769:27;-1:-1:-1;3759:55:13;;3810:1;3807;3800:12;3759:55;3833:74;3899:7;3894:2;3881:16;3876:2;3872;3868:11;3833:74;:::i;3918:474::-;4002:6;4010;4018;4026;4079:3;4067:9;4058:7;4054:23;4050:33;4047:53;;;4096:1;4093;4086:12;4047:53;4132:9;4119:23;4109:33;;4192:2;4181:9;4177:18;4164:32;4236:4;4229:5;4225:16;4218:5;4215:27;4205:55;;4256:1;4253;4246:12;4205:55;3918:474;;4279:5;;-1:-1:-1;;;;4331:2:13;4316:18;;4303:32;;4382:2;4367:18;4354:32;;3918:474::o;4397:186::-;4456:6;4509:2;4497:9;4488:7;4484:23;4480:32;4477:52;;;4525:1;4522;4515:12;4477:52;4548:29;4567:9;4548:29;:::i;4588:118::-;4674:5;4667:13;4660:21;4653:5;4650:32;4640:60;;4696:1;4693;4686:12;4711:315;4776:6;4784;4837:2;4825:9;4816:7;4812:23;4808:32;4805:52;;;4853:1;4850;4843:12;4805:52;4876:29;4895:9;4876:29;:::i;:::-;4866:39;;4955:2;4944:9;4940:18;4927:32;4968:28;4990:5;4968:28;:::i;:::-;5015:5;5005:15;;;4711:315;;;;;:::o;5031:241::-;5087:6;5140:2;5128:9;5119:7;5115:23;5111:32;5108:52;;;5156:1;5153;5146:12;5108:52;5195:9;5182:23;5214:28;5236:5;5214:28;:::i;5277:667::-;5372:6;5380;5388;5396;5449:3;5437:9;5428:7;5424:23;5420:33;5417:53;;;5466:1;5463;5456:12;5417:53;5489:29;5508:9;5489:29;:::i;:::-;5479:39;;5537:38;5571:2;5560:9;5556:18;5537:38;:::i;:::-;5527:48;;5622:2;5611:9;5607:18;5594:32;5584:42;;5677:2;5666:9;5662:18;5649:32;5704:18;5696:6;5693:30;5690:50;;;5736:1;5733;5726:12;5690:50;5759:22;;5812:4;5804:13;;5800:27;-1:-1:-1;5790:55:13;;5841:1;5838;5831:12;5790:55;5864:74;5930:7;5925:2;5912:16;5907:2;5903;5899:11;5864:74;:::i;:::-;5854:84;;;5277:667;;;;;;;:::o;5949:254::-;6017:6;6025;6078:2;6066:9;6057:7;6053:23;6049:32;6046:52;;;6094:1;6091;6084:12;6046:52;6130:9;6117:23;6107:33;;6159:38;6193:2;6182:9;6178:18;6159:38;:::i;:::-;6149:48;;5949:254;;;;;:::o;6208:260::-;6276:6;6284;6337:2;6325:9;6316:7;6312:23;6308:32;6305:52;;;6353:1;6350;6343:12;6305:52;6376:29;6395:9;6376:29;:::i;:::-;6366:39;;6424:38;6458:2;6447:9;6443:18;6424:38;:::i;6473:380::-;6552:1;6548:12;;;;6595;;;6616:61;;6670:4;6662:6;6658:17;6648:27;;6616:61;6723:2;6715:6;6712:14;6692:18;6689:38;6686:161;;6769:10;6764:3;6760:20;6757:1;6750:31;6804:4;6801:1;6794:15;6832:4;6829:1;6822:15;6686:161;;6473:380;;;:::o;8504:127::-;8565:10;8560:3;8556:20;8553:1;8546:31;8596:4;8593:1;8586:15;8620:4;8617:1;8610:15;8636:135;8675:3;8696:17;;;8693:43;;8716:18;;:::i;:::-;-1:-1:-1;8763:1:13;8752:13;;8636:135::o;9191:356::-;9393:2;9375:21;;;9412:18;;;9405:30;9471:34;9466:2;9451:18;;9444:62;9538:2;9523:18;;9191:356::o;10235:245::-;10302:6;10355:2;10343:9;10334:7;10330:23;10326:32;10323:52;;;10371:1;10368;10361:12;10323:52;10403:9;10397:16;10422:28;10444:5;10422:28;:::i;10611:545::-;10713:2;10708:3;10705:11;10702:448;;;10749:1;10774:5;10770:2;10763:17;10819:4;10815:2;10805:19;10889:2;10877:10;10873:19;10870:1;10866:27;10860:4;10856:38;10925:4;10913:10;10910:20;10907:47;;;-1:-1:-1;10948:4:13;10907:47;11003:2;10998:3;10994:12;10991:1;10987:20;10981:4;10977:31;10967:41;;11058:82;11076:2;11069:5;11066:13;11058:82;;;11121:17;;;11102:1;11091:13;11058:82;;11332:1352;11458:3;11452:10;11485:18;11477:6;11474:30;11471:56;;;11507:18;;:::i;:::-;11536:97;11626:6;11586:38;11618:4;11612:11;11586:38;:::i;:::-;11580:4;11536:97;:::i;:::-;11688:4;;11752:2;11741:14;;11769:1;11764:663;;;;12471:1;12488:6;12485:89;;;-1:-1:-1;12540:19:13;;;12534:26;12485:89;-1:-1:-1;;11289:1:13;11285:11;;;11281:24;11277:29;11267:40;11313:1;11309:11;;;11264:57;12587:81;;11734:944;;11764:663;10558:1;10551:14;;;10595:4;10582:18;;-1:-1:-1;;11800:20:13;;;11918:236;11932:7;11929:1;11926:14;11918:236;;;12021:19;;;12015:26;12000:42;;12113:27;;;;12081:1;12069:14;;;;11948:19;;11918:236;;;11922:3;12182:6;12173:7;12170:19;12167:201;;;12243:19;;;12237:26;-1:-1:-1;;12326:1:13;12322:14;;;12338:3;12318:24;12314:37;12310:42;12295:58;12280:74;;12167:201;-1:-1:-1;;;;;12414:1:13;12398:14;;;12394:22;12381:36;;-1:-1:-1;11332:1352:13:o;13030:341::-;13232:2;13214:21;;;13271:2;13251:18;;;13244:30;-1:-1:-1;;;13305:2:13;13290:18;;13283:47;13362:2;13347:18;;13030:341::o;13711:410::-;13925:26;13921:31;13912:6;13908:2;13904:15;13900:53;13895:3;13888:66;13870:3;13983:6;13977:13;13999:75;14067:6;14062:2;14057:3;14053:12;14046:4;14038:6;14034:17;13999:75;:::i;:::-;14094:16;;;;14112:2;14090:25;;13711:410;-1:-1:-1;;;13711:410:13:o;14126:287::-;14255:3;14293:6;14287:13;14309:66;14368:6;14363:3;14356:4;14348:6;14344:17;14309:66;:::i;:::-;14391:16;;;;;14126:287;-1:-1:-1;;14126:287:13:o;14418:184::-;14488:6;14541:2;14529:9;14520:7;14516:23;14512:32;14509:52;;;14557:1;14554;14547:12;14509:52;-1:-1:-1;14580:16:13;;14418:184;-1:-1:-1;14418:184:13:o;15353:125::-;15418:9;;;15439:10;;;15436:36;;;15452:18;;:::i;16229:128::-;16296:9;;;16317:11;;;16314:37;;;16331:18;;:::i;16717:168::-;16790:9;;;16821;;16838:15;;;16832:22;;16818:37;16808:71;;16859:18;;:::i;17270:415::-;17472:2;17454:21;;;17511:2;17491:18;;;17484:30;17550:34;17545:2;17530:18;;17523:62;-1:-1:-1;;;17616:2:13;17601:18;;17594:49;17675:3;17660:19;;17270:415::o;18106:1256::-;18330:3;18368:6;18362:13;18394:4;18407:64;18464:6;18459:3;18454:2;18446:6;18442:15;18407:64;:::i;:::-;18534:13;;18493:16;;;;18556:68;18534:13;18493:16;18591:15;;;18556:68;:::i;:::-;18713:13;;18646:20;;;18686:1;;18751:36;18713:13;18751:36;:::i;:::-;18806:1;18823:18;;;18850:141;;;;19005:1;19000:337;;;;18816:521;;18850:141;-1:-1:-1;;18885:24:13;;18871:39;;18962:16;;18955:24;18941:39;;18930:51;;;-1:-1:-1;18850:141:13;;19000:337;19031:6;19028:1;19021:17;19079:2;19076:1;19066:16;19104:1;19118:169;19132:8;19129:1;19126:15;19118:169;;;19214:14;;19199:13;;;19192:37;19257:16;;;;19149:10;;19118:169;;;19122:3;;19318:8;19311:5;19307:20;19300:27;;18816:521;-1:-1:-1;19353:3:13;;18106:1256;-1:-1:-1;;;;;;;;;;18106:1256:13:o;21343:200::-;-1:-1:-1;;;;;21479:10:13;;;21467;;;21463:27;;21502:12;;;21499:38;;;21517:18;;:::i;:::-;21499:38;21343:200;;;;:::o;21548:197::-;-1:-1:-1;;;;;21670:10:13;;;21682;;;21666:27;;21705:11;;;21702:37;;;21719:18;;:::i;22161:136::-;22200:3;22228:5;22218:39;;22237:18;;:::i;:::-;-1:-1:-1;;;22273:18:13;;22161:136::o;22718:127::-;22779:10;22774:3;22770:20;22767:1;22760:31;22810:4;22807:1;22800:15;22834:4;22831:1;22824:15;22850:120;22890:1;22916;22906:35;;22921:18;;:::i;:::-;-1:-1:-1;22955:9:13;;22850:120::o;22975:112::-;23007:1;23033;23023:35;;23038:18;;:::i;:::-;-1:-1:-1;23072:9:13;;22975:112::o;23092:127::-;23153:10;23148:3;23144:20;23141:1;23134:31;23184:4;23181:1;23174:15;23208:4;23205:1;23198:15;23224:489;-1:-1:-1;;;;;23493:15:13;;;23475:34;;23545:15;;23540:2;23525:18;;23518:43;23592:2;23577:18;;23570:34;;;23640:3;23635:2;23620:18;;23613:31;;;23418:4;;23661:46;;23687:19;;23679:6;23661:46;:::i;:::-;23653:54;23224:489;-1:-1:-1;;;;;;23224:489:13:o;23718:249::-;23787:6;23840:2;23828:9;23819:7;23815:23;23811:32;23808:52;;;23856:1;23853;23846:12;23808:52;23888:9;23882:16;23907:30;23931:5;23907:30;:::i

Swarm Source

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