ETH Price: $2,926.51 (-7.61%)
Gas: 8 Gwei

Token

Pepe Swamp Club (PPSC)
 

Overview

Max Total Supply

6,970 PPSC

Holders

2,331

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
brick-14.eth
Balance
3 PPSC
0xacd1f96ca68affeaf340d0179a95f81da2723dfc
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:
PepeSwampClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 13 : PepeSwampClub.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721A.sol";

contract PepeSwampClub is ERC721A, Ownable, ReentrancyGuard {

    mapping (address => uint256) public WalletMint;
    bool public StatusMinting  = true;
    uint public MintPrice = 0.0025 ether; //0.0025 ETH
    string public baseURI;  
    uint public freeMint = 2;
    uint public maxMintPerTx = 20;  
    uint public maxSupply = 6969;

    constructor() ERC721A("Pepe Swamp Club", "PPSC",88,8888){}

    function mint(uint256 qty) external payable
    {
        require(StatusMinting , "PPSC:  Minting Public Pause");
        require(qty <= maxMintPerTx, "PPSC:  Limit Per Transaction");
        require(totalSupply() + qty <= maxSupply,"PPSC:  Soldout");
        _safemint(qty);
    }

    function _safemint(uint256 qty) internal
    {
        if(WalletMint[msg.sender] < freeMint) 
        {
            if(qty < freeMint) qty = freeMint;
           require(msg.value >= (qty - freeMint) * MintPrice,"PPSC: Not Enough Ethereum");
            WalletMint[msg.sender] += qty;
           _safeMint(msg.sender, qty);
        }
        else
        {
           require(msg.value >= qty * MintPrice,"PPSC: Not Enough Ethereum");
            WalletMint[msg.sender] += qty;
           _safeMint(msg.sender, qty);
        }
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

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

    function airdrop(address[] calldata listedAirdrop ,uint256 qty) external onlyOwner {
        for (uint256 i = 0; i < listedAirdrop.length; i++) {
           _safeMint(listedAirdrop[i], qty);
        }
    }
    function OwnerBatchMint(uint256 qty) external onlyOwner
    {
        _safeMint(msg.sender, qty);
    }

    function setPublicMinting() external onlyOwner {
        StatusMinting  = !StatusMinting ;
    }
    
    function setBaseURI(string calldata baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setPrice(uint256 qty_) external onlyOwner {
        MintPrice = qty_;
    }

    function setMintPerTx(uint256 qty_) external onlyOwner {
        maxMintPerTx = qty_;
    }

    function setFreeMint(uint256 qty_) external onlyOwner {
        freeMint = qty_;
    }

    function setMaxSupply(uint256 qty_) external onlyOwner {
        maxSupply = qty_;
    }

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(payable(address(this)).balance);
    }

}

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

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

File 3 of 13 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

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 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev 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 5 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 6 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 7 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

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":"MintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"OwnerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"StatusMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WalletMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"listedAirdrop","type":"address[]"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"uint256","name":"qty_","type":"uint256"}],"name":"setFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty_","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty_","type":"uint256"}],"name":"setMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMinting","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000805560006007556001600b60006101000a81548160ff0219169083151502179055506608e1bc9bf04000600c556002600e556014600f55611b396010553480156200005057600080fd5b506040518060400160405280600f81526020017f50657065205377616d7020436c756200000000000000000000000000000000008152506040518060400160405280600481526020017f505053430000000000000000000000000000000000000000000000000000000081525060586122b86000811162000108576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000ff90620003b0565b60405180910390fd5b600082116200014e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000145906200038e565b60405180910390fd5b83600190805190602001906200016692919062000290565b5082600290805190602001906200017f92919062000290565b508160a08181525050806080818152505050505050620001b4620001a8620001c260201b60201c565b620001ca60201b60201c565b6001600981905550620004e6565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029e90620003e3565b90600052602060002090601f016020900481019282620002c257600085556200030e565b82601f10620002dd57805160ff19168380011785556200030e565b828001600101855582156200030e579182015b828111156200030d578251825591602001919060010190620002f0565b5b5090506200031d919062000321565b5090565b5b808211156200033c57600081600090555060010162000322565b5090565b60006200034f602783620003d2565b91506200035c8262000448565b604082019050919050565b600062000376602e83620003d2565b9150620003838262000497565b604082019050919050565b60006020820190508181036000830152620003a98162000340565b9050919050565b60006020820190508181036000830152620003cb8162000367565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620003fc57607f821691505b6020821081141562000413576200041262000419565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516147316200051760003960008181611f5d01528181611f8601526128ff0152600050506147316000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063c204642c116100ab578063de7fcb1d1161006f578063de7fcb1d146107e2578063e645f7081461080d578063e985e9c51461084a578063f2fde38b14610887578063fdbf9ef2146108b057610225565b8063c204642c146106e9578063c87b56dd14610712578063d5abeb011461074f578063d7224ba01461077a578063dc33e681146107a557610225565b806395d89b41116100f257806395d89b4114610639578063a0712d6814610664578063a22cb46514610680578063ac915c06146106a9578063b88d4fde146106c057610225565b8063715018a6146105a55780638171609b146105bc5780638da5cb5b146105e557806391b7f5ed1461061057610225565b8063481fbef0116101b15780636628f31f116101755780636628f31f146104c05780636c0360eb146104eb5780636f8b44b01461051657806370a082311461053f57806370e093691461057c57610225565b8063481fbef0146103c95780634f6ccce7146103f257806355f804b31461042f5780635b70ea9f146104585780636352211e1461048357610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632f745c591461034c5780633ccfd60b1461038957806342842e0e146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906131c5565b6108db565b60405161025e919061375f565b60405180910390f35b34801561027357600080fd5b5061027c610a25565b604051610289919061377a565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061326c565b610ab7565b6040516102c691906136f8565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613125565b610b3c565b005b34801561030457600080fd5b5061030d610c55565b60405161031a9190613abc565b60405180910390f35b34801561032f57600080fd5b5061034a6004803603810190610345919061300f565b610c5e565b005b34801561035857600080fd5b50610373600480360381019061036e9190613125565b610c6e565b6040516103809190613abc565b60405180910390f35b34801561039557600080fd5b5061039e610e6c565b005b3480156103ac57600080fd5b506103c760048036038101906103c2919061300f565b610ed4565b005b3480156103d557600080fd5b506103f060048036038101906103eb919061326c565b610ef4565b005b3480156103fe57600080fd5b506104196004803603810190610414919061326c565b610f06565b6040516104269190613abc565b60405180910390f35b34801561043b57600080fd5b506104566004803603810190610451919061321f565b610f59565b005b34801561046457600080fd5b5061046d610f77565b60405161047a9190613abc565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a5919061326c565b610f7d565b6040516104b791906136f8565b60405180910390f35b3480156104cc57600080fd5b506104d5610f93565b6040516104e2919061375f565b60405180910390f35b3480156104f757600080fd5b50610500610fa6565b60405161050d919061377a565b60405180910390f35b34801561052257600080fd5b5061053d6004803603810190610538919061326c565b611034565b005b34801561054b57600080fd5b5061056660048036038101906105619190612fa2565b611046565b6040516105739190613abc565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e919061326c565b61112f565b005b3480156105b157600080fd5b506105ba611141565b005b3480156105c857600080fd5b506105e360048036038101906105de919061326c565b611155565b005b3480156105f157600080fd5b506105fa61116a565b60405161060791906136f8565b60405180910390f35b34801561061c57600080fd5b506106376004803603810190610632919061326c565b611194565b005b34801561064557600080fd5b5061064e6111a6565b60405161065b919061377a565b60405180910390f35b61067e6004803603810190610679919061326c565b611238565b005b34801561068c57600080fd5b506106a760048036038101906106a291906130e5565b61132f565b005b3480156106b557600080fd5b506106be6114b0565b005b3480156106cc57600080fd5b506106e760048036038101906106e29190613062565b6114e4565b005b3480156106f557600080fd5b50610710600480360381019061070b9190613165565b611540565b005b34801561071e57600080fd5b506107396004803603810190610734919061326c565b6115a0565b604051610746919061377a565b60405180910390f35b34801561075b57600080fd5b50610764611647565b6040516107719190613abc565b60405180910390f35b34801561078657600080fd5b5061078f61164d565b60405161079c9190613abc565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c79190612fa2565b611653565b6040516107d99190613abc565b60405180910390f35b3480156107ee57600080fd5b506107f7611665565b6040516108049190613abc565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190612fa2565b61166b565b6040516108419190613abc565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190612fcf565b611683565b60405161087e919061375f565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a99190612fa2565b611717565b005b3480156108bc57600080fd5b506108c561179b565b6040516108d29190613abc565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1e5750610a1d826117a1565b5b9050919050565b606060018054610a3490613dfb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6090613dfb565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b6000610ac28261180b565b610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af890613a7c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4782610f7d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf9061397c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd7611818565b73ffffffffffffffffffffffffffffffffffffffff161480610c065750610c0581610c00611818565b611683565b5b610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c9061387c565b60405180910390fd5b610c50838383611820565b505050565b60008054905090565b610c698383836118d2565b505050565b6000610c7983611046565b8210610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb19061379c565b60405180910390fd5b6000610cc4610c55565b905060008060005b83811015610e2a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dbe57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e165786841415610e07578195505050505050610e66565b8380610e1290613e5e565b9450505b508080610e2290613e5e565b915050610ccc565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90613a1c565b60405180910390fd5b92915050565b610e74611e8b565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610ed1573d6000803e3d6000fd5b50565b610eef838383604051806020016040528060008152506114e4565b505050565b610efc611e8b565b80600f8190555050565b6000610f10610c55565b8210610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f489061381c565b60405180910390fd5b819050919050565b610f61611e8b565b8181600d9190610f72929190612d40565b505050565b600e5481565b6000610f8882611f09565b600001519050919050565b600b60009054906101000a900460ff1681565b600d8054610fb390613dfb565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdf90613dfb565b801561102c5780601f106110015761010080835404028352916020019161102c565b820191906000526020600020905b81548152906001019060200180831161100f57829003601f168201915b505050505081565b61103c611e8b565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061389c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611137611e8b565b80600e8190555050565b611149611e8b565b611153600061210c565b565b61115d611e8b565b61116733826121d2565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61119c611e8b565b80600c8190555050565b6060600280546111b590613dfb565b80601f01602080910402602001604051908101604052809291908181526020018280546111e190613dfb565b801561122e5780601f106112035761010080835404028352916020019161122e565b820191906000526020600020905b81548152906001019060200180831161121157829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e906138fc565b60405180910390fd5b600f548111156112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c3906139fc565b60405180910390fd5b601054816112d8610c55565b6112e29190613bb6565b1115611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90613a3c565b60405180910390fd5b61132c816121f0565b50565b611337611818565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c9061393c565b60405180910390fd5b80600660006113b2611818565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661145f611818565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a4919061375f565b60405180910390a35050565b6114b8611e8b565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6114ef8484846118d2565b6114fb848484846123bf565b61153a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115319061399c565b60405180910390fd5b50505050565b611548611e8b565b60005b8383905081101561159a5761158784848381811061156c5761156b613f65565b5b90506020020160208101906115819190612fa2565b836121d2565b808061159290613e5e565b91505061154b565b50505050565b60606115ab8261180b565b6115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e19061391c565b60405180910390fd5b60006115f4612556565b90506000815111611614576040518060200160405280600081525061163f565b8061161e846125e8565b60405160200161162f9291906136d4565b6040516020818303038152906040525b915050919050565b60105481565b60075481565b600061165e82612749565b9050919050565b600f5481565b600a6020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61171f611e8b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611786906137dc565b60405180910390fd5b6117988161210c565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006118dd82611f09565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611904611818565b73ffffffffffffffffffffffffffffffffffffffff1614806119605750611929611818565b73ffffffffffffffffffffffffffffffffffffffff1661194884610ab7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061197c575061197b8260000151611976611818565b611683565b5b9050806119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b59061395c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a27906138bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a979061383c565b60405180910390fd5b611aad8585856001612832565b611abd6000848460000151611820565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b2b9190613c97565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611bcf9190613b70565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611cd59190613bb6565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e1b57611d4b8161180b565b15611e1a576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e838686866001612838565b505050505050565b611e93611818565b73ffffffffffffffffffffffffffffffffffffffff16611eb161116a565b73ffffffffffffffffffffffffffffffffffffffff1614611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe906138dc565b60405180910390fd5b565b611f11612dc6565b611f1a8261180b565b611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f50906137fc565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611fbd5760017f000000000000000000000000000000000000000000000000000000000000000084611fb09190613ccb565b611fba9190613bb6565b90505b60008390505b8181106120cb576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120b757809350505050612107565b5080806120c390613dd1565b915050611fc3565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fe90613a5c565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121ec82826040518060200160405280600081525061283e565b5050565b600e54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561230b57600e5481101561224957600e5490505b600c54600e548261225a9190613ccb565b6122649190613c3d565b3410156122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d906137bc565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122f59190613bb6565b9250508190555061230633826121d2565b6123bc565b600c54816123199190613c3d565b34101561235b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612352906137bc565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123aa9190613bb6565b925050819055506123bb33826121d2565b5b50565b60006123e08473ffffffffffffffffffffffffffffffffffffffff16612d1d565b15612549578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612409611818565b8786866040518563ffffffff1660e01b815260040161242b9493929190613713565b602060405180830381600087803b15801561244557600080fd5b505af192505050801561247657506040513d601f19601f8201168201806040525081019061247391906131f2565b60015b6124f9573d80600081146124a6576040519150601f19603f3d011682016040523d82523d6000602084013e6124ab565b606091505b506000815114156124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e89061399c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061254e565b600190505b949350505050565b6060600d805461256590613dfb565b80601f016020809104026020016040519081016040528092919081815260200182805461259190613dfb565b80156125de5780601f106125b3576101008083540402835291602001916125de565b820191906000526020600020905b8154815290600101906020018083116125c157829003601f168201915b5050505050905090565b60606000821415612630576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612744565b600082905060005b6000821461266257808061264b90613e5e565b915050600a8261265b9190613c0c565b9150612638565b60008167ffffffffffffffff81111561267e5761267d613f94565b5b6040519080825280601f01601f1916602001820160405280156126b05781602001600182028036833780820191505090505b5090505b6000851461273d576001826126c99190613ccb565b9150600a856126d89190613ea7565b60306126e49190613bb6565b60f81b8183815181106126fa576126f9613f65565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127369190613c0c565b94506126b4565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b19061385c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ab906139dc565b60405180910390fd5b6128bd8161180b565b156128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f4906139bc565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295790613a9c565b60405180910390fd5b61296d6000858386612832565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612a6a9190613b70565b6fffffffffffffffffffffffffffffffff168152602001858360200151612a919190613b70565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d0057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ca060008884886123bf565b612cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd69061399c565b60405180910390fd5b8180612cea90613e5e565b9250508080612cf890613e5e565b915050612c2f565b5080600081905550612d156000878588612838565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612d4c90613dfb565b90600052602060002090601f016020900481019282612d6e5760008555612db5565b82601f10612d8757803560ff1916838001178555612db5565b82800160010185558215612db5579182015b82811115612db4578235825591602001919060010190612d99565b5b509050612dc29190612e00565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e19576000816000905550600101612e01565b5090565b6000612e30612e2b84613afc565b613ad7565b905082815260208101848484011115612e4c57612e4b613fd2565b5b612e57848285613d8f565b509392505050565b600081359050612e6e8161469f565b92915050565b60008083601f840112612e8a57612e89613fc8565b5b8235905067ffffffffffffffff811115612ea757612ea6613fc3565b5b602083019150836020820283011115612ec357612ec2613fcd565b5b9250929050565b600081359050612ed9816146b6565b92915050565b600081359050612eee816146cd565b92915050565b600081519050612f03816146cd565b92915050565b600082601f830112612f1e57612f1d613fc8565b5b8135612f2e848260208601612e1d565b91505092915050565b60008083601f840112612f4d57612f4c613fc8565b5b8235905067ffffffffffffffff811115612f6a57612f69613fc3565b5b602083019150836001820283011115612f8657612f85613fcd565b5b9250929050565b600081359050612f9c816146e4565b92915050565b600060208284031215612fb857612fb7613fdc565b5b6000612fc684828501612e5f565b91505092915050565b60008060408385031215612fe657612fe5613fdc565b5b6000612ff485828601612e5f565b925050602061300585828601612e5f565b9150509250929050565b60008060006060848603121561302857613027613fdc565b5b600061303686828701612e5f565b935050602061304786828701612e5f565b925050604061305886828701612f8d565b9150509250925092565b6000806000806080858703121561307c5761307b613fdc565b5b600061308a87828801612e5f565b945050602061309b87828801612e5f565b93505060406130ac87828801612f8d565b925050606085013567ffffffffffffffff8111156130cd576130cc613fd7565b5b6130d987828801612f09565b91505092959194509250565b600080604083850312156130fc576130fb613fdc565b5b600061310a85828601612e5f565b925050602061311b85828601612eca565b9150509250929050565b6000806040838503121561313c5761313b613fdc565b5b600061314a85828601612e5f565b925050602061315b85828601612f8d565b9150509250929050565b60008060006040848603121561317e5761317d613fdc565b5b600084013567ffffffffffffffff81111561319c5761319b613fd7565b5b6131a886828701612e74565b935093505060206131bb86828701612f8d565b9150509250925092565b6000602082840312156131db576131da613fdc565b5b60006131e984828501612edf565b91505092915050565b60006020828403121561320857613207613fdc565b5b600061321684828501612ef4565b91505092915050565b6000806020838503121561323657613235613fdc565b5b600083013567ffffffffffffffff81111561325457613253613fd7565b5b61326085828601612f37565b92509250509250929050565b60006020828403121561328257613281613fdc565b5b600061329084828501612f8d565b91505092915050565b6132a281613cff565b82525050565b6132b181613d11565b82525050565b60006132c282613b2d565b6132cc8185613b43565b93506132dc818560208601613d9e565b6132e581613fe1565b840191505092915050565b60006132fb82613b38565b6133058185613b54565b9350613315818560208601613d9e565b61331e81613fe1565b840191505092915050565b600061333482613b38565b61333e8185613b65565b935061334e818560208601613d9e565b80840191505092915050565b6000613367602283613b54565b915061337282613ff2565b604082019050919050565b600061338a601983613b54565b915061339582614041565b602082019050919050565b60006133ad602683613b54565b91506133b88261406a565b604082019050919050565b60006133d0602a83613b54565b91506133db826140b9565b604082019050919050565b60006133f3602383613b54565b91506133fe82614108565b604082019050919050565b6000613416602583613b54565b915061342182614157565b604082019050919050565b6000613439603183613b54565b9150613444826141a6565b604082019050919050565b600061345c603983613b54565b9150613467826141f5565b604082019050919050565b600061347f602b83613b54565b915061348a82614244565b604082019050919050565b60006134a2602683613b54565b91506134ad82614293565b604082019050919050565b60006134c5602083613b54565b91506134d0826142e2565b602082019050919050565b60006134e8601b83613b54565b91506134f38261430b565b602082019050919050565b600061350b602f83613b54565b915061351682614334565b604082019050919050565b600061352e601a83613b54565b915061353982614383565b602082019050919050565b6000613551603283613b54565b915061355c826143ac565b604082019050919050565b6000613574602283613b54565b915061357f826143fb565b604082019050919050565b6000613597603383613b54565b91506135a28261444a565b604082019050919050565b60006135ba601d83613b54565b91506135c582614499565b602082019050919050565b60006135dd602183613b54565b91506135e8826144c2565b604082019050919050565b6000613600601c83613b54565b915061360b82614511565b602082019050919050565b6000613623602e83613b54565b915061362e8261453a565b604082019050919050565b6000613646600e83613b54565b915061365182614589565b602082019050919050565b6000613669602f83613b54565b9150613674826145b2565b604082019050919050565b600061368c602d83613b54565b915061369782614601565b604082019050919050565b60006136af602283613b54565b91506136ba82614650565b604082019050919050565b6136ce81613d85565b82525050565b60006136e08285613329565b91506136ec8284613329565b91508190509392505050565b600060208201905061370d6000830184613299565b92915050565b60006080820190506137286000830187613299565b6137356020830186613299565b61374260408301856136c5565b818103606083015261375481846132b7565b905095945050505050565b600060208201905061377460008301846132a8565b92915050565b6000602082019050818103600083015261379481846132f0565b905092915050565b600060208201905081810360008301526137b58161335a565b9050919050565b600060208201905081810360008301526137d58161337d565b9050919050565b600060208201905081810360008301526137f5816133a0565b9050919050565b60006020820190508181036000830152613815816133c3565b9050919050565b60006020820190508181036000830152613835816133e6565b9050919050565b6000602082019050818103600083015261385581613409565b9050919050565b600060208201905081810360008301526138758161342c565b9050919050565b600060208201905081810360008301526138958161344f565b9050919050565b600060208201905081810360008301526138b581613472565b9050919050565b600060208201905081810360008301526138d581613495565b9050919050565b600060208201905081810360008301526138f5816134b8565b9050919050565b60006020820190508181036000830152613915816134db565b9050919050565b60006020820190508181036000830152613935816134fe565b9050919050565b6000602082019050818103600083015261395581613521565b9050919050565b6000602082019050818103600083015261397581613544565b9050919050565b6000602082019050818103600083015261399581613567565b9050919050565b600060208201905081810360008301526139b58161358a565b9050919050565b600060208201905081810360008301526139d5816135ad565b9050919050565b600060208201905081810360008301526139f5816135d0565b9050919050565b60006020820190508181036000830152613a15816135f3565b9050919050565b60006020820190508181036000830152613a3581613616565b9050919050565b60006020820190508181036000830152613a5581613639565b9050919050565b60006020820190508181036000830152613a758161365c565b9050919050565b60006020820190508181036000830152613a958161367f565b9050919050565b60006020820190508181036000830152613ab5816136a2565b9050919050565b6000602082019050613ad160008301846136c5565b92915050565b6000613ae1613af2565b9050613aed8282613e2d565b919050565b6000604051905090565b600067ffffffffffffffff821115613b1757613b16613f94565b5b613b2082613fe1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b7b82613d49565b9150613b8683613d49565b9250826fffffffffffffffffffffffffffffffff03821115613bab57613baa613ed8565b5b828201905092915050565b6000613bc182613d85565b9150613bcc83613d85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c0157613c00613ed8565b5b828201905092915050565b6000613c1782613d85565b9150613c2283613d85565b925082613c3257613c31613f07565b5b828204905092915050565b6000613c4882613d85565b9150613c5383613d85565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c8c57613c8b613ed8565b5b828202905092915050565b6000613ca282613d49565b9150613cad83613d49565b925082821015613cc057613cbf613ed8565b5b828203905092915050565b6000613cd682613d85565b9150613ce183613d85565b925082821015613cf457613cf3613ed8565b5b828203905092915050565b6000613d0a82613d65565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dbc578082015181840152602081019050613da1565b83811115613dcb576000848401525b50505050565b6000613ddc82613d85565b91506000821415613df057613def613ed8565b5b600182039050919050565b60006002820490506001821680613e1357607f821691505b60208210811415613e2757613e26613f36565b5b50919050565b613e3682613fe1565b810181811067ffffffffffffffff82111715613e5557613e54613f94565b5b80604052505050565b6000613e6982613d85565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e9c57613e9b613ed8565b5b600182019050919050565b6000613eb282613d85565b9150613ebd83613d85565b925082613ecd57613ecc613f07565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f505053433a204e6f7420456e6f75676820457468657265756d00000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f505053433a20204d696e74696e67205075626c69632050617573650000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f505053433a20204c696d697420506572205472616e73616374696f6e00000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f505053433a2020536f6c646f7574000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6146a881613cff565b81146146b357600080fd5b50565b6146bf81613d11565b81146146ca57600080fd5b50565b6146d681613d1d565b81146146e157600080fd5b50565b6146ed81613d85565b81146146f857600080fd5b5056fea2646970667358221220e60f106df808a78b27a2c532639ac688e5974f342f0475b093a00204e0bfecd064736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063c204642c116100ab578063de7fcb1d1161006f578063de7fcb1d146107e2578063e645f7081461080d578063e985e9c51461084a578063f2fde38b14610887578063fdbf9ef2146108b057610225565b8063c204642c146106e9578063c87b56dd14610712578063d5abeb011461074f578063d7224ba01461077a578063dc33e681146107a557610225565b806395d89b41116100f257806395d89b4114610639578063a0712d6814610664578063a22cb46514610680578063ac915c06146106a9578063b88d4fde146106c057610225565b8063715018a6146105a55780638171609b146105bc5780638da5cb5b146105e557806391b7f5ed1461061057610225565b8063481fbef0116101b15780636628f31f116101755780636628f31f146104c05780636c0360eb146104eb5780636f8b44b01461051657806370a082311461053f57806370e093691461057c57610225565b8063481fbef0146103c95780634f6ccce7146103f257806355f804b31461042f5780635b70ea9f146104585780636352211e1461048357610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632f745c591461034c5780633ccfd60b1461038957806342842e0e146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906131c5565b6108db565b60405161025e919061375f565b60405180910390f35b34801561027357600080fd5b5061027c610a25565b604051610289919061377a565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061326c565b610ab7565b6040516102c691906136f8565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613125565b610b3c565b005b34801561030457600080fd5b5061030d610c55565b60405161031a9190613abc565b60405180910390f35b34801561032f57600080fd5b5061034a6004803603810190610345919061300f565b610c5e565b005b34801561035857600080fd5b50610373600480360381019061036e9190613125565b610c6e565b6040516103809190613abc565b60405180910390f35b34801561039557600080fd5b5061039e610e6c565b005b3480156103ac57600080fd5b506103c760048036038101906103c2919061300f565b610ed4565b005b3480156103d557600080fd5b506103f060048036038101906103eb919061326c565b610ef4565b005b3480156103fe57600080fd5b506104196004803603810190610414919061326c565b610f06565b6040516104269190613abc565b60405180910390f35b34801561043b57600080fd5b506104566004803603810190610451919061321f565b610f59565b005b34801561046457600080fd5b5061046d610f77565b60405161047a9190613abc565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a5919061326c565b610f7d565b6040516104b791906136f8565b60405180910390f35b3480156104cc57600080fd5b506104d5610f93565b6040516104e2919061375f565b60405180910390f35b3480156104f757600080fd5b50610500610fa6565b60405161050d919061377a565b60405180910390f35b34801561052257600080fd5b5061053d6004803603810190610538919061326c565b611034565b005b34801561054b57600080fd5b5061056660048036038101906105619190612fa2565b611046565b6040516105739190613abc565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e919061326c565b61112f565b005b3480156105b157600080fd5b506105ba611141565b005b3480156105c857600080fd5b506105e360048036038101906105de919061326c565b611155565b005b3480156105f157600080fd5b506105fa61116a565b60405161060791906136f8565b60405180910390f35b34801561061c57600080fd5b506106376004803603810190610632919061326c565b611194565b005b34801561064557600080fd5b5061064e6111a6565b60405161065b919061377a565b60405180910390f35b61067e6004803603810190610679919061326c565b611238565b005b34801561068c57600080fd5b506106a760048036038101906106a291906130e5565b61132f565b005b3480156106b557600080fd5b506106be6114b0565b005b3480156106cc57600080fd5b506106e760048036038101906106e29190613062565b6114e4565b005b3480156106f557600080fd5b50610710600480360381019061070b9190613165565b611540565b005b34801561071e57600080fd5b506107396004803603810190610734919061326c565b6115a0565b604051610746919061377a565b60405180910390f35b34801561075b57600080fd5b50610764611647565b6040516107719190613abc565b60405180910390f35b34801561078657600080fd5b5061078f61164d565b60405161079c9190613abc565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c79190612fa2565b611653565b6040516107d99190613abc565b60405180910390f35b3480156107ee57600080fd5b506107f7611665565b6040516108049190613abc565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190612fa2565b61166b565b6040516108419190613abc565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190612fcf565b611683565b60405161087e919061375f565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a99190612fa2565b611717565b005b3480156108bc57600080fd5b506108c561179b565b6040516108d29190613abc565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1e5750610a1d826117a1565b5b9050919050565b606060018054610a3490613dfb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6090613dfb565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b6000610ac28261180b565b610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af890613a7c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4782610f7d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf9061397c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd7611818565b73ffffffffffffffffffffffffffffffffffffffff161480610c065750610c0581610c00611818565b611683565b5b610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c9061387c565b60405180910390fd5b610c50838383611820565b505050565b60008054905090565b610c698383836118d2565b505050565b6000610c7983611046565b8210610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb19061379c565b60405180910390fd5b6000610cc4610c55565b905060008060005b83811015610e2a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dbe57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e165786841415610e07578195505050505050610e66565b8380610e1290613e5e565b9450505b508080610e2290613e5e565b915050610ccc565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90613a1c565b60405180910390fd5b92915050565b610e74611e8b565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610ed1573d6000803e3d6000fd5b50565b610eef838383604051806020016040528060008152506114e4565b505050565b610efc611e8b565b80600f8190555050565b6000610f10610c55565b8210610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f489061381c565b60405180910390fd5b819050919050565b610f61611e8b565b8181600d9190610f72929190612d40565b505050565b600e5481565b6000610f8882611f09565b600001519050919050565b600b60009054906101000a900460ff1681565b600d8054610fb390613dfb565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdf90613dfb565b801561102c5780601f106110015761010080835404028352916020019161102c565b820191906000526020600020905b81548152906001019060200180831161100f57829003601f168201915b505050505081565b61103c611e8b565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061389c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611137611e8b565b80600e8190555050565b611149611e8b565b611153600061210c565b565b61115d611e8b565b61116733826121d2565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61119c611e8b565b80600c8190555050565b6060600280546111b590613dfb565b80601f01602080910402602001604051908101604052809291908181526020018280546111e190613dfb565b801561122e5780601f106112035761010080835404028352916020019161122e565b820191906000526020600020905b81548152906001019060200180831161121157829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e906138fc565b60405180910390fd5b600f548111156112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c3906139fc565b60405180910390fd5b601054816112d8610c55565b6112e29190613bb6565b1115611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90613a3c565b60405180910390fd5b61132c816121f0565b50565b611337611818565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c9061393c565b60405180910390fd5b80600660006113b2611818565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661145f611818565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a4919061375f565b60405180910390a35050565b6114b8611e8b565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6114ef8484846118d2565b6114fb848484846123bf565b61153a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115319061399c565b60405180910390fd5b50505050565b611548611e8b565b60005b8383905081101561159a5761158784848381811061156c5761156b613f65565b5b90506020020160208101906115819190612fa2565b836121d2565b808061159290613e5e565b91505061154b565b50505050565b60606115ab8261180b565b6115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e19061391c565b60405180910390fd5b60006115f4612556565b90506000815111611614576040518060200160405280600081525061163f565b8061161e846125e8565b60405160200161162f9291906136d4565b6040516020818303038152906040525b915050919050565b60105481565b60075481565b600061165e82612749565b9050919050565b600f5481565b600a6020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61171f611e8b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611786906137dc565b60405180910390fd5b6117988161210c565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006118dd82611f09565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611904611818565b73ffffffffffffffffffffffffffffffffffffffff1614806119605750611929611818565b73ffffffffffffffffffffffffffffffffffffffff1661194884610ab7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061197c575061197b8260000151611976611818565b611683565b5b9050806119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b59061395c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a27906138bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a979061383c565b60405180910390fd5b611aad8585856001612832565b611abd6000848460000151611820565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b2b9190613c97565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611bcf9190613b70565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611cd59190613bb6565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e1b57611d4b8161180b565b15611e1a576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e838686866001612838565b505050505050565b611e93611818565b73ffffffffffffffffffffffffffffffffffffffff16611eb161116a565b73ffffffffffffffffffffffffffffffffffffffff1614611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe906138dc565b60405180910390fd5b565b611f11612dc6565b611f1a8261180b565b611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f50906137fc565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000588310611fbd5760017f000000000000000000000000000000000000000000000000000000000000005884611fb09190613ccb565b611fba9190613bb6565b90505b60008390505b8181106120cb576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120b757809350505050612107565b5080806120c390613dd1565b915050611fc3565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fe90613a5c565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121ec82826040518060200160405280600081525061283e565b5050565b600e54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561230b57600e5481101561224957600e5490505b600c54600e548261225a9190613ccb565b6122649190613c3d565b3410156122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d906137bc565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122f59190613bb6565b9250508190555061230633826121d2565b6123bc565b600c54816123199190613c3d565b34101561235b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612352906137bc565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123aa9190613bb6565b925050819055506123bb33826121d2565b5b50565b60006123e08473ffffffffffffffffffffffffffffffffffffffff16612d1d565b15612549578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612409611818565b8786866040518563ffffffff1660e01b815260040161242b9493929190613713565b602060405180830381600087803b15801561244557600080fd5b505af192505050801561247657506040513d601f19601f8201168201806040525081019061247391906131f2565b60015b6124f9573d80600081146124a6576040519150601f19603f3d011682016040523d82523d6000602084013e6124ab565b606091505b506000815114156124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e89061399c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061254e565b600190505b949350505050565b6060600d805461256590613dfb565b80601f016020809104026020016040519081016040528092919081815260200182805461259190613dfb565b80156125de5780601f106125b3576101008083540402835291602001916125de565b820191906000526020600020905b8154815290600101906020018083116125c157829003601f168201915b5050505050905090565b60606000821415612630576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612744565b600082905060005b6000821461266257808061264b90613e5e565b915050600a8261265b9190613c0c565b9150612638565b60008167ffffffffffffffff81111561267e5761267d613f94565b5b6040519080825280601f01601f1916602001820160405280156126b05781602001600182028036833780820191505090505b5090505b6000851461273d576001826126c99190613ccb565b9150600a856126d89190613ea7565b60306126e49190613bb6565b60f81b8183815181106126fa576126f9613f65565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127369190613c0c565b94506126b4565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b19061385c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ab906139dc565b60405180910390fd5b6128bd8161180b565b156128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f4906139bc565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000058831115612960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295790613a9c565b60405180910390fd5b61296d6000858386612832565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612a6a9190613b70565b6fffffffffffffffffffffffffffffffff168152602001858360200151612a919190613b70565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d0057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ca060008884886123bf565b612cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd69061399c565b60405180910390fd5b8180612cea90613e5e565b9250508080612cf890613e5e565b915050612c2f565b5080600081905550612d156000878588612838565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612d4c90613dfb565b90600052602060002090601f016020900481019282612d6e5760008555612db5565b82601f10612d8757803560ff1916838001178555612db5565b82800160010185558215612db5579182015b82811115612db4578235825591602001919060010190612d99565b5b509050612dc29190612e00565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e19576000816000905550600101612e01565b5090565b6000612e30612e2b84613afc565b613ad7565b905082815260208101848484011115612e4c57612e4b613fd2565b5b612e57848285613d8f565b509392505050565b600081359050612e6e8161469f565b92915050565b60008083601f840112612e8a57612e89613fc8565b5b8235905067ffffffffffffffff811115612ea757612ea6613fc3565b5b602083019150836020820283011115612ec357612ec2613fcd565b5b9250929050565b600081359050612ed9816146b6565b92915050565b600081359050612eee816146cd565b92915050565b600081519050612f03816146cd565b92915050565b600082601f830112612f1e57612f1d613fc8565b5b8135612f2e848260208601612e1d565b91505092915050565b60008083601f840112612f4d57612f4c613fc8565b5b8235905067ffffffffffffffff811115612f6a57612f69613fc3565b5b602083019150836001820283011115612f8657612f85613fcd565b5b9250929050565b600081359050612f9c816146e4565b92915050565b600060208284031215612fb857612fb7613fdc565b5b6000612fc684828501612e5f565b91505092915050565b60008060408385031215612fe657612fe5613fdc565b5b6000612ff485828601612e5f565b925050602061300585828601612e5f565b9150509250929050565b60008060006060848603121561302857613027613fdc565b5b600061303686828701612e5f565b935050602061304786828701612e5f565b925050604061305886828701612f8d565b9150509250925092565b6000806000806080858703121561307c5761307b613fdc565b5b600061308a87828801612e5f565b945050602061309b87828801612e5f565b93505060406130ac87828801612f8d565b925050606085013567ffffffffffffffff8111156130cd576130cc613fd7565b5b6130d987828801612f09565b91505092959194509250565b600080604083850312156130fc576130fb613fdc565b5b600061310a85828601612e5f565b925050602061311b85828601612eca565b9150509250929050565b6000806040838503121561313c5761313b613fdc565b5b600061314a85828601612e5f565b925050602061315b85828601612f8d565b9150509250929050565b60008060006040848603121561317e5761317d613fdc565b5b600084013567ffffffffffffffff81111561319c5761319b613fd7565b5b6131a886828701612e74565b935093505060206131bb86828701612f8d565b9150509250925092565b6000602082840312156131db576131da613fdc565b5b60006131e984828501612edf565b91505092915050565b60006020828403121561320857613207613fdc565b5b600061321684828501612ef4565b91505092915050565b6000806020838503121561323657613235613fdc565b5b600083013567ffffffffffffffff81111561325457613253613fd7565b5b61326085828601612f37565b92509250509250929050565b60006020828403121561328257613281613fdc565b5b600061329084828501612f8d565b91505092915050565b6132a281613cff565b82525050565b6132b181613d11565b82525050565b60006132c282613b2d565b6132cc8185613b43565b93506132dc818560208601613d9e565b6132e581613fe1565b840191505092915050565b60006132fb82613b38565b6133058185613b54565b9350613315818560208601613d9e565b61331e81613fe1565b840191505092915050565b600061333482613b38565b61333e8185613b65565b935061334e818560208601613d9e565b80840191505092915050565b6000613367602283613b54565b915061337282613ff2565b604082019050919050565b600061338a601983613b54565b915061339582614041565b602082019050919050565b60006133ad602683613b54565b91506133b88261406a565b604082019050919050565b60006133d0602a83613b54565b91506133db826140b9565b604082019050919050565b60006133f3602383613b54565b91506133fe82614108565b604082019050919050565b6000613416602583613b54565b915061342182614157565b604082019050919050565b6000613439603183613b54565b9150613444826141a6565b604082019050919050565b600061345c603983613b54565b9150613467826141f5565b604082019050919050565b600061347f602b83613b54565b915061348a82614244565b604082019050919050565b60006134a2602683613b54565b91506134ad82614293565b604082019050919050565b60006134c5602083613b54565b91506134d0826142e2565b602082019050919050565b60006134e8601b83613b54565b91506134f38261430b565b602082019050919050565b600061350b602f83613b54565b915061351682614334565b604082019050919050565b600061352e601a83613b54565b915061353982614383565b602082019050919050565b6000613551603283613b54565b915061355c826143ac565b604082019050919050565b6000613574602283613b54565b915061357f826143fb565b604082019050919050565b6000613597603383613b54565b91506135a28261444a565b604082019050919050565b60006135ba601d83613b54565b91506135c582614499565b602082019050919050565b60006135dd602183613b54565b91506135e8826144c2565b604082019050919050565b6000613600601c83613b54565b915061360b82614511565b602082019050919050565b6000613623602e83613b54565b915061362e8261453a565b604082019050919050565b6000613646600e83613b54565b915061365182614589565b602082019050919050565b6000613669602f83613b54565b9150613674826145b2565b604082019050919050565b600061368c602d83613b54565b915061369782614601565b604082019050919050565b60006136af602283613b54565b91506136ba82614650565b604082019050919050565b6136ce81613d85565b82525050565b60006136e08285613329565b91506136ec8284613329565b91508190509392505050565b600060208201905061370d6000830184613299565b92915050565b60006080820190506137286000830187613299565b6137356020830186613299565b61374260408301856136c5565b818103606083015261375481846132b7565b905095945050505050565b600060208201905061377460008301846132a8565b92915050565b6000602082019050818103600083015261379481846132f0565b905092915050565b600060208201905081810360008301526137b58161335a565b9050919050565b600060208201905081810360008301526137d58161337d565b9050919050565b600060208201905081810360008301526137f5816133a0565b9050919050565b60006020820190508181036000830152613815816133c3565b9050919050565b60006020820190508181036000830152613835816133e6565b9050919050565b6000602082019050818103600083015261385581613409565b9050919050565b600060208201905081810360008301526138758161342c565b9050919050565b600060208201905081810360008301526138958161344f565b9050919050565b600060208201905081810360008301526138b581613472565b9050919050565b600060208201905081810360008301526138d581613495565b9050919050565b600060208201905081810360008301526138f5816134b8565b9050919050565b60006020820190508181036000830152613915816134db565b9050919050565b60006020820190508181036000830152613935816134fe565b9050919050565b6000602082019050818103600083015261395581613521565b9050919050565b6000602082019050818103600083015261397581613544565b9050919050565b6000602082019050818103600083015261399581613567565b9050919050565b600060208201905081810360008301526139b58161358a565b9050919050565b600060208201905081810360008301526139d5816135ad565b9050919050565b600060208201905081810360008301526139f5816135d0565b9050919050565b60006020820190508181036000830152613a15816135f3565b9050919050565b60006020820190508181036000830152613a3581613616565b9050919050565b60006020820190508181036000830152613a5581613639565b9050919050565b60006020820190508181036000830152613a758161365c565b9050919050565b60006020820190508181036000830152613a958161367f565b9050919050565b60006020820190508181036000830152613ab5816136a2565b9050919050565b6000602082019050613ad160008301846136c5565b92915050565b6000613ae1613af2565b9050613aed8282613e2d565b919050565b6000604051905090565b600067ffffffffffffffff821115613b1757613b16613f94565b5b613b2082613fe1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b7b82613d49565b9150613b8683613d49565b9250826fffffffffffffffffffffffffffffffff03821115613bab57613baa613ed8565b5b828201905092915050565b6000613bc182613d85565b9150613bcc83613d85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c0157613c00613ed8565b5b828201905092915050565b6000613c1782613d85565b9150613c2283613d85565b925082613c3257613c31613f07565b5b828204905092915050565b6000613c4882613d85565b9150613c5383613d85565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c8c57613c8b613ed8565b5b828202905092915050565b6000613ca282613d49565b9150613cad83613d49565b925082821015613cc057613cbf613ed8565b5b828203905092915050565b6000613cd682613d85565b9150613ce183613d85565b925082821015613cf457613cf3613ed8565b5b828203905092915050565b6000613d0a82613d65565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dbc578082015181840152602081019050613da1565b83811115613dcb576000848401525b50505050565b6000613ddc82613d85565b91506000821415613df057613def613ed8565b5b600182039050919050565b60006002820490506001821680613e1357607f821691505b60208210811415613e2757613e26613f36565b5b50919050565b613e3682613fe1565b810181811067ffffffffffffffff82111715613e5557613e54613f94565b5b80604052505050565b6000613e6982613d85565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e9c57613e9b613ed8565b5b600182019050919050565b6000613eb282613d85565b9150613ebd83613d85565b925082613ecd57613ecc613f07565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f505053433a204e6f7420456e6f75676820457468657265756d00000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f505053433a20204d696e74696e67205075626c69632050617573650000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f505053433a20204c696d697420506572205472616e73616374696f6e00000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f505053433a2020536f6c646f7574000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6146a881613cff565b81146146b357600080fd5b50565b6146bf81613d11565b81146146ca57600080fd5b50565b6146d681613d1d565b81146146e157600080fd5b50565b6146ed81613d85565b81146146f857600080fd5b5056fea2646970667358221220e60f106df808a78b27a2c532639ac688e5974f342f0475b093a00204e0bfecd064736f6c63430008070033

Deployed Bytecode Sourcemap

207:2567:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251:370:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5977:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7502:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7065:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2812:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8352:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3443:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2653:116:12;;;;;;;;;;;;;:::i;:::-;;8557:157:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2358:93:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2975:177:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2154:102:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;455:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5800:118:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;329:33:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;425:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2555:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4677:211:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2459:88:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;1930:106:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2264:86:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6132:98:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;627:287:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7770:274:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2044:98:12;;;;;;;;;;;;;:::i;:::-;;8777:311:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1714:210:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6293:394:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;524:28:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:43:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1477:113:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;486:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;276:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8107:186:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;369:36:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4251:370:11;4378:4;4423:25;4408:40;;;:11;:40;;;;:99;;;;4474:33;4459:48;;;:11;:48;;;;4408:99;:160;;;;4533:35;4518:50;;;:11;:50;;;;4408:160;:207;;;;4579:36;4603:11;4579:23;:36::i;:::-;4408:207;4394:221;;4251:370;;;:::o;5977:94::-;6031:13;6060:5;6053:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5977:94;:::o;7502:204::-;7570:7;7594:16;7602:7;7594;:16::i;:::-;7586:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7676:15;:24;7692:7;7676:24;;;;;;;;;;;;;;;;;;;;;7669:31;;7502:204;;;:::o;7065:379::-;7134:13;7150:24;7166:7;7150:15;:24::i;:::-;7134:40;;7195:5;7189:11;;:2;:11;;;;7181:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;7280:5;7264:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;7289:37;7306:5;7313:12;:10;:12::i;:::-;7289:16;:37::i;:::-;7264:62;7248:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;7410:28;7419:2;7423:7;7432:5;7410:8;:28::i;:::-;7127:317;7065:379;;:::o;2812:94::-;2865:7;2888:12;;2881:19;;2812:94;:::o;8352:142::-;8460:28;8470:4;8476:2;8480:7;8460:9;:28::i;:::-;8352:142;;;:::o;3443:744::-;3552:7;3587:16;3597:5;3587:9;:16::i;:::-;3579:5;:24;3571:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3649:22;3674:13;:11;:13::i;:::-;3649:38;;3694:19;3724:25;3774:9;3769:350;3793:14;3789:1;:18;3769:350;;;3823:31;3857:11;:14;3869:1;3857:14;;;;;;;;;;;3823:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3910:1;3884:28;;:9;:14;;;:28;;;3880:89;;3945:9;:14;;;3925:34;;3880:89;4002:5;3981:26;;:17;:26;;;3977:135;;;4039:5;4024:11;:20;4020:59;;;4066:1;4059:8;;;;;;;;;4020:59;4089:13;;;;;:::i;:::-;;;;3977:135;3814:305;3809:3;;;;;:::i;:::-;;;;3769:350;;;;4125:56;;;;;;;;;;:::i;:::-;;;;;;;;3443:744;;;;;:::o;2653:116:12:-;1094:13:0;:11;:13::i;:::-;2709:10:12::1;2701:28;;:60;2746:4;2730:30;;;2701:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2653:116::o:0;8557:157:11:-;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;:::-;8557:157;;;:::o;2358:93:12:-;1094:13:0;:11;:13::i;:::-;2439:4:12::1;2424:12;:19;;;;2358:93:::0;:::o;2975:177:11:-;3042:7;3074:13;:11;:13::i;:::-;3066:5;:21;3058:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3141:5;3134:12;;2975:177;;;:::o;2154:102:12:-;1094:13:0;:11;:13::i;:::-;2240:8:12::1;;2230:7;:18;;;;;;;:::i;:::-;;2154:102:::0;;:::o;455:24::-;;;;:::o;5800:118:11:-;5864:7;5887:20;5899:7;5887:11;:20::i;:::-;:25;;;5880:32;;5800:118;;;:::o;329:33:12:-;;;;;;;;;;;;;:::o;425:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2555:90::-;1094:13:0;:11;:13::i;:::-;2633:4:12::1;2621:9;:16;;;;2555:90:::0;:::o;4677:211:11:-;4741:7;4782:1;4765:19;;:5;:19;;;;4757:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4854:12;:19;4867:5;4854:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;4846:36;;4839:43;;4677:211;;;:::o;2459:88:12:-;1094:13:0;:11;:13::i;:::-;2535:4:12::1;2524:8;:15;;;;2459:88:::0;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;1930:106:12:-;1094:13:0;:11;:13::i;:::-;2002:26:12::1;2012:10;2024:3;2002:9;:26::i;:::-;1930:106:::0;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;2264:86:12:-;1094:13:0;:11;:13::i;:::-;2338:4:12::1;2326:9;:16;;;;2264:86:::0;:::o;6132:98:11:-;6188:13;6217:7;6210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6132:98;:::o;627:287:12:-;695:13;;;;;;;;;;;687:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;767:12;;760:3;:19;;752:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;854:9;;847:3;831:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;823:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;892:14;902:3;892:9;:14::i;:::-;627:287;:::o;7770:274:11:-;7873:12;:10;:12::i;:::-;7861:24;;:8;:24;;;;7853:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7970:8;7925:18;:32;7944:12;:10;:12::i;:::-;7925:32;;;;;;;;;;;;;;;:42;7958:8;7925:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;8019:8;7990:48;;8005:12;:10;:12::i;:::-;7990:48;;;8029:8;7990:48;;;;;;:::i;:::-;;;;;;;;7770:274;;:::o;2044:98:12:-;1094:13:0;:11;:13::i;:::-;2120::12::1;;;;;;;;;;;2119:14;2102:13;;:31;;;;;;;;;;;;;;;;;;2044:98::o:0;8777:311:11:-;8914:28;8924:4;8930:2;8934:7;8914:9;:28::i;:::-;8965:48;8988:4;8994:2;8998:7;9007:5;8965:22;:48::i;:::-;8949:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;8777:311;;;;:::o;1714:210:12:-;1094:13:0;:11;:13::i;:::-;1813:9:12::1;1808:109;1832:13;;:20;;1828:1;:24;1808:109;;;1873:32;1883:13;;1897:1;1883:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;1901:3;1873:9;:32::i;:::-;1854:3;;;;;:::i;:::-;;;;1808:109;;;;1714:210:::0;;;:::o;6293:394:11:-;6391:13;6432:16;6440:7;6432;:16::i;:::-;6416:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;6522:21;6546:10;:8;:10::i;:::-;6522:34;;6601:1;6583:7;6577:21;:25;:104;;;;;;;;;;;;;;;;;6638:7;6647:18;:7;:16;:18::i;:::-;6621:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6577:104;6563:118;;;6293:394;;;:::o;524:28:12:-;;;;:::o;13192:43:11:-;;;;:::o;1477:113:12:-;1535:7;1562:20;1576:5;1562:13;:20::i;:::-;1555:27;;1477:113;;;:::o;486:29::-;;;;:::o;276:46::-;;;;;;;;;;;;;;;;;:::o;8107:186:11:-;8229:4;8252:18;:25;8271:5;8252:25;;;;;;;;;;;;;;;:35;8278:8;8252:35;;;;;;;;;;;;;;;;;;;;;;;;;8245:42;;8107:186;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;;;2161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;369:36:12:-;;;;:::o;829:155:9:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;9327:105:11:-;9384:4;9414:12;;9404:7;:22;9397:29;;9327:105;;;:::o;640:96:7:-;693:7;719:10;712:17;;640:96;:::o;13014:172:11:-;13138:2;13111:15;:24;13127:7;13111:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;13172:7;13168:2;13152:28;;13161:5;13152:28;;;;;;;;;;;;13014:172;;;:::o;11379:1529::-;11476:35;11514:20;11526:7;11514:11;:20::i;:::-;11476:58;;11543:22;11585:13;:18;;;11569:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;11638:12;:10;:12::i;:::-;11614:36;;:20;11626:7;11614:11;:20::i;:::-;:36;;;11569:81;:142;;;;11661:50;11678:13;:18;;;11698:12;:10;:12::i;:::-;11661:16;:50::i;:::-;11569:142;11543:169;;11737:17;11721:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;11869:4;11847:26;;:13;:18;;;:26;;;11831:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;11958:1;11944:16;;:2;:16;;;;11936:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;12011:43;12033:4;12039:2;12043:7;12052:1;12011:21;:43::i;:::-;12111:49;12128:1;12132:7;12141:13;:18;;;12111:8;:49::i;:::-;12199:1;12169:12;:18;12182:4;12169:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12235:1;12207:12;:16;12220:2;12207:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12266:43;;;;;;;;12281:2;12266:43;;;;;;12292:15;12266:43;;;;;12243:11;:20;12255:7;12243:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12537:19;12569:1;12559:7;:11;;;;:::i;:::-;12537:33;;12622:1;12581:43;;:11;:24;12593:11;12581:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;12577:236;;;12639:20;12647:11;12639:7;:20::i;:::-;12635:171;;;12699:97;;;;;;;;12726:13;:18;;;12699:97;;;;;;12757:13;:28;;;12699:97;;;;;12672:11;:24;12684:11;12672:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12635:171;12577:236;12845:7;12841:2;12826:27;;12835:4;12826:27;;;;;;;;;;;;12860:42;12881:4;12887:2;12891:7;12900:1;12860:20;:42::i;:::-;11469:1439;;;11379:1529;;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;5140:606:11:-;5216:21;;:::i;:::-;5257:16;5265:7;5257;:16::i;:::-;5249:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5329:26;5377:12;5366:7;:23;5362:93;;5446:1;5431:12;5421:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;5400:47;;5362:93;5468:12;5483:7;5468:22;;5463:212;5500:18;5492:4;:26;5463:212;;5537:31;5571:11;:17;5583:4;5571:17;;;;;;;;;;;5537:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5627:1;5601:28;;:9;:14;;;:28;;;5597:71;;5649:9;5642:16;;;;;;;5597:71;5528:147;5520:6;;;;;:::i;:::-;;;;5463:212;;;;5683:57;;;;;;;;;;:::i;:::-;;;;;;;;5140:606;;;;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;9438:98:11:-;9503:27;9513:2;9517:8;9503:27;;;;;;;;;;;;:9;:27::i;:::-;9438:98;;:::o;922:547:12:-;1007:8;;982:10;:22;993:10;982:22;;;;;;;;;;;;;;;;:33;979:483;;;1051:8;;1045:3;:14;1042:33;;;1067:8;;1061:14;;1042:33;1129:9;;1117:8;;1111:3;:14;;;;:::i;:::-;1110:28;;;;:::i;:::-;1097:9;:41;;1089:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;1208:3;1182:10;:22;1193:10;1182:22;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;1225:26;1235:10;1247:3;1225:9;:26::i;:::-;979:483;;;1328:9;;1322:3;:15;;;;:::i;:::-;1309:9;:28;;1301:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;1407:3;1381:10;:22;1392:10;1381:22;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;1424:26;1434:10;1446:3;1424:9;:26::i;:::-;979:483;922:547;:::o;14729:690:11:-;14866:4;14883:15;:2;:13;;;:15::i;:::-;14879:535;;;14938:2;14922:36;;;14959:12;:10;:12::i;:::-;14973:4;14979:7;14988:5;14922:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14909:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15170:1;15153:6;:13;:18;15149:215;;;15186:61;;;;;;;;;;:::i;:::-;;;;;;;;15149:215;15332:6;15326:13;15317:6;15313:2;15309:15;15302:38;14909:464;15054:45;;;15044:55;;;:6;:55;;;;15037:62;;;;;14879:535;15402:4;15395:11;;14729:690;;;;;;;:::o;1598:108:12:-;1658:13;1691:7;1684:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1598:108;:::o;392:703:8:-;448:13;674:1;665:5;:10;661:51;;;691:10;;;;;;;;;;;;;;;;;;;;;661:51;721:12;736:5;721:20;;751:14;775:75;790:1;782:4;:9;775:75;;807:8;;;;;:::i;:::-;;;;837:2;829:10;;;;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;859:39;;908:150;924:1;915:5;:10;908:150;;951:1;941:11;;;;;:::i;:::-;;;1017:2;1009:5;:10;;;;:::i;:::-;996:2;:24;;;;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1045:2;1036:11;;;;;:::i;:::-;;;908:150;;;1081:6;1067:21;;;;;392:703;;;;:::o;4894:240:11:-;4955:7;5004:1;4987:19;;:5;:19;;;;4971:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;5095:12;:19;5108:5;5095:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;5087:41;;5080:48;;4894:240;;;:::o;15881:141::-;;;;;:::o;16408:140::-;;;;;:::o;9875:1272::-;9980:20;10003:12;;9980:35;;10044:1;10030:16;;:2;:16;;;;10022:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;10221:21;10229:12;10221:7;:21::i;:::-;10220:22;10212:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10303:12;10291:8;:24;;10283:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10363:61;10393:1;10397:2;10401:12;10415:8;10363:21;:61::i;:::-;10433:30;10466:12;:16;10479:2;10466:16;;;;;;;;;;;;;;;10433:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10508:119;;;;;;;;10558:8;10528:11;:19;;;:39;;;;:::i;:::-;10508:119;;;;;;10611:8;10576:11;:24;;;:44;;;;:::i;:::-;10508:119;;;;;10489:12;:16;10502:2;10489:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10662:43;;;;;;;;10677:2;10662:43;;;;;;10688:15;10662:43;;;;;10634:11;:25;10646:12;10634:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10714:20;10737:12;10714:35;;10763:9;10758:281;10782:8;10778:1;:12;10758:281;;;10836:12;10832:2;10811:38;;10828:1;10811:38;;;;;;;;;;;;10876:59;10907:1;10911:2;10915:12;10929:5;10876:22;:59::i;:::-;10858:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;11017:14;;;;;:::i;:::-;;;;10792:3;;;;;:::i;:::-;;;;10758:281;;;;11062:12;11047;:27;;;;11081:60;11110:1;11114:2;11118:12;11132:8;11081:20;:60::i;:::-;9973:1174;;;9875:1272;;;:::o;1175:320:6:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1159:133::-;1202:5;1240:6;1227:20;1218:29;;1256:30;1280:5;1256:30;:::i;:::-;1159:133;;;;:::o;1298:137::-;1343:5;1381:6;1368:20;1359:29;;1397:32;1423:5;1397:32;:::i;:::-;1298:137;;;;:::o;1441:141::-;1497:5;1528:6;1522:13;1513:22;;1544:32;1570:5;1544:32;:::i;:::-;1441:141;;;;:::o;1601:338::-;1656:5;1705:3;1698:4;1690:6;1686:17;1682:27;1672:122;;1713:79;;:::i;:::-;1672:122;1830:6;1817:20;1855:78;1929:3;1921:6;1914:4;1906:6;1902:17;1855:78;:::i;:::-;1846:87;;1662:277;1601:338;;;;:::o;1959:553::-;2017:8;2027:6;2077:3;2070:4;2062:6;2058:17;2054:27;2044:122;;2085:79;;:::i;:::-;2044:122;2198:6;2185:20;2175:30;;2228:18;2220:6;2217:30;2214:117;;;2250:79;;:::i;:::-;2214:117;2364:4;2356:6;2352:17;2340:29;;2418:3;2410:4;2402:6;2398:17;2388:8;2384:32;2381:41;2378:128;;;2425:79;;:::i;:::-;2378:128;1959:553;;;;;:::o;2518:139::-;2564:5;2602:6;2589:20;2580:29;;2618:33;2645:5;2618:33;:::i;:::-;2518:139;;;;:::o;2663:329::-;2722:6;2771:2;2759:9;2750:7;2746:23;2742:32;2739:119;;;2777:79;;:::i;:::-;2739:119;2897:1;2922:53;2967:7;2958:6;2947:9;2943:22;2922:53;:::i;:::-;2912:63;;2868:117;2663:329;;;;:::o;2998:474::-;3066:6;3074;3123:2;3111:9;3102:7;3098:23;3094:32;3091:119;;;3129:79;;:::i;:::-;3091:119;3249:1;3274:53;3319:7;3310:6;3299:9;3295:22;3274:53;:::i;:::-;3264:63;;3220:117;3376:2;3402:53;3447:7;3438:6;3427:9;3423:22;3402:53;:::i;:::-;3392:63;;3347:118;2998:474;;;;;:::o;3478:619::-;3555:6;3563;3571;3620:2;3608:9;3599:7;3595:23;3591:32;3588:119;;;3626:79;;:::i;:::-;3588:119;3746:1;3771:53;3816:7;3807:6;3796:9;3792:22;3771:53;:::i;:::-;3761:63;;3717:117;3873:2;3899:53;3944:7;3935:6;3924:9;3920:22;3899:53;:::i;:::-;3889:63;;3844:118;4001:2;4027:53;4072:7;4063:6;4052:9;4048:22;4027:53;:::i;:::-;4017:63;;3972:118;3478:619;;;;;:::o;4103:943::-;4198:6;4206;4214;4222;4271:3;4259:9;4250:7;4246:23;4242:33;4239:120;;;4278:79;;:::i;:::-;4239:120;4398:1;4423:53;4468:7;4459:6;4448:9;4444:22;4423:53;:::i;:::-;4413:63;;4369:117;4525:2;4551:53;4596:7;4587:6;4576:9;4572:22;4551:53;:::i;:::-;4541:63;;4496:118;4653:2;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4624:118;4809:2;4798:9;4794:18;4781:32;4840:18;4832:6;4829:30;4826:117;;;4862:79;;:::i;:::-;4826:117;4967:62;5021:7;5012:6;5001:9;4997:22;4967:62;:::i;:::-;4957:72;;4752:287;4103:943;;;;;;;:::o;5052:468::-;5117:6;5125;5174:2;5162:9;5153:7;5149:23;5145:32;5142:119;;;5180:79;;:::i;:::-;5142:119;5300:1;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5271:117;5427:2;5453:50;5495:7;5486:6;5475:9;5471:22;5453:50;:::i;:::-;5443:60;;5398:115;5052:468;;;;;:::o;5526:474::-;5594:6;5602;5651:2;5639:9;5630:7;5626:23;5622:32;5619:119;;;5657:79;;:::i;:::-;5619:119;5777:1;5802:53;5847:7;5838:6;5827:9;5823:22;5802:53;:::i;:::-;5792:63;;5748:117;5904:2;5930:53;5975:7;5966:6;5955:9;5951:22;5930:53;:::i;:::-;5920:63;;5875:118;5526:474;;;;;:::o;6006:704::-;6101:6;6109;6117;6166:2;6154:9;6145:7;6141:23;6137:32;6134:119;;;6172:79;;:::i;:::-;6134:119;6320:1;6309:9;6305:17;6292:31;6350:18;6342:6;6339:30;6336:117;;;6372:79;;:::i;:::-;6336:117;6485:80;6557:7;6548:6;6537:9;6533:22;6485:80;:::i;:::-;6467:98;;;;6263:312;6614:2;6640:53;6685:7;6676:6;6665:9;6661:22;6640:53;:::i;:::-;6630:63;;6585:118;6006:704;;;;;:::o;6716:327::-;6774:6;6823:2;6811:9;6802:7;6798:23;6794:32;6791:119;;;6829:79;;:::i;:::-;6791:119;6949:1;6974:52;7018:7;7009:6;6998:9;6994:22;6974:52;:::i;:::-;6964:62;;6920:116;6716:327;;;;:::o;7049:349::-;7118:6;7167:2;7155:9;7146:7;7142:23;7138:32;7135:119;;;7173:79;;:::i;:::-;7135:119;7293:1;7318:63;7373:7;7364:6;7353:9;7349:22;7318:63;:::i;:::-;7308:73;;7264:127;7049:349;;;;:::o;7404:529::-;7475:6;7483;7532:2;7520:9;7511:7;7507:23;7503:32;7500:119;;;7538:79;;:::i;:::-;7500:119;7686:1;7675:9;7671:17;7658:31;7716:18;7708:6;7705:30;7702:117;;;7738:79;;:::i;:::-;7702:117;7851:65;7908:7;7899:6;7888:9;7884:22;7851:65;:::i;:::-;7833:83;;;;7629:297;7404:529;;;;;:::o;7939:329::-;7998:6;8047:2;8035:9;8026:7;8022:23;8018:32;8015:119;;;8053:79;;:::i;:::-;8015:119;8173:1;8198:53;8243:7;8234:6;8223:9;8219:22;8198:53;:::i;:::-;8188:63;;8144:117;7939:329;;;;:::o;8274:118::-;8361:24;8379:5;8361:24;:::i;:::-;8356:3;8349:37;8274:118;;:::o;8398:109::-;8479:21;8494:5;8479:21;:::i;:::-;8474:3;8467:34;8398:109;;:::o;8513:360::-;8599:3;8627:38;8659:5;8627:38;:::i;:::-;8681:70;8744:6;8739:3;8681:70;:::i;:::-;8674:77;;8760:52;8805:6;8800:3;8793:4;8786:5;8782:16;8760:52;:::i;:::-;8837:29;8859:6;8837:29;:::i;:::-;8832:3;8828:39;8821:46;;8603:270;8513:360;;;;:::o;8879:364::-;8967:3;8995:39;9028:5;8995:39;:::i;:::-;9050:71;9114:6;9109:3;9050:71;:::i;:::-;9043:78;;9130:52;9175:6;9170:3;9163:4;9156:5;9152:16;9130:52;:::i;:::-;9207:29;9229:6;9207:29;:::i;:::-;9202:3;9198:39;9191:46;;8971:272;8879:364;;;;:::o;9249:377::-;9355:3;9383:39;9416:5;9383:39;:::i;:::-;9438:89;9520:6;9515:3;9438:89;:::i;:::-;9431:96;;9536:52;9581:6;9576:3;9569:4;9562:5;9558:16;9536:52;:::i;:::-;9613:6;9608:3;9604:16;9597:23;;9359:267;9249:377;;;;:::o;9632:366::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;11864:366;;;:::o;12236:::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12608:366;;;:::o;12980:::-;13122:3;13143:67;13207:2;13202:3;13143:67;:::i;:::-;13136:74;;13219:93;13308:3;13219:93;:::i;:::-;13337:2;13332:3;13328:12;13321:19;;12980:366;;;:::o;13352:::-;13494:3;13515:67;13579:2;13574:3;13515:67;:::i;:::-;13508:74;;13591:93;13680:3;13591:93;:::i;:::-;13709:2;13704:3;13700:12;13693:19;;13352:366;;;:::o;13724:::-;13866:3;13887:67;13951:2;13946:3;13887:67;:::i;:::-;13880:74;;13963:93;14052:3;13963:93;:::i;:::-;14081:2;14076:3;14072:12;14065:19;;13724:366;;;:::o;14096:::-;14238:3;14259:67;14323:2;14318:3;14259:67;:::i;:::-;14252:74;;14335:93;14424:3;14335:93;:::i;:::-;14453:2;14448:3;14444:12;14437:19;;14096:366;;;:::o;14468:::-;14610:3;14631:67;14695:2;14690:3;14631:67;:::i;:::-;14624:74;;14707:93;14796:3;14707:93;:::i;:::-;14825:2;14820:3;14816:12;14809:19;;14468:366;;;:::o;14840:::-;14982:3;15003:67;15067:2;15062:3;15003:67;:::i;:::-;14996:74;;15079:93;15168:3;15079:93;:::i;:::-;15197:2;15192:3;15188:12;15181:19;;14840:366;;;:::o;15212:::-;15354:3;15375:67;15439:2;15434:3;15375:67;:::i;:::-;15368:74;;15451:93;15540:3;15451:93;:::i;:::-;15569:2;15564:3;15560:12;15553:19;;15212:366;;;:::o;15584:::-;15726:3;15747:67;15811:2;15806:3;15747:67;:::i;:::-;15740:74;;15823:93;15912:3;15823:93;:::i;:::-;15941:2;15936:3;15932:12;15925:19;;15584:366;;;:::o;15956:::-;16098:3;16119:67;16183:2;16178:3;16119:67;:::i;:::-;16112:74;;16195:93;16284:3;16195:93;:::i;:::-;16313:2;16308:3;16304:12;16297:19;;15956:366;;;:::o;16328:::-;16470:3;16491:67;16555:2;16550:3;16491:67;:::i;:::-;16484:74;;16567:93;16656:3;16567:93;:::i;:::-;16685:2;16680:3;16676:12;16669:19;;16328:366;;;:::o;16700:::-;16842:3;16863:67;16927:2;16922:3;16863:67;:::i;:::-;16856:74;;16939:93;17028:3;16939:93;:::i;:::-;17057:2;17052:3;17048:12;17041:19;;16700:366;;;:::o;17072:::-;17214:3;17235:67;17299:2;17294:3;17235:67;:::i;:::-;17228:74;;17311:93;17400:3;17311:93;:::i;:::-;17429:2;17424:3;17420:12;17413:19;;17072:366;;;:::o;17444:::-;17586:3;17607:67;17671:2;17666:3;17607:67;:::i;:::-;17600:74;;17683:93;17772:3;17683:93;:::i;:::-;17801:2;17796:3;17792:12;17785:19;;17444:366;;;:::o;17816:::-;17958:3;17979:67;18043:2;18038:3;17979:67;:::i;:::-;17972:74;;18055:93;18144:3;18055:93;:::i;:::-;18173:2;18168:3;18164:12;18157:19;;17816:366;;;:::o;18188:::-;18330:3;18351:67;18415:2;18410:3;18351:67;:::i;:::-;18344:74;;18427:93;18516:3;18427:93;:::i;:::-;18545:2;18540:3;18536:12;18529:19;;18188:366;;;:::o;18560:::-;18702:3;18723:67;18787:2;18782:3;18723:67;:::i;:::-;18716:74;;18799:93;18888:3;18799:93;:::i;:::-;18917:2;18912:3;18908:12;18901:19;;18560:366;;;:::o;18932:118::-;19019:24;19037:5;19019:24;:::i;:::-;19014:3;19007:37;18932:118;;:::o;19056:435::-;19236:3;19258:95;19349:3;19340:6;19258:95;:::i;:::-;19251:102;;19370:95;19461:3;19452:6;19370:95;:::i;:::-;19363:102;;19482:3;19475:10;;19056:435;;;;;:::o;19497:222::-;19590:4;19628:2;19617:9;19613:18;19605:26;;19641:71;19709:1;19698:9;19694:17;19685:6;19641:71;:::i;:::-;19497:222;;;;:::o;19725:640::-;19920:4;19958:3;19947:9;19943:19;19935:27;;19972:71;20040:1;20029:9;20025:17;20016:6;19972:71;:::i;:::-;20053:72;20121:2;20110:9;20106:18;20097:6;20053:72;:::i;:::-;20135;20203:2;20192:9;20188:18;20179:6;20135:72;:::i;:::-;20254:9;20248:4;20244:20;20239:2;20228:9;20224:18;20217:48;20282:76;20353:4;20344:6;20282:76;:::i;:::-;20274:84;;19725:640;;;;;;;:::o;20371:210::-;20458:4;20496:2;20485:9;20481:18;20473:26;;20509:65;20571:1;20560:9;20556:17;20547:6;20509:65;:::i;:::-;20371:210;;;;:::o;20587:313::-;20700:4;20738:2;20727:9;20723:18;20715:26;;20787:9;20781:4;20777:20;20773:1;20762:9;20758:17;20751:47;20815:78;20888:4;20879:6;20815:78;:::i;:::-;20807:86;;20587:313;;;;:::o;20906:419::-;21072:4;21110:2;21099:9;21095:18;21087:26;;21159:9;21153:4;21149:20;21145:1;21134:9;21130:17;21123:47;21187:131;21313:4;21187:131;:::i;:::-;21179:139;;20906:419;;;:::o;21331:::-;21497:4;21535:2;21524:9;21520:18;21512:26;;21584:9;21578:4;21574:20;21570:1;21559:9;21555:17;21548:47;21612:131;21738:4;21612:131;:::i;:::-;21604:139;;21331:419;;;:::o;21756:::-;21922:4;21960:2;21949:9;21945:18;21937:26;;22009:9;22003:4;21999:20;21995:1;21984:9;21980:17;21973:47;22037:131;22163:4;22037:131;:::i;:::-;22029:139;;21756:419;;;:::o;22181:::-;22347:4;22385:2;22374:9;22370:18;22362:26;;22434:9;22428:4;22424:20;22420:1;22409:9;22405:17;22398:47;22462:131;22588:4;22462:131;:::i;:::-;22454:139;;22181:419;;;:::o;22606:::-;22772:4;22810:2;22799:9;22795:18;22787:26;;22859:9;22853:4;22849:20;22845:1;22834:9;22830:17;22823:47;22887:131;23013:4;22887:131;:::i;:::-;22879:139;;22606:419;;;:::o;23031:::-;23197:4;23235:2;23224:9;23220:18;23212:26;;23284:9;23278:4;23274:20;23270:1;23259:9;23255:17;23248:47;23312:131;23438:4;23312:131;:::i;:::-;23304:139;;23031:419;;;:::o;23456:::-;23622:4;23660:2;23649:9;23645:18;23637:26;;23709:9;23703:4;23699:20;23695:1;23684:9;23680:17;23673:47;23737:131;23863:4;23737:131;:::i;:::-;23729:139;;23456:419;;;:::o;23881:::-;24047:4;24085:2;24074:9;24070:18;24062:26;;24134:9;24128:4;24124:20;24120:1;24109:9;24105:17;24098:47;24162:131;24288:4;24162:131;:::i;:::-;24154:139;;23881:419;;;:::o;24306:::-;24472:4;24510:2;24499:9;24495:18;24487:26;;24559:9;24553:4;24549:20;24545:1;24534:9;24530:17;24523:47;24587:131;24713:4;24587:131;:::i;:::-;24579:139;;24306:419;;;:::o;24731:::-;24897:4;24935:2;24924:9;24920:18;24912:26;;24984:9;24978:4;24974:20;24970:1;24959:9;24955:17;24948:47;25012:131;25138:4;25012:131;:::i;:::-;25004:139;;24731:419;;;:::o;25156:::-;25322:4;25360:2;25349:9;25345:18;25337:26;;25409:9;25403:4;25399:20;25395:1;25384:9;25380:17;25373:47;25437:131;25563:4;25437:131;:::i;:::-;25429:139;;25156:419;;;:::o;25581:::-;25747:4;25785:2;25774:9;25770:18;25762:26;;25834:9;25828:4;25824:20;25820:1;25809:9;25805:17;25798:47;25862:131;25988:4;25862:131;:::i;:::-;25854:139;;25581:419;;;:::o;26006:::-;26172:4;26210:2;26199:9;26195:18;26187:26;;26259:9;26253:4;26249:20;26245:1;26234:9;26230:17;26223:47;26287:131;26413:4;26287:131;:::i;:::-;26279:139;;26006:419;;;:::o;26431:::-;26597:4;26635:2;26624:9;26620:18;26612:26;;26684:9;26678:4;26674:20;26670:1;26659:9;26655:17;26648:47;26712:131;26838:4;26712:131;:::i;:::-;26704:139;;26431:419;;;:::o;26856:::-;27022:4;27060:2;27049:9;27045:18;27037:26;;27109:9;27103:4;27099:20;27095:1;27084:9;27080:17;27073:47;27137:131;27263:4;27137:131;:::i;:::-;27129:139;;26856:419;;;:::o;27281:::-;27447:4;27485:2;27474:9;27470:18;27462:26;;27534:9;27528:4;27524:20;27520:1;27509:9;27505:17;27498:47;27562:131;27688:4;27562:131;:::i;:::-;27554:139;;27281:419;;;:::o;27706:::-;27872:4;27910:2;27899:9;27895:18;27887:26;;27959:9;27953:4;27949:20;27945:1;27934:9;27930:17;27923:47;27987:131;28113:4;27987:131;:::i;:::-;27979:139;;27706:419;;;:::o;28131:::-;28297:4;28335:2;28324:9;28320:18;28312:26;;28384:9;28378:4;28374:20;28370:1;28359:9;28355:17;28348:47;28412:131;28538:4;28412:131;:::i;:::-;28404:139;;28131:419;;;:::o;28556:::-;28722:4;28760:2;28749:9;28745:18;28737:26;;28809:9;28803:4;28799:20;28795:1;28784:9;28780:17;28773:47;28837:131;28963:4;28837:131;:::i;:::-;28829:139;;28556:419;;;:::o;28981:::-;29147:4;29185:2;29174:9;29170:18;29162:26;;29234:9;29228:4;29224:20;29220:1;29209:9;29205:17;29198:47;29262:131;29388:4;29262:131;:::i;:::-;29254:139;;28981:419;;;:::o;29406:::-;29572:4;29610:2;29599:9;29595:18;29587:26;;29659:9;29653:4;29649:20;29645:1;29634:9;29630:17;29623:47;29687:131;29813:4;29687:131;:::i;:::-;29679:139;;29406:419;;;:::o;29831:::-;29997:4;30035:2;30024:9;30020:18;30012:26;;30084:9;30078:4;30074:20;30070:1;30059:9;30055:17;30048:47;30112:131;30238:4;30112:131;:::i;:::-;30104:139;;29831:419;;;:::o;30256:::-;30422:4;30460:2;30449:9;30445:18;30437:26;;30509:9;30503:4;30499:20;30495:1;30484:9;30480:17;30473:47;30537:131;30663:4;30537:131;:::i;:::-;30529:139;;30256:419;;;:::o;30681:::-;30847:4;30885:2;30874:9;30870:18;30862:26;;30934:9;30928:4;30924:20;30920:1;30909:9;30905:17;30898:47;30962:131;31088:4;30962:131;:::i;:::-;30954:139;;30681:419;;;:::o;31106:::-;31272:4;31310:2;31299:9;31295:18;31287:26;;31359:9;31353:4;31349:20;31345:1;31334:9;31330:17;31323:47;31387:131;31513:4;31387:131;:::i;:::-;31379:139;;31106:419;;;:::o;31531:222::-;31624:4;31662:2;31651:9;31647:18;31639:26;;31675:71;31743:1;31732:9;31728:17;31719:6;31675:71;:::i;:::-;31531:222;;;;:::o;31759:129::-;31793:6;31820:20;;:::i;:::-;31810:30;;31849:33;31877:4;31869:6;31849:33;:::i;:::-;31759:129;;;:::o;31894:75::-;31927:6;31960:2;31954:9;31944:19;;31894:75;:::o;31975:307::-;32036:4;32126:18;32118:6;32115:30;32112:56;;;32148:18;;:::i;:::-;32112:56;32186:29;32208:6;32186:29;:::i;:::-;32178:37;;32270:4;32264;32260:15;32252:23;;31975:307;;;:::o;32288:98::-;32339:6;32373:5;32367:12;32357:22;;32288:98;;;:::o;32392:99::-;32444:6;32478:5;32472:12;32462:22;;32392:99;;;:::o;32497:168::-;32580:11;32614:6;32609:3;32602:19;32654:4;32649:3;32645:14;32630:29;;32497:168;;;;:::o;32671:169::-;32755:11;32789:6;32784:3;32777:19;32829:4;32824:3;32820:14;32805:29;;32671:169;;;;:::o;32846:148::-;32948:11;32985:3;32970:18;;32846:148;;;;:::o;33000:273::-;33040:3;33059:20;33077:1;33059:20;:::i;:::-;33054:25;;33093:20;33111:1;33093:20;:::i;:::-;33088:25;;33215:1;33179:34;33175:42;33172:1;33169:49;33166:75;;;33221:18;;:::i;:::-;33166:75;33265:1;33262;33258:9;33251:16;;33000:273;;;;:::o;33279:305::-;33319:3;33338:20;33356:1;33338:20;:::i;:::-;33333:25;;33372:20;33390:1;33372:20;:::i;:::-;33367:25;;33526:1;33458:66;33454:74;33451:1;33448:81;33445:107;;;33532:18;;:::i;:::-;33445:107;33576:1;33573;33569:9;33562:16;;33279:305;;;;:::o;33590:185::-;33630:1;33647:20;33665:1;33647:20;:::i;:::-;33642:25;;33681:20;33699:1;33681:20;:::i;:::-;33676:25;;33720:1;33710:35;;33725:18;;:::i;:::-;33710:35;33767:1;33764;33760:9;33755:14;;33590:185;;;;:::o;33781:348::-;33821:7;33844:20;33862:1;33844:20;:::i;:::-;33839:25;;33878:20;33896:1;33878:20;:::i;:::-;33873:25;;34066:1;33998:66;33994:74;33991:1;33988:81;33983:1;33976:9;33969:17;33965:105;33962:131;;;34073:18;;:::i;:::-;33962:131;34121:1;34118;34114:9;34103:20;;33781:348;;;;:::o;34135:191::-;34175:4;34195:20;34213:1;34195:20;:::i;:::-;34190:25;;34229:20;34247:1;34229:20;:::i;:::-;34224:25;;34268:1;34265;34262:8;34259:34;;;34273:18;;:::i;:::-;34259:34;34318:1;34315;34311:9;34303:17;;34135:191;;;;:::o;34332:::-;34372:4;34392:20;34410:1;34392:20;:::i;:::-;34387:25;;34426:20;34444:1;34426:20;:::i;:::-;34421:25;;34465:1;34462;34459:8;34456:34;;;34470:18;;:::i;:::-;34456:34;34515:1;34512;34508:9;34500:17;;34332:191;;;;:::o;34529:96::-;34566:7;34595:24;34613:5;34595:24;:::i;:::-;34584:35;;34529:96;;;:::o;34631:90::-;34665:7;34708:5;34701:13;34694:21;34683:32;;34631:90;;;:::o;34727:149::-;34763:7;34803:66;34796:5;34792:78;34781:89;;34727:149;;;:::o;34882:118::-;34919:7;34959:34;34952:5;34948:46;34937:57;;34882:118;;;:::o;35006:126::-;35043:7;35083:42;35076:5;35072:54;35061:65;;35006:126;;;:::o;35138:77::-;35175:7;35204:5;35193:16;;35138:77;;;:::o;35221:154::-;35305:6;35300:3;35295;35282:30;35367:1;35358:6;35353:3;35349:16;35342:27;35221:154;;;:::o;35381:307::-;35449:1;35459:113;35473:6;35470:1;35467:13;35459:113;;;35558:1;35553:3;35549:11;35543:18;35539:1;35534:3;35530:11;35523:39;35495:2;35492:1;35488:10;35483:15;;35459:113;;;35590:6;35587:1;35584:13;35581:101;;;35670:1;35661:6;35656:3;35652:16;35645:27;35581:101;35430:258;35381:307;;;:::o;35694:171::-;35733:3;35756:24;35774:5;35756:24;:::i;:::-;35747:33;;35802:4;35795:5;35792:15;35789:41;;;35810:18;;:::i;:::-;35789:41;35857:1;35850:5;35846:13;35839:20;;35694:171;;;:::o;35871:320::-;35915:6;35952:1;35946:4;35942:12;35932:22;;35999:1;35993:4;35989:12;36020:18;36010:81;;36076:4;36068:6;36064:17;36054:27;;36010:81;36138:2;36130:6;36127:14;36107:18;36104:38;36101:84;;;36157:18;;:::i;:::-;36101:84;35922:269;35871:320;;;:::o;36197:281::-;36280:27;36302:4;36280:27;:::i;:::-;36272:6;36268:40;36410:6;36398:10;36395:22;36374:18;36362:10;36359:34;36356:62;36353:88;;;36421:18;;:::i;:::-;36353:88;36461:10;36457:2;36450:22;36240:238;36197:281;;:::o;36484:233::-;36523:3;36546:24;36564:5;36546:24;:::i;:::-;36537:33;;36592:66;36585:5;36582:77;36579:103;;;36662:18;;:::i;:::-;36579:103;36709:1;36702:5;36698:13;36691:20;;36484:233;;;:::o;36723:176::-;36755:1;36772:20;36790:1;36772:20;:::i;:::-;36767:25;;36806:20;36824:1;36806:20;:::i;:::-;36801:25;;36845:1;36835:35;;36850:18;;:::i;:::-;36835:35;36891:1;36888;36884:9;36879:14;;36723:176;;;;:::o;36905:180::-;36953:77;36950:1;36943:88;37050:4;37047:1;37040:15;37074:4;37071:1;37064:15;37091:180;37139:77;37136:1;37129:88;37236:4;37233:1;37226:15;37260:4;37257:1;37250:15;37277:180;37325:77;37322:1;37315:88;37422:4;37419:1;37412:15;37446:4;37443:1;37436:15;37463:180;37511:77;37508:1;37501:88;37608:4;37605:1;37598:15;37632:4;37629:1;37622:15;37649:180;37697:77;37694:1;37687:88;37794:4;37791:1;37784:15;37818:4;37815:1;37808:15;37835:117;37944:1;37941;37934:12;37958:117;38067:1;38064;38057:12;38081:117;38190:1;38187;38180:12;38204:117;38313:1;38310;38303:12;38327:117;38436:1;38433;38426:12;38450:117;38559:1;38556;38549:12;38573:102;38614:6;38665:2;38661:7;38656:2;38649:5;38645:14;38641:28;38631:38;;38573:102;;;:::o;38681:221::-;38821:34;38817:1;38809:6;38805:14;38798:58;38890:4;38885:2;38877:6;38873:15;38866:29;38681:221;:::o;38908:175::-;39048:27;39044:1;39036:6;39032:14;39025:51;38908:175;:::o;39089:225::-;39229:34;39225:1;39217:6;39213:14;39206:58;39298:8;39293:2;39285:6;39281:15;39274:33;39089:225;:::o;39320:229::-;39460:34;39456:1;39448:6;39444:14;39437:58;39529:12;39524:2;39516:6;39512:15;39505:37;39320:229;:::o;39555:222::-;39695:34;39691:1;39683:6;39679:14;39672:58;39764:5;39759:2;39751:6;39747:15;39740:30;39555:222;:::o;39783:224::-;39923:34;39919:1;39911:6;39907:14;39900:58;39992:7;39987:2;39979:6;39975:15;39968:32;39783:224;:::o;40013:236::-;40153:34;40149:1;40141:6;40137:14;40130:58;40222:19;40217:2;40209:6;40205:15;40198:44;40013:236;:::o;40255:244::-;40395:34;40391:1;40383:6;40379:14;40372:58;40464:27;40459:2;40451:6;40447:15;40440:52;40255:244;:::o;40505:230::-;40645:34;40641:1;40633:6;40629:14;40622:58;40714:13;40709:2;40701:6;40697:15;40690:38;40505:230;:::o;40741:225::-;40881:34;40877:1;40869:6;40865:14;40858:58;40950:8;40945:2;40937:6;40933:15;40926:33;40741:225;:::o;40972:182::-;41112:34;41108:1;41100:6;41096:14;41089:58;40972:182;:::o;41160:177::-;41300:29;41296:1;41288:6;41284:14;41277:53;41160:177;:::o;41343:234::-;41483:34;41479:1;41471:6;41467:14;41460:58;41552:17;41547:2;41539:6;41535:15;41528:42;41343:234;:::o;41583:176::-;41723:28;41719:1;41711:6;41707:14;41700:52;41583:176;:::o;41765:237::-;41905:34;41901:1;41893:6;41889:14;41882:58;41974:20;41969:2;41961:6;41957:15;41950:45;41765:237;:::o;42008:221::-;42148:34;42144:1;42136:6;42132:14;42125:58;42217:4;42212:2;42204:6;42200:15;42193:29;42008:221;:::o;42235:238::-;42375:34;42371:1;42363:6;42359:14;42352:58;42444:21;42439:2;42431:6;42427:15;42420:46;42235:238;:::o;42479:179::-;42619:31;42615:1;42607:6;42603:14;42596:55;42479:179;:::o;42664:220::-;42804:34;42800:1;42792:6;42788:14;42781:58;42873:3;42868:2;42860:6;42856:15;42849:28;42664:220;:::o;42890:178::-;43030:30;43026:1;43018:6;43014:14;43007:54;42890:178;:::o;43074:233::-;43214:34;43210:1;43202:6;43198:14;43191:58;43283:16;43278:2;43270:6;43266:15;43259:41;43074:233;:::o;43313:164::-;43453:16;43449:1;43441:6;43437:14;43430:40;43313:164;:::o;43483:234::-;43623:34;43619:1;43611:6;43607:14;43600:58;43692:17;43687:2;43679:6;43675:15;43668:42;43483:234;:::o;43723:232::-;43863:34;43859:1;43851:6;43847:14;43840:58;43932:15;43927:2;43919:6;43915:15;43908:40;43723:232;:::o;43961:221::-;44101:34;44097:1;44089:6;44085:14;44078:58;44170:4;44165:2;44157:6;44153:15;44146:29;43961:221;:::o;44188:122::-;44261:24;44279:5;44261:24;:::i;:::-;44254:5;44251:35;44241:63;;44300:1;44297;44290:12;44241:63;44188:122;:::o;44316:116::-;44386:21;44401:5;44386:21;:::i;:::-;44379:5;44376:32;44366:60;;44422:1;44419;44412:12;44366:60;44316:116;:::o;44438:120::-;44510:23;44527:5;44510:23;:::i;:::-;44503:5;44500:34;44490:62;;44548:1;44545;44538:12;44490:62;44438:120;:::o;44564:122::-;44637:24;44655:5;44637:24;:::i;:::-;44630:5;44627:35;44617:63;;44676:1;44673;44666:12;44617:63;44564:122;:::o

Swarm Source

ipfs://e60f106df808a78b27a2c532639ac688e5974f342f0475b093a00204e0bfecd0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.