ETH Price: $2,462.46 (+0.44%)

X-Network (XPASS)
 

Overview

TokenID

49

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
XNETWORK

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

pragma solidity ^0.8.0;

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

contract XNETWORK is Ownable, ERC721A, ReentrancyGuard {
	uint256 public NFTSupply;
	uint256 public NFTMinted;

	string public _baseTokenURI;
	
    constructor() ERC721A("X-Network", "XPASS"){
       NFTSupply = 500;
    }
	
    function mintNFT(address[] calldata _to, uint256[] calldata _count) external onlyOwner nonReentrant {
        require(
		   _to.length == _count.length,
		   "Mismatch between address and count"
		);
		for(uint i=0; i < _to.length; i++){
		    require (
			  NFTMinted + _count[i] <= NFTSupply, 
			  "Max mint limit reached"
			);
		    _safeMint(_to[i], _count[i]);
		    NFTMinted += _count[i];
		}
    }
	
	function mintNFT(address[] calldata _to, uint256 _count) external onlyOwner nonReentrant {
		for(uint i=0; i < _to.length; i++){
		    require (
			  NFTMinted + _count <= NFTSupply, 
			  "Max mint limit reached"
			);
		    _safeMint(_to[i], _count);
		    NFTMinted += _count;
		}
    }
	
    function _baseURI() internal view virtual override returns (string memory) {
	   return _baseTokenURI;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
	    _baseTokenURI = baseURI;
    }
	
    function numberMinted(address owner) public view returns (uint256) {
	   return _numberMinted(owner);
    }
	
	function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
	   return ownershipOf(tokenId);
	}
	
	function updateNFTSupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= NFTMinted, "Incorrect value");
        NFTSupply = newSupply;
    }
}

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

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;

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

  constructor(string memory name_, string memory symbol_) {
    _name = name_;
    _symbol = symbol_;
  }

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 `IERC721Receiver.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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 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 making 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";
    uint8 private constant _ADDRESS_LENGTH = 20;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"NFTMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_count","type":"uint256[]"}],"name":"mintNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateNFTSupply","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040525f6001555f60085534801562000018575f80fd5b5060405180604001604052806009815260200168582d4e6574776f726b60b81b81525060405180604001604052806005815260200164585041535360d81b815250620000736200006d620000a460201b60201c565b620000a8565b600262000081838262000197565b50600362000090828262000197565b50506001600955506101f4600a556200025f565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200012057607f821691505b6020821081036200013f57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000192575f81815260208120601f850160051c810160208610156200016d5750805b601f850160051c820191505b818110156200018e5782815560010162000179565b5050505b505050565b81516001600160401b03811115620001b357620001b3620000f7565b620001cb81620001c484546200010b565b8462000145565b602080601f83116001811462000201575f8415620001e95750858301515b5f19600386901b1c1916600185901b1785556200018e565b5f85815260208120601f198616915b82811015620002315788860151825594840194600190910190840162000210565b50858210156200024f57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b6121ed806200026d5f395ff3fe608060405234801561000f575f80fd5b50600436106101c6575f3560e01c8063715018a6116100fe578063a22cb4651161009e578063d7224ba01161006e578063d7224ba0146103ce578063dc33e681146103d7578063e985e9c5146103ea578063f2fde38b14610425575f80fd5b8063a22cb4651461038d578063b88d4fde146103a0578063c87b56dd146103b3578063cfc86f7b146103c6575f80fd5b80638da5cb5b116100d95780638da5cb5b146103225780639231ab2a1461033257806395d89b411461037257806395d8c8481461037a575f80fd5b8063715018a6146102fe5780637abf5afe14610306578063812e844d1461030f575f80fd5b806323b872dd116101695780634f6ccce7116101445780634f6ccce7146102b257806355f804b3146102c55780636352211e146102d857806370a08231146102eb575f80fd5b806323b872dd146102795780632f745c591461028c57806342842e0e1461029f575f80fd5b8063095ea7b3116101a4578063095ea7b3146102325780630b8cb4581461024757806318160ddd1461025e5780631dad694414610266575f80fd5b806301ffc9a7146101ca57806306fdde03146101f2578063081812fc14610207575b5f80fd5b6101dd6101d8366004611ad4565b610438565b60405190151581526020015b60405180910390f35b6101fa6104a4565b6040516101e99190611b3c565b61021a610215366004611b4e565b610534565b6040516001600160a01b0390911681526020016101e9565b610245610240366004611b80565b6105c2565b005b610250600b5481565b6040519081526020016101e9565b600154610250565b610245610274366004611bef565b6106d8565b610245610287366004611c55565b6108a0565b61025061029a366004611b80565b6108ab565b6102456102ad366004611c55565b610a1c565b6102506102c0366004611b4e565b610a36565b6102456102d3366004611c8e565b610a9e565b61021a6102e6366004611b4e565b610ab3565b6102506102f9366004611cf9565b610ac4565b610245610b53565b610250600a5481565b61024561031d366004611d12565b610b66565b5f546001600160a01b031661021a565b610345610340366004611b4e565b610c8b565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016101e9565b6101fa610ca7565b610245610388366004611b4e565b610cb6565b61024561039b366004611d59565b610d07565b6102456103ae366004611da6565b610dca565b6101fa6103c1366004611b4e565b610e03565b6101fa610ecd565b61025060085481565b6102506103e5366004611cf9565b610f59565b6101dd6103f8366004611e7a565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b610245610433366004611cf9565b610f63565b5f6001600160e01b031982166380ac58cd60e01b148061046857506001600160e01b03198216635b5e139f60e01b145b8061048357506001600160e01b0319821663780e9d6360e01b145b8061049e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104b390611eab565b80601f01602080910402602001604051908101604052809291908181526020018280546104df90611eab565b801561052a5780601f106105015761010080835404028352916020019161052a565b820191905f5260205f20905b81548152906001019060200180831161050d57829003601f168201915b5050505050905090565b5f610540826001541190565b6105a75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f6105cc82610ab3565b9050806001600160a01b0316836001600160a01b03160361063a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161059e565b336001600160a01b0382161480610656575061065681336103f8565b6106c85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161059e565b6106d3838383610fdc565b505050565b6106e0611037565b6002600954036107325760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161059e565b60026009558281146107915760405162461bcd60e51b815260206004820152602260248201527f4d69736d61746368206265747765656e206164647265737320616e6420636f756044820152611b9d60f21b606482015260840161059e565b5f5b8381101561089457600a548383838181106107b0576107b0611ee3565b90506020020135600b546107c49190611f0b565b111561080b5760405162461bcd60e51b815260206004820152601660248201527513585e081b5a5b9d081b1a5b5a5d081c995858da195960521b604482015260640161059e565b61085385858381811061082057610820611ee3565b90506020020160208101906108359190611cf9565b84848481811061084757610847611ee3565b90506020020135611090565b82828281811061086557610865611ee3565b90506020020135600b5f82825461087c9190611f0b565b9091555081905061088c81611f1e565b915050610793565b50506001600955505050565b6106d38383836110ad565b5f6108b583610ac4565b821061090e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161059e565b5f61091860015490565b90505f805f5b838110156109bc575f818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561096f57805192505b876001600160a01b0316836001600160a01b0316036109a95786840361099b5750935061049e92505050565b836109a581611f1e565b9450505b50806109b481611f1e565b91505061091e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161059e565b6106d383838360405180602001604052805f815250610dca565b5f610a4060015490565b8210610a9a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161059e565b5090565b610aa6611037565b600c6106d3828483611f7b565b5f610abd82611429565b5192915050565b5f6001600160a01b038216610b2f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161059e565b506001600160a01b03165f908152600560205260409020546001600160801b031690565b610b5b611037565b610b645f611570565b565b610b6e611037565b600260095403610bc05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161059e565b60026009555f5b82811015610c8057600a5482600b54610be09190611f0b565b1115610c275760405162461bcd60e51b815260206004820152601660248201527513585e081b5a5b9d081b1a5b5a5d081c995858da195960521b604482015260640161059e565b610c57848483818110610c3c57610c3c611ee3565b9050602002016020810190610c519190611cf9565b83611090565b81600b5f828254610c689190611f0b565b90915550819050610c7881611f1e565b915050610bc7565b505060016009555050565b604080518082019091525f808252602082015261049e82611429565b6060600380546104b390611eab565b610cbe611037565b600b54811015610d025760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742076616c756560881b604482015260640161059e565b600a55565b336001600160a01b03831603610d5f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161059e565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dd58484846110ad565b610de1848484846115bf565b610dfd5760405162461bcd60e51b815260040161059e90612036565b50505050565b6060610e10826001541190565b610e745760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161059e565b5f610e7d6116bd565b90505f815111610e9b5760405180602001604052805f815250610ec6565b80610ea5846116cc565b604051602001610eb6929190612089565b6040516020818303038152906040525b9392505050565b600c8054610eda90611eab565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0690611eab565b8015610f515780601f10610f2857610100808354040283529160200191610f51565b820191905f5260205f20905b815481529060010190602001808311610f3457829003601f168201915b505050505081565b5f61049e826117c8565b610f6b611037565b6001600160a01b038116610fd05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161059e565b610fd981611570565b50565b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f546001600160a01b03163314610b645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161059e565b6110a9828260405180602001604052805f815250611864565b5050565b5f6110b782611429565b80519091505f906001600160a01b0316336001600160a01b031614806110ed5750336110e284610534565b6001600160a01b0316145b806110ff575081516110ff90336103f8565b9050806111695760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161059e565b846001600160a01b0316825f01516001600160a01b0316146111dc5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161059e565b6001600160a01b0384166112405760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161059e565b61124e5f84845f0151610fdc565b6001600160a01b0385165f90815260056020526040812080546001929061127f9084906001600160801b03166120b7565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386165f90815260056020526040812080546001945090926112ca918591166120de565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b0342811660208085019182525f8981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611350846001611f0b565b5f818152600460205260409020549091506001600160a01b03166113df57611379816001541190565b156113df5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081525f878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091525f8082526020820152611447826001541190565b6114a65760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161059e565b5f825b81811061150f575f818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156114fc57949350505050565b5080611507816120fe565b9150506114a9565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161059e565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6001600160a01b0384163b156116b157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611602903390899088908890600401612113565b6020604051808303815f875af192505050801561163c575060408051601f3d908101601f191682019092526116399181019061214f565b60015b611697573d808015611669576040519150601f19603f3d011682016040523d82523d5f602084013e61166e565b606091505b5080515f0361168f5760405162461bcd60e51b815260040161059e90612036565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116b5565b5060015b949350505050565b6060600c80546104b390611eab565b6060815f036116f25750506040805180820190915260018152600360fc1b602082015290565b815f5b811561171b578061170581611f1e565b91506117149050600a8361217e565b91506116f5565b5f816001600160401b0381111561173457611734611d92565b6040519080825280601f01601f19166020018201604052801561175e576020820181803683370190505b5090505b84156116b557611773600183612191565b9150611780600a866121a4565b61178b906030611f0b565b60f81b8183815181106117a0576117a0611ee3565b60200101906001600160f81b03191690815f1a9053506117c1600a8661217e565b9450611762565b5f6001600160a01b0382166118395760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161059e565b506001600160a01b03165f90815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166118c75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161059e565b6118d2816001541190565b1561191f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161059e565b6001600160a01b0384165f908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061197a9087906120de565b6001600160801b0316815260200185836020015161199891906120de565b6001600160801b039081169091526001600160a01b038088165f8181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ab45760405182906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a785f8884886115bf565b611a945760405162461bcd60e51b815260040161059e90612036565b81611a9e81611f1e565b9250508080611aac90611f1e565b915050611a2d565b506001819055611421565b6001600160e01b031981168114610fd9575f80fd5b5f60208284031215611ae4575f80fd5b8135610ec681611abf565b5f5b83811015611b09578181015183820152602001611af1565b50505f910152565b5f8151808452611b28816020860160208601611aef565b601f01601f19169290920160200192915050565b602081525f610ec66020830184611b11565b5f60208284031215611b5e575f80fd5b5035919050565b80356001600160a01b0381168114611b7b575f80fd5b919050565b5f8060408385031215611b91575f80fd5b611b9a83611b65565b946020939093013593505050565b5f8083601f840112611bb8575f80fd5b5081356001600160401b03811115611bce575f80fd5b6020830191508360208260051b8501011115611be8575f80fd5b9250929050565b5f805f8060408587031215611c02575f80fd5b84356001600160401b0380821115611c18575f80fd5b611c2488838901611ba8565b90965094506020870135915080821115611c3c575f80fd5b50611c4987828801611ba8565b95989497509550505050565b5f805f60608486031215611c67575f80fd5b611c7084611b65565b9250611c7e60208501611b65565b9150604084013590509250925092565b5f8060208385031215611c9f575f80fd5b82356001600160401b0380821115611cb5575f80fd5b818501915085601f830112611cc8575f80fd5b813581811115611cd6575f80fd5b866020828501011115611ce7575f80fd5b60209290920196919550909350505050565b5f60208284031215611d09575f80fd5b610ec682611b65565b5f805f60408486031215611d24575f80fd5b83356001600160401b03811115611d39575f80fd5b611d4586828701611ba8565b909790965060209590950135949350505050565b5f8060408385031215611d6a575f80fd5b611d7383611b65565b915060208301358015158114611d87575f80fd5b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f805f8060808587031215611db9575f80fd5b611dc285611b65565b9350611dd060208601611b65565b92506040850135915060608501356001600160401b0380821115611df2575f80fd5b818701915087601f830112611e05575f80fd5b813581811115611e1757611e17611d92565b604051601f8201601f19908116603f01168101908382118183101715611e3f57611e3f611d92565b816040528281528a6020848701011115611e57575f80fd5b826020860160208301375f60208483010152809550505050505092959194509250565b5f8060408385031215611e8b575f80fd5b611e9483611b65565b9150611ea260208401611b65565b90509250929050565b600181811c90821680611ebf57607f821691505b602082108103611edd57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082018082111561049e5761049e611ef7565b5f60018201611f2f57611f2f611ef7565b5060010190565b601f8211156106d3575f81815260208120601f850160051c81016020861015611f5c5750805b601f850160051c820191505b8181101561142157828155600101611f68565b6001600160401b03831115611f9257611f92611d92565b611fa683611fa08354611eab565b83611f36565b5f601f841160018114611fd7575f8515611fc05750838201355b5f19600387901b1c1916600186901b17835561202f565b5f83815260209020601f19861690835b828110156120075786850135825560209485019460019092019101611fe7565b5086821015612023575f1960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b5f835161209a818460208801611aef565b8351908301906120ae818360208801611aef565b01949350505050565b6001600160801b038281168282160390808211156120d7576120d7611ef7565b5092915050565b6001600160801b038181168382160190808211156120d7576120d7611ef7565b5f8161210c5761210c611ef7565b505f190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061214590830184611b11565b9695505050505050565b5f6020828403121561215f575f80fd5b8151610ec681611abf565b634e487b7160e01b5f52601260045260245ffd5b5f8261218c5761218c61216a565b500490565b8181038181111561049e5761049e611ef7565b5f826121b2576121b261216a565b50069056fea2646970667358221220ec4e712d8af162d9626bda45eb20310d8d7bf1135350bfb5d5dbba8be423be8a64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101c6575f3560e01c8063715018a6116100fe578063a22cb4651161009e578063d7224ba01161006e578063d7224ba0146103ce578063dc33e681146103d7578063e985e9c5146103ea578063f2fde38b14610425575f80fd5b8063a22cb4651461038d578063b88d4fde146103a0578063c87b56dd146103b3578063cfc86f7b146103c6575f80fd5b80638da5cb5b116100d95780638da5cb5b146103225780639231ab2a1461033257806395d89b411461037257806395d8c8481461037a575f80fd5b8063715018a6146102fe5780637abf5afe14610306578063812e844d1461030f575f80fd5b806323b872dd116101695780634f6ccce7116101445780634f6ccce7146102b257806355f804b3146102c55780636352211e146102d857806370a08231146102eb575f80fd5b806323b872dd146102795780632f745c591461028c57806342842e0e1461029f575f80fd5b8063095ea7b3116101a4578063095ea7b3146102325780630b8cb4581461024757806318160ddd1461025e5780631dad694414610266575f80fd5b806301ffc9a7146101ca57806306fdde03146101f2578063081812fc14610207575b5f80fd5b6101dd6101d8366004611ad4565b610438565b60405190151581526020015b60405180910390f35b6101fa6104a4565b6040516101e99190611b3c565b61021a610215366004611b4e565b610534565b6040516001600160a01b0390911681526020016101e9565b610245610240366004611b80565b6105c2565b005b610250600b5481565b6040519081526020016101e9565b600154610250565b610245610274366004611bef565b6106d8565b610245610287366004611c55565b6108a0565b61025061029a366004611b80565b6108ab565b6102456102ad366004611c55565b610a1c565b6102506102c0366004611b4e565b610a36565b6102456102d3366004611c8e565b610a9e565b61021a6102e6366004611b4e565b610ab3565b6102506102f9366004611cf9565b610ac4565b610245610b53565b610250600a5481565b61024561031d366004611d12565b610b66565b5f546001600160a01b031661021a565b610345610340366004611b4e565b610c8b565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016101e9565b6101fa610ca7565b610245610388366004611b4e565b610cb6565b61024561039b366004611d59565b610d07565b6102456103ae366004611da6565b610dca565b6101fa6103c1366004611b4e565b610e03565b6101fa610ecd565b61025060085481565b6102506103e5366004611cf9565b610f59565b6101dd6103f8366004611e7a565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b610245610433366004611cf9565b610f63565b5f6001600160e01b031982166380ac58cd60e01b148061046857506001600160e01b03198216635b5e139f60e01b145b8061048357506001600160e01b0319821663780e9d6360e01b145b8061049e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104b390611eab565b80601f01602080910402602001604051908101604052809291908181526020018280546104df90611eab565b801561052a5780601f106105015761010080835404028352916020019161052a565b820191905f5260205f20905b81548152906001019060200180831161050d57829003601f168201915b5050505050905090565b5f610540826001541190565b6105a75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f6105cc82610ab3565b9050806001600160a01b0316836001600160a01b03160361063a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161059e565b336001600160a01b0382161480610656575061065681336103f8565b6106c85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161059e565b6106d3838383610fdc565b505050565b6106e0611037565b6002600954036107325760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161059e565b60026009558281146107915760405162461bcd60e51b815260206004820152602260248201527f4d69736d61746368206265747765656e206164647265737320616e6420636f756044820152611b9d60f21b606482015260840161059e565b5f5b8381101561089457600a548383838181106107b0576107b0611ee3565b90506020020135600b546107c49190611f0b565b111561080b5760405162461bcd60e51b815260206004820152601660248201527513585e081b5a5b9d081b1a5b5a5d081c995858da195960521b604482015260640161059e565b61085385858381811061082057610820611ee3565b90506020020160208101906108359190611cf9565b84848481811061084757610847611ee3565b90506020020135611090565b82828281811061086557610865611ee3565b90506020020135600b5f82825461087c9190611f0b565b9091555081905061088c81611f1e565b915050610793565b50506001600955505050565b6106d38383836110ad565b5f6108b583610ac4565b821061090e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161059e565b5f61091860015490565b90505f805f5b838110156109bc575f818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561096f57805192505b876001600160a01b0316836001600160a01b0316036109a95786840361099b5750935061049e92505050565b836109a581611f1e565b9450505b50806109b481611f1e565b91505061091e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161059e565b6106d383838360405180602001604052805f815250610dca565b5f610a4060015490565b8210610a9a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161059e565b5090565b610aa6611037565b600c6106d3828483611f7b565b5f610abd82611429565b5192915050565b5f6001600160a01b038216610b2f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161059e565b506001600160a01b03165f908152600560205260409020546001600160801b031690565b610b5b611037565b610b645f611570565b565b610b6e611037565b600260095403610bc05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161059e565b60026009555f5b82811015610c8057600a5482600b54610be09190611f0b565b1115610c275760405162461bcd60e51b815260206004820152601660248201527513585e081b5a5b9d081b1a5b5a5d081c995858da195960521b604482015260640161059e565b610c57848483818110610c3c57610c3c611ee3565b9050602002016020810190610c519190611cf9565b83611090565b81600b5f828254610c689190611f0b565b90915550819050610c7881611f1e565b915050610bc7565b505060016009555050565b604080518082019091525f808252602082015261049e82611429565b6060600380546104b390611eab565b610cbe611037565b600b54811015610d025760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742076616c756560881b604482015260640161059e565b600a55565b336001600160a01b03831603610d5f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161059e565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dd58484846110ad565b610de1848484846115bf565b610dfd5760405162461bcd60e51b815260040161059e90612036565b50505050565b6060610e10826001541190565b610e745760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161059e565b5f610e7d6116bd565b90505f815111610e9b5760405180602001604052805f815250610ec6565b80610ea5846116cc565b604051602001610eb6929190612089565b6040516020818303038152906040525b9392505050565b600c8054610eda90611eab565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0690611eab565b8015610f515780601f10610f2857610100808354040283529160200191610f51565b820191905f5260205f20905b815481529060010190602001808311610f3457829003601f168201915b505050505081565b5f61049e826117c8565b610f6b611037565b6001600160a01b038116610fd05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161059e565b610fd981611570565b50565b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f546001600160a01b03163314610b645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161059e565b6110a9828260405180602001604052805f815250611864565b5050565b5f6110b782611429565b80519091505f906001600160a01b0316336001600160a01b031614806110ed5750336110e284610534565b6001600160a01b0316145b806110ff575081516110ff90336103f8565b9050806111695760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161059e565b846001600160a01b0316825f01516001600160a01b0316146111dc5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161059e565b6001600160a01b0384166112405760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161059e565b61124e5f84845f0151610fdc565b6001600160a01b0385165f90815260056020526040812080546001929061127f9084906001600160801b03166120b7565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386165f90815260056020526040812080546001945090926112ca918591166120de565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b0342811660208085019182525f8981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611350846001611f0b565b5f818152600460205260409020549091506001600160a01b03166113df57611379816001541190565b156113df5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081525f878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091525f8082526020820152611447826001541190565b6114a65760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161059e565b5f825b81811061150f575f818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156114fc57949350505050565b5080611507816120fe565b9150506114a9565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161059e565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6001600160a01b0384163b156116b157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611602903390899088908890600401612113565b6020604051808303815f875af192505050801561163c575060408051601f3d908101601f191682019092526116399181019061214f565b60015b611697573d808015611669576040519150601f19603f3d011682016040523d82523d5f602084013e61166e565b606091505b5080515f0361168f5760405162461bcd60e51b815260040161059e90612036565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116b5565b5060015b949350505050565b6060600c80546104b390611eab565b6060815f036116f25750506040805180820190915260018152600360fc1b602082015290565b815f5b811561171b578061170581611f1e565b91506117149050600a8361217e565b91506116f5565b5f816001600160401b0381111561173457611734611d92565b6040519080825280601f01601f19166020018201604052801561175e576020820181803683370190505b5090505b84156116b557611773600183612191565b9150611780600a866121a4565b61178b906030611f0b565b60f81b8183815181106117a0576117a0611ee3565b60200101906001600160f81b03191690815f1a9053506117c1600a8661217e565b9450611762565b5f6001600160a01b0382166118395760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161059e565b506001600160a01b03165f90815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166118c75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161059e565b6118d2816001541190565b1561191f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161059e565b6001600160a01b0384165f908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061197a9087906120de565b6001600160801b0316815260200185836020015161199891906120de565b6001600160801b039081169091526001600160a01b038088165f8181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ab45760405182906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a785f8884886115bf565b611a945760405162461bcd60e51b815260040161059e90612036565b81611a9e81611f1e565b9250508080611aac90611f1e565b915050611a2d565b506001819055611421565b6001600160e01b031981168114610fd9575f80fd5b5f60208284031215611ae4575f80fd5b8135610ec681611abf565b5f5b83811015611b09578181015183820152602001611af1565b50505f910152565b5f8151808452611b28816020860160208601611aef565b601f01601f19169290920160200192915050565b602081525f610ec66020830184611b11565b5f60208284031215611b5e575f80fd5b5035919050565b80356001600160a01b0381168114611b7b575f80fd5b919050565b5f8060408385031215611b91575f80fd5b611b9a83611b65565b946020939093013593505050565b5f8083601f840112611bb8575f80fd5b5081356001600160401b03811115611bce575f80fd5b6020830191508360208260051b8501011115611be8575f80fd5b9250929050565b5f805f8060408587031215611c02575f80fd5b84356001600160401b0380821115611c18575f80fd5b611c2488838901611ba8565b90965094506020870135915080821115611c3c575f80fd5b50611c4987828801611ba8565b95989497509550505050565b5f805f60608486031215611c67575f80fd5b611c7084611b65565b9250611c7e60208501611b65565b9150604084013590509250925092565b5f8060208385031215611c9f575f80fd5b82356001600160401b0380821115611cb5575f80fd5b818501915085601f830112611cc8575f80fd5b813581811115611cd6575f80fd5b866020828501011115611ce7575f80fd5b60209290920196919550909350505050565b5f60208284031215611d09575f80fd5b610ec682611b65565b5f805f60408486031215611d24575f80fd5b83356001600160401b03811115611d39575f80fd5b611d4586828701611ba8565b909790965060209590950135949350505050565b5f8060408385031215611d6a575f80fd5b611d7383611b65565b915060208301358015158114611d87575f80fd5b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f805f8060808587031215611db9575f80fd5b611dc285611b65565b9350611dd060208601611b65565b92506040850135915060608501356001600160401b0380821115611df2575f80fd5b818701915087601f830112611e05575f80fd5b813581811115611e1757611e17611d92565b604051601f8201601f19908116603f01168101908382118183101715611e3f57611e3f611d92565b816040528281528a6020848701011115611e57575f80fd5b826020860160208301375f60208483010152809550505050505092959194509250565b5f8060408385031215611e8b575f80fd5b611e9483611b65565b9150611ea260208401611b65565b90509250929050565b600181811c90821680611ebf57607f821691505b602082108103611edd57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082018082111561049e5761049e611ef7565b5f60018201611f2f57611f2f611ef7565b5060010190565b601f8211156106d3575f81815260208120601f850160051c81016020861015611f5c5750805b601f850160051c820191505b8181101561142157828155600101611f68565b6001600160401b03831115611f9257611f92611d92565b611fa683611fa08354611eab565b83611f36565b5f601f841160018114611fd7575f8515611fc05750838201355b5f19600387901b1c1916600186901b17835561202f565b5f83815260209020601f19861690835b828110156120075786850135825560209485019460019092019101611fe7565b5086821015612023575f1960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b5f835161209a818460208801611aef565b8351908301906120ae818360208801611aef565b01949350505050565b6001600160801b038281168282160390808211156120d7576120d7611ef7565b5092915050565b6001600160801b038181168382160190808211156120d7576120d7611ef7565b5f8161210c5761210c611ef7565b505f190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061214590830184611b11565b9695505050505050565b5f6020828403121561215f575f80fd5b8151610ec681611abf565b634e487b7160e01b5f52601260045260245ffd5b5f8261218c5761218c61216a565b500490565b8181038181111561049e5761049e611ef7565b5f826121b2576121b261216a565b50069056fea2646970667358221220ec4e712d8af162d9626bda45eb20310d8d7bf1135350bfb5d5dbba8be423be8a64736f6c63430008140033

Deployed Bytecode Sourcemap

172:1615:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3090:370:3;;;;;;:::i;:::-;;:::i;:::-;;;565:14:13;;558:22;540:41;;528:2;513:18;3090:370:3;;;;;;;;4720:94;;;:::i;:::-;;;;;;;:::i;6245:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:13;;;1679:51;;1667:2;1652:18;6245:204:3;1533:203:13;5808:379:3;;;;;;:::i;:::-;;:::i;:::-;;259:24:12;;;;;;;;;2324:25:13;;;2312:2;2297:18;259:24:12;2178:177:13;1936:94:3;2012:12;;1936:94;;411:420:12;;;;;;:::i;:::-;;:::i;7095:142:3:-;;;;;;:::i;:::-;;:::i;2282:744::-;;;;;;:::i;:::-;;:::i;7300:157::-;;;;;;:::i;:::-;;:::i;2099:177::-;;;;;;:::i;:::-;;:::i;1262:103:12:-;;;;;;:::i;:::-;;:::i;4543:118:3:-;;;;;;:::i;:::-;;:::i;3516:211::-;;;;;;:::i;:::-;;:::i;1814:103:9:-;;;:::i;231:24:12:-;;;;;;837:298;;;;;;:::i;:::-;;:::i;1166:87:9:-;1212:7;1239:6;-1:-1:-1;;;;;1239:6:9;1166:87;;1489:128:12;;;;;;:::i;:::-;;:::i;:::-;;;;5371:13:13;;-1:-1:-1;;;;;5367:39:13;5349:58;;5467:4;5455:17;;;5449:24;-1:-1:-1;;;;;5445:49:13;5423:20;;;5416:79;;;;5322:18;1489:128:12;5141:360:13;4875:98:3;;;:::i;1623:161:12:-;;;;;;:::i;:::-;;:::i;6513:274:3:-;;;;;;:::i;:::-;;:::i;7520:311::-;;;;;;:::i;:::-;;:::i;5036:394::-;;;;;;:::i;:::-;;:::i;289:27:12:-;;;:::i;11857:43:3:-;;;;;;1374:109:12;;;;;;:::i;:::-;;:::i;6850:186:3:-;;;;;;:::i;:::-;-1:-1:-1;;;;;6995:25:3;;;6972:4;6995:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;6850:186;2072:201:9;;;;;;:::i;:::-;;:::i;3090:370:3:-;3217:4;-1:-1:-1;;;;;;3247:40:3;;-1:-1:-1;;;3247:40:3;;:99;;-1:-1:-1;;;;;;;3298:48:3;;-1:-1:-1;;;3298:48:3;3247:99;:160;;;-1:-1:-1;;;;;;;3357:50:3;;-1:-1:-1;;;3357:50:3;3247:160;:207;;;-1:-1:-1;;;;;;;;;;896:40:2;;;3418:36:3;3233:221;3090:370;-1:-1:-1;;3090:370:3:o;4720:94::-;4774:13;4803:5;4796:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4720:94;:::o;6245:204::-;6313:7;6337:16;6345:7;8157:12;;-1:-1:-1;8147:22:3;8070:105;6337:16;6329:74;;;;-1:-1:-1;;;6329:74:3;;7985:2:13;6329:74:3;;;7967:21:13;8024:2;8004:18;;;7997:30;8063:34;8043:18;;;8036:62;-1:-1:-1;;;8114:18:13;;;8107:43;8167:19;;6329:74:3;;;;;;;;;-1:-1:-1;6419:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;6419:24:3;;6245:204::o;5808:379::-;5877:13;5893:24;5909:7;5893:15;:24::i;:::-;5877:40;;5938:5;-1:-1:-1;;;;;5932:11:3;:2;-1:-1:-1;;;;;5932:11:3;;5924:58;;;;-1:-1:-1;;;5924:58:3;;8399:2:13;5924:58:3;;;8381:21:13;8438:2;8418:18;;;8411:30;8477:34;8457:18;;;8450:62;-1:-1:-1;;;8528:18:13;;;8521:32;8570:19;;5924:58:3;8197:398:13;5924:58:3;682:10:1;-1:-1:-1;;;;;6007:21:3;;;;:62;;-1:-1:-1;6032:37:3;6049:5;682:10:1;6850:186:3;:::i;6032:37::-;5991:153;;;;-1:-1:-1;;;5991:153:3;;8802:2:13;5991:153:3;;;8784:21:13;8841:2;8821:18;;;8814:30;8880:34;8860:18;;;8853:62;8951:27;8931:18;;;8924:55;8996:19;;5991:153:3;8600:421:13;5991:153:3;6153:28;6162:2;6166:7;6175:5;6153:8;:28::i;:::-;5870:317;5808:379;;:::o;411:420:12:-;1052:13:9;:11;:13::i;:::-;1713:1:10::1;2311:7;;:19:::0;2303:63:::1;;;::::0;-1:-1:-1;;;2303:63:10;;9228:2:13;2303:63:10::1;::::0;::::1;9210:21:13::0;9267:2;9247:18;;;9240:30;9306:33;9286:18;;;9279:61;9357:18;;2303:63:10::1;9026:355:13::0;2303:63:10::1;1713:1;2444:7;:18:::0;537:27:12;;::::2;522:91;;;::::0;-1:-1:-1;;;522:91:12;;9588:2:13;522:91:12::2;::::0;::::2;9570:21:13::0;9627:2;9607:18;;;9600:30;9666:34;9646:18;;;9639:62;-1:-1:-1;;;9717:18:13;;;9710:32;9759:19;;522:91:12::2;9386:398:13::0;522:91:12::2;622:6;618:206;632:14:::0;;::::2;618:206;;;702:9;;689:6;;696:1;689:9;;;;;;;:::i;:::-;;;;;;;677;;:21;;;;:::i;:::-;:34;;661:89;;;::::0;-1:-1:-1;;;661:89:12;;10385:2:13;661:89:12::2;::::0;::::2;10367:21:13::0;10424:2;10404:18;;;10397:30;-1:-1:-1;;;10443:18:13;;;10436:52;10505:18;;661:89:12::2;10183:346:13::0;661:89:12::2;759:28;769:3;;773:1;769:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;777;;784:1;777:9;;;;;;;:::i;:::-;;;;;;;759;:28::i;:::-;809:6;;816:1;809:9;;;;;;;:::i;:::-;;;;;;;796;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;648:3:12;;-1:-1:-1;648:3:12::2;::::0;::::2;:::i;:::-;;;;618:206;;;-1:-1:-1::0;;1669:1:10::1;2623:7;:22:::0;-1:-1:-1;;;411:420:12:o;7095:142:3:-;7203:28;7213:4;7219:2;7223:7;7203:9;:28::i;2282:744::-;2391:7;2426:16;2436:5;2426:9;:16::i;:::-;2418:5;:24;2410:71;;;;-1:-1:-1;;;2410:71:3;;10876:2:13;2410:71:3;;;10858:21:13;10915:2;10895:18;;;10888:30;10954:34;10934:18;;;10927:62;-1:-1:-1;;;11005:18:13;;;10998:32;11047:19;;2410:71:3;10674:398:13;2410:71:3;2488:22;2513:13;2012:12;;;1936:94;2513:13;2488:38;;2533:19;2563:25;2613:9;2608:350;2632:14;2628:1;:18;2608:350;;;2662:31;2696:14;;;:11;:14;;;;;;;;;2662:48;;;;;;;;;-1:-1:-1;;;;;2662:48:3;;;;;-1:-1:-1;;;2662:48:3;;;-1:-1:-1;;;;;2662:48:3;;;;;;;;2723:28;2719:89;;2784:14;;;-1:-1:-1;2719:89:3;2841:5;-1:-1:-1;;;;;2820:26:3;:17;-1:-1:-1;;;;;2820:26:3;;2816:135;;2878:5;2863:11;:20;2859:59;;-1:-1:-1;2905:1:3;-1:-1:-1;2898:8:3;;-1:-1:-1;;;2898:8:3;2859:59;2928:13;;;;:::i;:::-;;;;2816:135;-1:-1:-1;2648:3:3;;;;:::i;:::-;;;;2608:350;;;-1:-1:-1;2964:56:3;;-1:-1:-1;;;2964:56:3;;11279:2:13;2964:56:3;;;11261:21:13;11318:2;11298:18;;;11291:30;11357:34;11337:18;;;11330:62;-1:-1:-1;;;11408:18:13;;;11401:44;11462:19;;2964:56:3;11077:410:13;7300:157:3;7412:39;7429:4;7435:2;7439:7;7412:39;;;;;;;;;;;;:16;:39::i;2099:177::-;2166:7;2198:13;2012:12;;;1936:94;2198:13;2190:5;:21;2182:69;;;;-1:-1:-1;;;2182:69:3;;11694:2:13;2182:69:3;;;11676:21:13;11733:2;11713:18;;;11706:30;11772:34;11752:18;;;11745:62;-1:-1:-1;;;11823:18:13;;;11816:33;11866:19;;2182:69:3;11492:399:13;2182:69:3;-1:-1:-1;2265:5:3;2099:177::o;1262:103:12:-;1052:13:9;:11;:13::i;:::-;1334::12::1;:23;1350:7:::0;;1334:13;:23:::1;:::i;4543:118:3:-:0;4607:7;4630:20;4642:7;4630:11;:20::i;:::-;:25;;4543:118;-1:-1:-1;;4543:118:3:o;3516:211::-;3580:7;-1:-1:-1;;;;;3604:19:3;;3596:75;;;;-1:-1:-1;;;3596:75:3;;14156:2:13;3596:75:3;;;14138:21:13;14195:2;14175:18;;;14168:30;14234:34;14214:18;;;14207:62;-1:-1:-1;;;14285:18:13;;;14278:41;14336:19;;3596:75:3;13954:407:13;3596:75:3;-1:-1:-1;;;;;;3693:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;3693:27:3;;3516:211::o;1814:103:9:-;1052:13;:11;:13::i;:::-;1879:30:::1;1906:1;1879:18;:30::i;:::-;1814:103::o:0;837:298:12:-;1052:13:9;:11;:13::i;:::-;1713:1:10::1;2311:7;;:19:::0;2303:63:::1;;;::::0;-1:-1:-1;;;2303:63:10;;9228:2:13;2303:63:10::1;::::0;::::1;9210:21:13::0;9267:2;9247:18;;;9240:30;9306:33;9286:18;;;9279:61;9357:18;;2303:63:10::1;9026:355:13::0;2303:63:10::1;1713:1;2444:7;:18:::0;935:6:12::2;931:197;945:14:::0;;::::2;931:197;;;1012:9;;1002:6;990:9;;:18;;;;:::i;:::-;:31;;974:86;;;::::0;-1:-1:-1;;;974:86:12;;10385:2:13;974:86:12::2;::::0;::::2;10367:21:13::0;10424:2;10404:18;;;10397:30;-1:-1:-1;;;10443:18:13;;;10436:52;10505:18;;974:86:12::2;10183:346:13::0;974:86:12::2;1069:25;1079:3;;1083:1;1079:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;1087;1069:9;:25::i;:::-;1116:6;1103:9;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;961:3:12;;-1:-1:-1;961:3:12::2;::::0;::::2;:::i;:::-;;;;931:197;;;-1:-1:-1::0;;1669:1:10::1;2623:7;:22:::0;-1:-1:-1;;837:298:12:o;1489:128::-;-1:-1:-1;;;;;;;;;;;;;;;;;1592:20:12;1604:7;1592:11;:20::i;4875:98:3:-;4931:13;4960:7;4953:14;;;;;:::i;1623:161:12:-;1052:13:9;:11;:13::i;:::-;1715:9:12::1;;1702;:22;;1694:50;;;::::0;-1:-1:-1;;;1694:50:12;;14568:2:13;1694:50:12::1;::::0;::::1;14550:21:13::0;14607:2;14587:18;;;14580:30;-1:-1:-1;;;14626:18:13;;;14619:45;14681:18;;1694:50:12::1;14366:339:13::0;1694:50:12::1;1755:9;:21:::0;1623:161::o;6513:274:3:-;682:10:1;-1:-1:-1;;;;;6604:24:3;;;6596:63;;;;-1:-1:-1;;;6596:63:3;;14912:2:13;6596:63:3;;;14894:21:13;14951:2;14931:18;;;14924:30;14990:28;14970:18;;;14963:56;15036:18;;6596:63:3;14710:350:13;6596:63:3;682:10:1;6668:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;6668:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;6668:53:3;;;;;;;;;;6733:48;;540:41:13;;;6668:42:3;;682:10:1;6733:48:3;;513:18:13;6733:48:3;;;;;;;6513:274;;:::o;7520:311::-;7657:28;7667:4;7673:2;7677:7;7657:9;:28::i;:::-;7708:48;7731:4;7737:2;7741:7;7750:5;7708:22;:48::i;:::-;7692:133;;;;-1:-1:-1;;;7692:133:3;;;;;;;:::i;:::-;7520:311;;;;:::o;5036:394::-;5134:13;5175:16;5183:7;8157:12;;-1:-1:-1;8147:22:3;8070:105;5175:16;5159:97;;;;-1:-1:-1;;;5159:97:3;;15687:2:13;5159:97:3;;;15669:21:13;15726:2;15706:18;;;15699:30;15765:34;15745:18;;;15738:62;-1:-1:-1;;;15816:18:13;;;15809:45;15871:19;;5159:97:3;15485:411:13;5159:97:3;5265:21;5289:10;:8;:10::i;:::-;5265:34;;5344:1;5326:7;5320:21;:25;:104;;;;;;;;;;;;;;;;;5381:7;5390:18;:7;:16;:18::i;:::-;5364:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5320:104;5306:118;5036:394;-1:-1:-1;;;5036:394:3:o;289:27:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1374:109::-;1432:7;1455:20;1469:5;1455:13;:20::i;2072:201:9:-;1052:13;:11;:13::i;:::-;-1:-1:-1;;;;;2161:22:9;::::1;2153:73;;;::::0;-1:-1:-1;;;2153:73:9;;16604:2:13;2153:73:9::1;::::0;::::1;16586:21:13::0;16643:2;16623:18;;;16616:30;16682:34;16662:18;;;16655:62;-1:-1:-1;;;16733:18:13;;;16726:36;16779:19;;2153:73:9::1;16402:402:13::0;2153:73:9::1;2237:28;2256:8;2237:18;:28::i;:::-;2072:201:::0;:::o;11679:172:3:-;11776:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11776:29:3;-1:-1:-1;;;;;11776:29:3;;;;;;;;;11817:28;;11776:24;;11817:28;;;;;;;11679:172;;;:::o;1331:132:9:-;1212:7;1239:6;-1:-1:-1;;;;;1239:6:9;682:10:1;1395:23:9;1387:68;;;;-1:-1:-1;;;1387:68:9;;17011:2:13;1387:68:9;;;16993:21:13;;;17030:18;;;17023:30;17089:34;17069:18;;;17062:62;17141:18;;1387:68:9;16809:356:13;8181:98:3;8246:27;8256:2;8260:8;8246:27;;;;;;;;;;;;:9;:27::i;:::-;8181:98;;:::o;10044:1529::-;10141:35;10179:20;10191:7;10179:11;:20::i;:::-;10250:18;;10141:58;;-1:-1:-1;10208:22:3;;-1:-1:-1;;;;;10234:34:3;682:10:1;-1:-1:-1;;;;;10234:34:3;;:81;;;-1:-1:-1;682:10:1;10279:20:3;10291:7;10279:11;:20::i;:::-;-1:-1:-1;;;;;10279:36:3;;10234:81;:142;;;-1:-1:-1;10343:18:3;;10326:50;;682:10:1;6850:186:3;:::i;10326:50::-;10208:169;;10402:17;10386:101;;;;-1:-1:-1;;;10386:101:3;;17372:2:13;10386:101:3;;;17354:21:13;17411:2;17391:18;;;17384:30;17450:34;17430:18;;;17423:62;-1:-1:-1;;;17501:18:13;;;17494:48;17559:19;;10386:101:3;17170:414:13;10386:101:3;10534:4;-1:-1:-1;;;;;10512:26:3;:13;:18;;;-1:-1:-1;;;;;10512:26:3;;10496:98;;;;-1:-1:-1;;;10496:98:3;;17791:2:13;10496:98:3;;;17773:21:13;17830:2;17810:18;;;17803:30;17869:34;17849:18;;;17842:62;-1:-1:-1;;;17920:18:13;;;17913:36;17966:19;;10496:98:3;17589:402:13;10496:98:3;-1:-1:-1;;;;;10609:16:3;;10601:66;;;;-1:-1:-1;;;10601:66:3;;18198:2:13;10601:66:3;;;18180:21:13;18237:2;18217:18;;;18210:30;18276:34;18256:18;;;18249:62;-1:-1:-1;;;18327:18:13;;;18320:35;18372:19;;10601:66:3;17996:401:13;10601:66:3;10776:49;10793:1;10797:7;10806:13;:18;;;10776:8;:49::i;:::-;-1:-1:-1;;;;;10834:18:3;;;;;;:12;:18;;;;;:31;;10864:1;;10834:18;:31;;10864:1;;-1:-1:-1;;;;;10834:31:3;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;10834:31:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;10872:16:3;;-1:-1:-1;10872:16:3;;;:12;:16;;;;;:29;;-1:-1:-1;;;10872:16:3;;:29;;-1:-1:-1;;10872:29:3;;:::i;:::-;;;-1:-1:-1;;;;;10872:29:3;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10931:43:3;;;;;;;;-1:-1:-1;;;;;10931:43:3;;;;;-1:-1:-1;;;;;10957:15:3;10931:43;;;;;;;;;-1:-1:-1;10908:20:3;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;10908:66:3;-1:-1:-1;;;;;;10908:66:3;;;;;;;;;;;11224:11;10920:7;-1:-1:-1;11224:11:3;:::i;:::-;11287:1;11246:24;;;:11;:24;;;;;:29;11202:33;;-1:-1:-1;;;;;;11246:29:3;11242:236;;11304:20;11312:11;8157:12;;-1:-1:-1;8147:22:3;8070:105;11304:20;11300:171;;;11364:97;;;;;;;;11391:18;;-1:-1:-1;;;;;11364:97:3;;;;;;11422:28;;;;-1:-1:-1;;;;;11364:97:3;;;;;;;;;-1:-1:-1;11337:24:3;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;11337:124:3;-1:-1:-1;;;;;;11337:124:3;;;;;;;;;;;;11300:171;11510:7;11506:2;-1:-1:-1;;;;;11491:27:3;11500:4;-1:-1:-1;;;;;11491:27:3;;;;;;;;;;;11525:42;10134:1439;;;10044:1529;;;:::o;3979:510::-;-1:-1:-1;;;;;;;;;;;;;;;;;4096:16:3;4104:7;8157:12;;-1:-1:-1;8147:22:3;8070:105;4096:16;4088:71;;;;-1:-1:-1;;;4088:71:3;;19011:2:13;4088:71:3;;;18993:21:13;19050:2;19030:18;;;19023:30;19089:34;19069:18;;;19062:62;-1:-1:-1;;;19140:18:13;;;19133:40;19190:19;;4088:71:3;18809:406:13;4088:71:3;4168:26;4224:7;4204:214;4241:18;4233:4;:26;4204:214;;4278:31;4312:17;;;:11;:17;;;;;;;;;4278:51;;;;;;;;;-1:-1:-1;;;;;4278:51:3;;;;;-1:-1:-1;;;4278:51:3;;;-1:-1:-1;;;;;4278:51:3;;;;;;;;4342:28;4338:73;;4392:9;3979:510;-1:-1:-1;;;;3979:510:3:o;4338:73::-;-1:-1:-1;4261:6:3;;;;:::i;:::-;;;;4204:214;;;-1:-1:-1;4426:57:3;;-1:-1:-1;;;4426:57:3;;19563:2:13;4426:57:3;;;19545:21:13;19602:2;19582:18;;;19575:30;19641:34;19621:18;;;19614:62;-1:-1:-1;;;19692:18:13;;;19685:45;19747:19;;4426:57:3;19361:411:13;2433:191:9;2507:16;2526:6;;-1:-1:-1;;;;;2543:17:9;;;-1:-1:-1;;;;;;2543:17:9;;;;;;2576:40;;2526:6;;;;;;;2576:40;;2507:16;2576:40;2496:128;2433:191;:::o;13310:690:3:-;13447:4;-1:-1:-1;;;;;13464:13:3;;1436:19:0;:23;13460:535:3;;13503:72;;-1:-1:-1;;;13503:72:3;;-1:-1:-1;;;;;13503:36:3;;;;;:72;;682:10:1;;13554:4:3;;13560:7;;13569:5;;13503:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13503:72:3;;;;;;;;-1:-1:-1;;13503:72:3;;;;;;;;;;;;:::i;:::-;;;13490:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13734:6;:13;13751:1;13734:18;13730:215;;13767:61;;-1:-1:-1;;;13767:61:3;;;;;;;:::i;13730:215::-;13913:6;13907:13;13898:6;13894:2;13890:15;13883:38;13490:464;-1:-1:-1;;;;;;13625:55:3;-1:-1:-1;;;13625:55:3;;-1:-1:-1;13618:62:3;;13460:535;-1:-1:-1;13983:4:3;13460:535;13310:690;;;;;;:::o;1144:110:12:-;1204:13;1233;1226:20;;;;;:::i;338:723:11:-;394:13;615:5;624:1;615:10;611:53;;-1:-1:-1;;642:10:11;;;;;;;;;;;;-1:-1:-1;;;642:10:11;;;;;338:723::o;611:53::-;689:5;674:12;730:78;737:9;;730:78;;763:8;;;;:::i;:::-;;-1:-1:-1;786:10:11;;-1:-1:-1;794:2:11;786:10;;:::i;:::-;;;730:78;;;818:19;850:6;-1:-1:-1;;;;;840:17:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;840:17:11;;818:39;;868:154;875:10;;868:154;;902:11;912:1;902:11;;:::i;:::-;;-1:-1:-1;971:10:11;979:2;971:5;:10;:::i;:::-;958:24;;:2;:24;:::i;:::-;945:39;;928:6;935;928:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;928:56:11;;;;;;;;-1:-1:-1;999:11:11;1008:2;999:11;;:::i;:::-;;;868:154;;3733:240:3;3794:7;-1:-1:-1;;;;;3826:19:3;;3810:102;;;;-1:-1:-1;;;3810:102:3;;21234:2:13;3810:102:3;;;21216:21:13;21273:2;21253:18;;;21246:30;21312:34;21292:18;;;21285:62;-1:-1:-1;;;21363:18:13;;;21356:47;21420:19;;3810:102:3;21032:413:13;3810:102:3;-1:-1:-1;;;;;;3934:19:3;;;;;:12;:19;;;;;:32;-1:-1:-1;;;3934:32:3;;-1:-1:-1;;;;;3934:32:3;;3733:240::o;8618:1194::-;8746:12;;-1:-1:-1;;;;;8773:16:3;;8765:62;;;;-1:-1:-1;;;8765:62:3;;21652:2:13;8765:62:3;;;21634:21:13;21691:2;21671:18;;;21664:30;21730:34;21710:18;;;21703:62;-1:-1:-1;;;21781:18:13;;;21774:31;21822:19;;8765:62:3;21450:397:13;8765:62:3;8964:21;8972:12;8157;;-1:-1:-1;8147:22:3;8070:105;8964:21;8963:22;8955:64;;;;-1:-1:-1;;;8955:64:3;;22054:2:13;8955:64:3;;;22036:21:13;22093:2;22073:18;;;22066:30;22132:31;22112:18;;;22105:59;22181:18;;8955:64:3;21852:353:13;8955:64:3;-1:-1:-1;;;;;9131:16:3;;9098:30;9131:16;;;:12;:16;;;;;;;;;9098:49;;;;;;;;;-1:-1:-1;;;;;9098:49:3;;;;;-1:-1:-1;;;9098:49:3;;;;;;;;;;;9173:119;;;;;;;;9193:19;;9098:49;;9173:119;;;9193:39;;9223:8;;9193:39;:::i;:::-;-1:-1:-1;;;;;9173:119:3;;;;;9276:8;9241:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;9173:119:3;;;;;;-1:-1:-1;;;;;9154:16:3;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;9154:138:3;;;;;;;;;;;;9327:43;;;;;;;;;;-1:-1:-1;;;;;9353:15:3;9327:43;;;;;;;;9299:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;9299:71:3;-1:-1:-1;;;;;;9299:71:3;;;;;;;;;;;;;;;;;;9311:12;;9423:281;9447:8;9443:1;:12;9423:281;;;9476:38;;9501:12;;-1:-1:-1;;;;;9476:38:3;;;9493:1;;9476:38;;9493:1;;9476:38;9541:59;9572:1;9576:2;9580:12;9594:5;9541:22;:59::i;:::-;9523:150;;;;-1:-1:-1;;;9523:150:3;;;;;;;:::i;:::-;9682:14;;;;:::i;:::-;;;;9457:3;;;;;:::i;:::-;;;;9423:281;;;-1:-1:-1;9712:12:3;:27;;;9746:60;7520:311;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:367::-;2423:8;2433:6;2487:3;2480:4;2472:6;2468:17;2464:27;2454:55;;2505:1;2502;2495:12;2454:55;-1:-1:-1;2528:20:13;;-1:-1:-1;;;;;2560:30:13;;2557:50;;;2603:1;2600;2593:12;2557:50;2640:4;2632:6;2628:17;2616:29;;2700:3;2693:4;2683:6;2680:1;2676:14;2668:6;2664:27;2660:38;2657:47;2654:67;;;2717:1;2714;2707:12;2654:67;2360:367;;;;;:::o;2732:773::-;2854:6;2862;2870;2878;2931:2;2919:9;2910:7;2906:23;2902:32;2899:52;;;2947:1;2944;2937:12;2899:52;2987:9;2974:23;-1:-1:-1;;;;;3057:2:13;3049:6;3046:14;3043:34;;;3073:1;3070;3063:12;3043:34;3112:70;3174:7;3165:6;3154:9;3150:22;3112:70;:::i;:::-;3201:8;;-1:-1:-1;3086:96:13;-1:-1:-1;3289:2:13;3274:18;;3261:32;;-1:-1:-1;3305:16:13;;;3302:36;;;3334:1;3331;3324:12;3302:36;;3373:72;3437:7;3426:8;3415:9;3411:24;3373:72;:::i;:::-;2732:773;;;;-1:-1:-1;3464:8:13;-1:-1:-1;;;;2732:773:13:o;3510:328::-;3587:6;3595;3603;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3695:29;3714:9;3695:29;:::i;:::-;3685:39;;3743:38;3777:2;3766:9;3762:18;3743:38;:::i;:::-;3733:48;;3828:2;3817:9;3813:18;3800:32;3790:42;;3510:328;;;;;:::o;3843:592::-;3914:6;3922;3975:2;3963:9;3954:7;3950:23;3946:32;3943:52;;;3991:1;3988;3981:12;3943:52;4031:9;4018:23;-1:-1:-1;;;;;4101:2:13;4093:6;4090:14;4087:34;;;4117:1;4114;4107:12;4087:34;4155:6;4144:9;4140:22;4130:32;;4200:7;4193:4;4189:2;4185:13;4181:27;4171:55;;4222:1;4219;4212:12;4171:55;4262:2;4249:16;4288:2;4280:6;4277:14;4274:34;;;4304:1;4301;4294:12;4274:34;4349:7;4344:2;4335:6;4331:2;4327:15;4323:24;4320:37;4317:57;;;4370:1;4367;4360:12;4317:57;4401:2;4393:11;;;;;4423:6;;-1:-1:-1;3843:592:13;;-1:-1:-1;;;;3843:592:13:o;4440:186::-;4499:6;4552:2;4540:9;4531:7;4527:23;4523:32;4520:52;;;4568:1;4565;4558:12;4520:52;4591:29;4610:9;4591:29;:::i;4631:505::-;4726:6;4734;4742;4795:2;4783:9;4774:7;4770:23;4766:32;4763:52;;;4811:1;4808;4801:12;4763:52;4851:9;4838:23;-1:-1:-1;;;;;4876:6:13;4873:30;4870:50;;;4916:1;4913;4906:12;4870:50;4955:70;5017:7;5008:6;4997:9;4993:22;4955:70;:::i;:::-;5044:8;;4929:96;;-1:-1:-1;5126:2:13;5111:18;;;;5098:32;;4631:505;-1:-1:-1;;;;4631:505:13:o;5506:347::-;5571:6;5579;5632:2;5620:9;5611:7;5607:23;5603:32;5600:52;;;5648:1;5645;5638:12;5600:52;5671:29;5690:9;5671:29;:::i;:::-;5661:39;;5750:2;5739:9;5735:18;5722:32;5797:5;5790:13;5783:21;5776:5;5773:32;5763:60;;5819:1;5816;5809:12;5763:60;5842:5;5832:15;;;5506:347;;;;;:::o;5858:127::-;5919:10;5914:3;5910:20;5907:1;5900:31;5950:4;5947:1;5940:15;5974:4;5971:1;5964:15;5990:1138;6085:6;6093;6101;6109;6162:3;6150:9;6141:7;6137:23;6133:33;6130:53;;;6179:1;6176;6169:12;6130:53;6202:29;6221:9;6202:29;:::i;:::-;6192:39;;6250:38;6284:2;6273:9;6269:18;6250:38;:::i;:::-;6240:48;;6335:2;6324:9;6320:18;6307:32;6297:42;;6390:2;6379:9;6375:18;6362:32;-1:-1:-1;;;;;6454:2:13;6446:6;6443:14;6440:34;;;6470:1;6467;6460:12;6440:34;6508:6;6497:9;6493:22;6483:32;;6553:7;6546:4;6542:2;6538:13;6534:27;6524:55;;6575:1;6572;6565:12;6524:55;6611:2;6598:16;6633:2;6629;6626:10;6623:36;;;6639:18;;:::i;:::-;6714:2;6708:9;6682:2;6768:13;;-1:-1:-1;;6764:22:13;;;6788:2;6760:31;6756:40;6744:53;;;6812:18;;;6832:22;;;6809:46;6806:72;;;6858:18;;:::i;:::-;6898:10;6894:2;6887:22;6933:2;6925:6;6918:18;6973:7;6968:2;6963;6959;6955:11;6951:20;6948:33;6945:53;;;6994:1;6991;6984:12;6945:53;7050:2;7045;7041;7037:11;7032:2;7024:6;7020:15;7007:46;7095:1;7090:2;7085;7077:6;7073:15;7069:24;7062:35;7116:6;7106:16;;;;;;;5990:1138;;;;;;;:::o;7133:260::-;7201:6;7209;7262:2;7250:9;7241:7;7237:23;7233:32;7230:52;;;7278:1;7275;7268:12;7230:52;7301:29;7320:9;7301:29;:::i;:::-;7291:39;;7349:38;7383:2;7372:9;7368:18;7349:38;:::i;:::-;7339:48;;7133:260;;;;;:::o;7398:380::-;7477:1;7473:12;;;;7520;;;7541:61;;7595:4;7587:6;7583:17;7573:27;;7541:61;7648:2;7640:6;7637:14;7617:18;7614:38;7611:161;;7694:10;7689:3;7685:20;7682:1;7675:31;7729:4;7726:1;7719:15;7757:4;7754:1;7747:15;7611:161;;7398:380;;;:::o;9789:127::-;9850:10;9845:3;9841:20;9838:1;9831:31;9881:4;9878:1;9871:15;9905:4;9902:1;9895:15;9921:127;9982:10;9977:3;9973:20;9970:1;9963:31;10013:4;10010:1;10003:15;10037:4;10034:1;10027:15;10053:125;10118:9;;;10139:10;;;10136:36;;;10152:18;;:::i;10534:135::-;10573:3;10594:17;;;10591:43;;10614:18;;:::i;:::-;-1:-1:-1;10661:1:13;10650:13;;10534:135::o;12022:545::-;12124:2;12119:3;12116:11;12113:448;;;12160:1;12185:5;12181:2;12174:17;12230:4;12226:2;12216:19;12300:2;12288:10;12284:19;12281:1;12277:27;12271:4;12267:38;12336:4;12324:10;12321:20;12318:47;;;-1:-1:-1;12359:4:13;12318:47;12414:2;12409:3;12405:12;12402:1;12398:20;12392:4;12388:31;12378:41;;12469:82;12487:2;12480:5;12477:13;12469:82;;;12532:17;;;12513:1;12502:13;12469:82;;12743:1206;-1:-1:-1;;;;;12862:3:13;12859:27;12856:53;;;12889:18;;:::i;:::-;12918:94;13008:3;12968:38;13000:4;12994:11;12968:38;:::i;:::-;12962:4;12918:94;:::i;:::-;13038:1;13063:2;13058:3;13055:11;13080:1;13075:616;;;;13735:1;13752:3;13749:93;;;-1:-1:-1;13808:19:13;;;13795:33;13749:93;-1:-1:-1;;12700:1:13;12696:11;;;12692:24;12688:29;12678:40;12724:1;12720:11;;;12675:57;13855:78;;13048:895;;13075:616;11969:1;11962:14;;;12006:4;11993:18;;-1:-1:-1;;13111:17:13;;;13212:9;13234:229;13248:7;13245:1;13242:14;13234:229;;;13337:19;;;13324:33;13309:49;;13444:4;13429:20;;;;13397:1;13385:14;;;;13264:12;13234:229;;;13238:3;13491;13482:7;13479:16;13476:159;;;13615:1;13611:6;13605:3;13599;13596:1;13592:11;13588:21;13584:34;13580:39;13567:9;13562:3;13558:19;13545:33;13541:79;13533:6;13526:95;13476:159;;;13678:1;13672:3;13669:1;13665:11;13661:19;13655:4;13648:33;13048:895;;;12743:1206;;;:::o;15065:415::-;15267:2;15249:21;;;15306:2;15286:18;;;15279:30;15345:34;15340:2;15325:18;;15318:62;-1:-1:-1;;;15411:2:13;15396:18;;15389:49;15470:3;15455:19;;15065:415::o;15901:496::-;16080:3;16118:6;16112:13;16134:66;16193:6;16188:3;16181:4;16173:6;16169:17;16134:66;:::i;:::-;16263:13;;16222:16;;;;16285:70;16263:13;16222:16;16332:4;16320:17;;16285:70;:::i;:::-;16371:20;;15901:496;-1:-1:-1;;;;15901:496:13:o;18402:200::-;-1:-1:-1;;;;;18538:10:13;;;18526;;;18522:27;;18561:12;;;18558:38;;;18576:18;;:::i;:::-;18558:38;18402:200;;;;:::o;18607:197::-;-1:-1:-1;;;;;18729:10:13;;;18741;;;18725:27;;18764:11;;;18761:37;;;18778:18;;:::i;19220:136::-;19259:3;19287:5;19277:39;;19296:18;;:::i;:::-;-1:-1:-1;;;19332:18:13;;19220:136::o;19777:489::-;-1:-1:-1;;;;;20046:15:13;;;20028:34;;20098:15;;20093:2;20078:18;;20071:43;20145:2;20130:18;;20123:34;;;20193:3;20188:2;20173:18;;20166:31;;;19971:4;;20214:46;;20240:19;;20232:6;20214:46;:::i;:::-;20206:54;19777:489;-1:-1:-1;;;;;;19777:489:13:o;20271:249::-;20340:6;20393:2;20381:9;20372:7;20368:23;20364:32;20361:52;;;20409:1;20406;20399:12;20361:52;20441:9;20435:16;20460:30;20484:5;20460:30;:::i;20525:127::-;20586:10;20581:3;20577:20;20574:1;20567:31;20617:4;20614:1;20607:15;20641:4;20638:1;20631:15;20657:120;20697:1;20723;20713:35;;20728:18;;:::i;:::-;-1:-1:-1;20762:9:13;;20657:120::o;20782:128::-;20849:9;;;20870:11;;;20867:37;;;20884:18;;:::i;20915:112::-;20947:1;20973;20963:35;;20978:18;;:::i;:::-;-1:-1:-1;21012:9:13;;20915:112::o

Swarm Source

ipfs://ec4e712d8af162d9626bda45eb20310d8d7bf1135350bfb5d5dbba8be423be8a
Loading...
Loading
Loading...
Loading
[ 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.